Merge pull request #21740 from woocommerce/revert/17895
Revert PR #17895
This commit is contained in:
commit
73c8c99607
|
@ -772,22 +772,15 @@ class WC_Admin_List_Table_Orders extends WC_Admin_List_Table {
|
||||||
|
|
||||||
// Filter the orders by the posted customer.
|
// Filter the orders by the posted customer.
|
||||||
if ( ! empty( $_GET['_customer_user'] ) ) { // WPCS: input var ok.
|
if ( ! empty( $_GET['_customer_user'] ) ) { // WPCS: input var ok.
|
||||||
$customer_id = (int) $_GET['_customer_user']; // WPCS: input var ok, sanitization ok.
|
// @codingStandardsIgnoreStart
|
||||||
|
$query_vars['meta_query'] = array(
|
||||||
// On WC 3.5.0 the ID of the user that placed the order was moved from the post meta _customer_user to the post_author field in the wp_posts table.
|
array(
|
||||||
if ( version_compare( get_option( 'woocommerce_db_version' ), '3.5.0', '>=' ) ) {
|
'key' => '_customer_user',
|
||||||
$query_vars['author'] = $customer_id;
|
'value' => (int) $_GET['_customer_user'], // WPCS: input var ok, sanitization ok.
|
||||||
} else {
|
'compare' => '=',
|
||||||
// @codingStandardsIgnoreStart
|
),
|
||||||
$query_vars['meta_query'] = array(
|
);
|
||||||
array(
|
// @codingStandardsIgnoreEnd
|
||||||
'key' => '_customer_user',
|
|
||||||
'value' => $customer_id,
|
|
||||||
'compare' => '=',
|
|
||||||
),
|
|
||||||
);
|
|
||||||
// @codingStandardsIgnoreEnd
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Sorting.
|
// Sorting.
|
||||||
|
|
|
@ -69,56 +69,46 @@ class WC_Report_Customers extends WC_Admin_Report {
|
||||||
* Output customers vs guests chart.
|
* Output customers vs guests chart.
|
||||||
*/
|
*/
|
||||||
public function customers_vs_guests() {
|
public function customers_vs_guests() {
|
||||||
$customer_args = array(
|
|
||||||
'data' => array(
|
$customer_order_totals = $this->get_order_report_data(
|
||||||
'ID' => array(
|
array(
|
||||||
'type' => 'post_data',
|
'data' => array(
|
||||||
'function' => 'COUNT',
|
'ID' => array(
|
||||||
'name' => 'total_orders',
|
'type' => 'post_data',
|
||||||
|
'function' => 'COUNT',
|
||||||
|
'name' => 'total_orders',
|
||||||
|
),
|
||||||
),
|
),
|
||||||
),
|
'where_meta' => array(
|
||||||
'filter_range' => true,
|
array(
|
||||||
|
'meta_key' => '_customer_user',
|
||||||
|
'meta_value' => '0',
|
||||||
|
'operator' => '>',
|
||||||
|
),
|
||||||
|
),
|
||||||
|
'filter_range' => true,
|
||||||
|
)
|
||||||
);
|
);
|
||||||
$guest_args = $customer_args;
|
|
||||||
|
|
||||||
// On WC 3.5.0 the ID of the user that placed the order was moved from the post meta _customer_user to the post_author field in the wp_posts table.
|
$guest_order_totals = $this->get_order_report_data(
|
||||||
if ( version_compare( get_option( 'woocommerce_db_version' ), '3.5.0', '>=' ) ) {
|
array(
|
||||||
$customer_args['where'] = array(
|
'data' => array(
|
||||||
array(
|
'ID' => array(
|
||||||
'key' => 'post_author',
|
'type' => 'post_data',
|
||||||
'value' => '0',
|
'function' => 'COUNT',
|
||||||
'operator' => '>',
|
'name' => 'total_orders',
|
||||||
|
),
|
||||||
),
|
),
|
||||||
);
|
'where_meta' => array(
|
||||||
|
array(
|
||||||
$guest_args['where'] = array(
|
'meta_key' => '_customer_user',
|
||||||
array(
|
'meta_value' => '0',
|
||||||
'key' => 'post_author',
|
'operator' => '=',
|
||||||
'value' => '0',
|
),
|
||||||
'operator' => '=',
|
|
||||||
),
|
),
|
||||||
);
|
'filter_range' => true,
|
||||||
} else {
|
)
|
||||||
$customer_args['where_meta'] = array(
|
);
|
||||||
array(
|
|
||||||
'meta_key' => '_customer_user',
|
|
||||||
'meta_value' => '0',
|
|
||||||
'operator' => '>',
|
|
||||||
),
|
|
||||||
);
|
|
||||||
|
|
||||||
$guest_args['where_meta'] = array(
|
|
||||||
array(
|
|
||||||
'meta_key' => '_customer_user',
|
|
||||||
'meta_value' => '0',
|
|
||||||
'operator' => '=',
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
$customer_order_totals = $this->get_order_report_data( $customer_args );
|
|
||||||
$guest_order_totals = $this->get_order_report_data( $guest_args );
|
|
||||||
|
|
||||||
?>
|
?>
|
||||||
<div class="chart-container">
|
<div class="chart-container">
|
||||||
<div class="chart-placeholder customers_vs_guests pie-chart" style="height:200px"></div>
|
<div class="chart-placeholder customers_vs_guests pie-chart" style="height:200px"></div>
|
||||||
|
@ -256,63 +246,61 @@ class WC_Report_Customers extends WC_Admin_Report {
|
||||||
public function get_main_chart() {
|
public function get_main_chart() {
|
||||||
global $wp_locale;
|
global $wp_locale;
|
||||||
|
|
||||||
$customer_args = array(
|
$customer_orders = $this->get_order_report_data(
|
||||||
'data' => array(
|
array(
|
||||||
'ID' => array(
|
'data' => array(
|
||||||
'type' => 'post_data',
|
'ID' => array(
|
||||||
'function' => 'COUNT',
|
'type' => 'post_data',
|
||||||
'name' => 'total_orders',
|
'function' => 'COUNT',
|
||||||
|
'name' => 'total_orders',
|
||||||
|
),
|
||||||
|
'post_date' => array(
|
||||||
|
'type' => 'post_data',
|
||||||
|
'function' => '',
|
||||||
|
'name' => 'post_date',
|
||||||
|
),
|
||||||
),
|
),
|
||||||
'post_date' => array(
|
'where_meta' => array(
|
||||||
'type' => 'post_data',
|
array(
|
||||||
'function' => '',
|
'meta_key' => '_customer_user',
|
||||||
'name' => 'post_date',
|
'meta_value' => '0',
|
||||||
|
'operator' => '>',
|
||||||
|
),
|
||||||
),
|
),
|
||||||
),
|
'group_by' => $this->group_by_query,
|
||||||
'group_by' => $this->group_by_query,
|
'order_by' => 'post_date ASC',
|
||||||
'order_by' => 'post_date ASC',
|
'query_type' => 'get_results',
|
||||||
'query_type' => 'get_results',
|
'filter_range' => true,
|
||||||
'filter_range' => true,
|
)
|
||||||
);
|
);
|
||||||
$guest_args = $customer_args;
|
|
||||||
|
|
||||||
// On WC 3.5.0 the ID of the user that placed the order was moved from the post meta _customer_user to the post_author field in the wp_posts table.
|
$guest_orders = $this->get_order_report_data(
|
||||||
if ( version_compare( get_option( 'woocommerce_db_version' ), '3.5.0', '>=' ) ) {
|
array(
|
||||||
$customer_args['where'] = array(
|
'data' => array(
|
||||||
array(
|
'ID' => array(
|
||||||
'key' => 'post_author',
|
'type' => 'post_data',
|
||||||
'value' => '0',
|
'function' => 'COUNT',
|
||||||
'operator' => '>',
|
'name' => 'total_orders',
|
||||||
|
),
|
||||||
|
'post_date' => array(
|
||||||
|
'type' => 'post_data',
|
||||||
|
'function' => '',
|
||||||
|
'name' => 'post_date',
|
||||||
|
),
|
||||||
),
|
),
|
||||||
);
|
'where_meta' => array(
|
||||||
|
array(
|
||||||
$guest_args['where'] = array(
|
'meta_key' => '_customer_user',
|
||||||
array(
|
'meta_value' => '0',
|
||||||
'key' => 'post_author',
|
'operator' => '=',
|
||||||
'value' => '0',
|
),
|
||||||
'operator' => '=',
|
|
||||||
),
|
),
|
||||||
);
|
'group_by' => $this->group_by_query,
|
||||||
} else {
|
'order_by' => 'post_date ASC',
|
||||||
$customer_args['where_meta'] = array(
|
'query_type' => 'get_results',
|
||||||
array(
|
'filter_range' => true,
|
||||||
'meta_key' => '_customer_user',
|
)
|
||||||
'meta_value' => '0',
|
);
|
||||||
'operator' => '>',
|
|
||||||
),
|
|
||||||
);
|
|
||||||
|
|
||||||
$guest_args['where_meta'] = array(
|
|
||||||
array(
|
|
||||||
'meta_key' => '_customer_user',
|
|
||||||
'meta_value' => '0',
|
|
||||||
'operator' => '=',
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
$customer_orders = $this->get_order_report_data( $customer_args );
|
|
||||||
$guest_orders = $this->get_order_report_data( $guest_args );
|
|
||||||
|
|
||||||
$signups = $this->prepare_chart_data( $this->customers, 'user_registered', '', $this->chart_interval, $this->start_date, $this->chart_groupby );
|
$signups = $this->prepare_chart_data( $this->customers, 'user_registered', '', $this->chart_interval, $this->start_date, $this->chart_groupby );
|
||||||
$customer_orders = $this->prepare_chart_data( $customer_orders, 'post_date', 'total_orders', $this->chart_interval, $this->start_date, $this->chart_groupby );
|
$customer_orders = $this->prepare_chart_data( $customer_orders, 'post_date', 'total_orders', $this->chart_interval, $this->start_date, $this->chart_groupby );
|
||||||
|
|
|
@ -404,20 +404,15 @@ class WC_REST_Orders_V1_Controller extends WC_REST_Posts_Controller {
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( isset( $request['customer'] ) ) {
|
if ( isset( $request['customer'] ) ) {
|
||||||
// On WC 3.5.0 the ID of the user that placed the order was moved from the post meta _customer_user to the post_author field in the wp_posts table.
|
if ( ! empty( $args['meta_query'] ) ) {
|
||||||
if ( version_compare( get_option( 'woocommerce_db_version' ), '3.5.0', '>=' ) ) {
|
$args['meta_query'] = array();
|
||||||
$args['author'] = $request['customer'];
|
|
||||||
} else {
|
|
||||||
if ( ! empty( $args['meta_query'] ) ) {
|
|
||||||
$args['meta_query'] = array(); // WPCS: slow query ok.
|
|
||||||
}
|
|
||||||
|
|
||||||
$args['meta_query'][] = array(
|
|
||||||
'key' => '_customer_user',
|
|
||||||
'value' => $request['customer'],
|
|
||||||
'type' => 'NUMERIC',
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$args['meta_query'][] = array(
|
||||||
|
'key' => '_customer_user',
|
||||||
|
'value' => $request['customer'],
|
||||||
|
'type' => 'NUMERIC',
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Search by product.
|
// Search by product.
|
||||||
|
|
|
@ -367,20 +367,15 @@ class WC_REST_Orders_V2_Controller extends WC_REST_Legacy_Orders_Controller {
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( isset( $request['customer'] ) ) {
|
if ( isset( $request['customer'] ) ) {
|
||||||
// On WC 3.5.0 the ID of the user that placed the order was moved from the post meta _customer_user to the post_author field in the wp_posts table.
|
if ( ! empty( $args['meta_query'] ) ) {
|
||||||
if ( version_compare( get_option( 'woocommerce_db_version' ), '3.5.0', '>=' ) ) {
|
$args['meta_query'] = array(); // WPCS: slow query ok.
|
||||||
$args['author'] = $request['customer'];
|
|
||||||
} else {
|
|
||||||
if ( ! empty( $args['meta_query'] ) ) {
|
|
||||||
$args['meta_query'] = array(); // WPCS: slow query ok.
|
|
||||||
}
|
|
||||||
|
|
||||||
$args['meta_query'][] = array(
|
|
||||||
'key' => '_customer_user',
|
|
||||||
'value' => $request['customer'],
|
|
||||||
'type' => 'NUMERIC',
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$args['meta_query'][] = array(
|
||||||
|
'key' => '_customer_user',
|
||||||
|
'value' => $request['customer'],
|
||||||
|
'type' => 'NUMERIC',
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Search by product.
|
// Search by product.
|
||||||
|
|
|
@ -114,7 +114,6 @@ class WC_Install {
|
||||||
'wc_update_344_db_version',
|
'wc_update_344_db_version',
|
||||||
),
|
),
|
||||||
'3.5.0' => array(
|
'3.5.0' => array(
|
||||||
'wc_update_350_order_customer_id',
|
|
||||||
'wc_update_350_reviews_comment_type',
|
'wc_update_350_reviews_comment_type',
|
||||||
'wc_update_350_db_version',
|
'wc_update_350_db_version',
|
||||||
),
|
),
|
||||||
|
|
|
@ -67,7 +67,7 @@ abstract class Abstract_WC_Order_Data_Store_CPT extends WC_Data_Store_WP impleme
|
||||||
'post_type' => $order->get_type( 'edit' ),
|
'post_type' => $order->get_type( 'edit' ),
|
||||||
'post_status' => 'wc-' . ( $order->get_status( 'edit' ) ? $order->get_status( 'edit' ) : apply_filters( 'woocommerce_default_order_status', 'pending' ) ),
|
'post_status' => 'wc-' . ( $order->get_status( 'edit' ) ? $order->get_status( 'edit' ) : apply_filters( 'woocommerce_default_order_status', 'pending' ) ),
|
||||||
'ping_status' => 'closed',
|
'ping_status' => 'closed',
|
||||||
'post_author' => is_callable( array( $order, 'get_customer_id' ) ) ? $order->get_customer_id() : 0,
|
'post_author' => 1,
|
||||||
'post_title' => $this->get_post_title(),
|
'post_title' => $this->get_post_title(),
|
||||||
'post_password' => uniqid( 'order_' ),
|
'post_password' => uniqid( 'order_' ),
|
||||||
'post_parent' => $order->get_parent_id( 'edit' ),
|
'post_parent' => $order->get_parent_id( 'edit' ),
|
||||||
|
@ -139,7 +139,7 @@ abstract class Abstract_WC_Order_Data_Store_CPT extends WC_Data_Store_WP impleme
|
||||||
$changes = $order->get_changes();
|
$changes = $order->get_changes();
|
||||||
|
|
||||||
// Only update the post when the post data changes.
|
// Only update the post when the post data changes.
|
||||||
if ( array_intersect( array( 'date_created', 'date_modified', 'status', 'parent_id', 'post_excerpt', 'customer_id' ), array_keys( $changes ) ) ) {
|
if ( array_intersect( array( 'date_created', 'date_modified', 'status', 'parent_id', 'post_excerpt' ), array_keys( $changes ) ) ) {
|
||||||
$post_data = array(
|
$post_data = array(
|
||||||
'post_date' => gmdate( 'Y-m-d H:i:s', $order->get_date_created( 'edit' )->getOffsetTimestamp() ),
|
'post_date' => gmdate( 'Y-m-d H:i:s', $order->get_date_created( 'edit' )->getOffsetTimestamp() ),
|
||||||
'post_date_gmt' => gmdate( 'Y-m-d H:i:s', $order->get_date_created( 'edit' )->getTimestamp() ),
|
'post_date_gmt' => gmdate( 'Y-m-d H:i:s', $order->get_date_created( 'edit' )->getTimestamp() ),
|
||||||
|
@ -148,7 +148,6 @@ abstract class Abstract_WC_Order_Data_Store_CPT extends WC_Data_Store_WP impleme
|
||||||
'post_excerpt' => $this->get_post_excerpt( $order ),
|
'post_excerpt' => $this->get_post_excerpt( $order ),
|
||||||
'post_modified' => isset( $changes['date_modified'] ) ? gmdate( 'Y-m-d H:i:s', $order->get_date_modified( 'edit' )->getOffsetTimestamp() ) : current_time( 'mysql' ),
|
'post_modified' => isset( $changes['date_modified'] ) ? gmdate( 'Y-m-d H:i:s', $order->get_date_modified( 'edit' )->getOffsetTimestamp() ) : current_time( 'mysql' ),
|
||||||
'post_modified_gmt' => isset( $changes['date_modified'] ) ? gmdate( 'Y-m-d H:i:s', $order->get_date_modified( 'edit' )->getTimestamp() ) : current_time( 'mysql', 1 ),
|
'post_modified_gmt' => isset( $changes['date_modified'] ) ? gmdate( 'Y-m-d H:i:s', $order->get_date_modified( 'edit' )->getTimestamp() ) : current_time( 'mysql', 1 ),
|
||||||
'post_author' => is_callable( array( $order, 'get_customer_id' ) ) ? $order->get_customer_id() : 0,
|
|
||||||
);
|
);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -166,27 +165,12 @@ abstract class Abstract_WC_Order_Data_Store_CPT extends WC_Data_Store_WP impleme
|
||||||
wp_update_post( array_merge( array( 'ID' => $order->get_id() ), $post_data ) );
|
wp_update_post( array_merge( array( 'ID' => $order->get_id() ), $post_data ) );
|
||||||
}
|
}
|
||||||
$order->read_meta_data( true ); // Refresh internal meta data, in case things were hooked into `save_post` or another WP hook.
|
$order->read_meta_data( true ); // Refresh internal meta data, in case things were hooked into `save_post` or another WP hook.
|
||||||
|
|
||||||
// If customer changed, update any downloadable permissions.
|
|
||||||
if ( in_array( 'customer_id', $changes ) ) {
|
|
||||||
$this->update_downloadable_permissions( $order );
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
$this->update_post_meta( $order );
|
$this->update_post_meta( $order );
|
||||||
$order->apply_changes();
|
$order->apply_changes();
|
||||||
$this->clear_caches( $order );
|
$this->clear_caches( $order );
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Update downloadable permissions for a given order.
|
|
||||||
*
|
|
||||||
* @param WC_Order $order Order object.
|
|
||||||
*/
|
|
||||||
protected function update_downloadable_permissions( $order ) {
|
|
||||||
$data_store = WC_Data_Store::load( 'customer-download' );
|
|
||||||
$data_store->update_user_by_order_id( $order->get_id(), $order->get_customer_id(), $order->get_billing_email() );
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Method to delete an order from the database.
|
* Method to delete an order from the database.
|
||||||
*
|
*
|
||||||
|
|
|
@ -325,27 +325,18 @@ class WC_Customer_Data_Store extends WC_Data_Store_WP implements WC_Customer_Dat
|
||||||
public function get_last_order( &$customer ) {
|
public function get_last_order( &$customer ) {
|
||||||
global $wpdb;
|
global $wpdb;
|
||||||
|
|
||||||
// On WC 3.5.0 the ID of the user that placed the order was moved from the post meta _customer_user to the post_author field in the wp_posts table.
|
$last_order = $wpdb->get_var(
|
||||||
if ( version_compare( get_option( 'woocommerce_db_version' ), '3.5.0', '>=' ) ) {
|
// phpcs:disable WordPress.WP.PreparedSQL.NotPrepared
|
||||||
$query = "SELECT ID
|
"SELECT posts.ID
|
||||||
FROM $wpdb->posts
|
|
||||||
WHERE post_author = '" . esc_sql( $customer->get_id() ) . "'
|
|
||||||
AND post_type = 'shop_order'
|
|
||||||
AND post_status IN ( '" . implode( "','", array_map( 'esc_sql', array_keys( wc_get_order_statuses() ) ) ) . "' )
|
|
||||||
ORDER BY ID DESC";
|
|
||||||
} else {
|
|
||||||
$query = "SELECT posts.ID
|
|
||||||
FROM $wpdb->posts AS posts
|
FROM $wpdb->posts AS posts
|
||||||
LEFT JOIN {$wpdb->postmeta} AS meta on posts.ID = meta.post_id
|
LEFT JOIN {$wpdb->postmeta} AS meta on posts.ID = meta.post_id
|
||||||
WHERE meta.meta_key = '_customer_user'
|
WHERE meta.meta_key = '_customer_user'
|
||||||
AND meta.meta_value = '" . esc_sql( $customer->get_id() ) . "'
|
AND meta.meta_value = '" . esc_sql( $customer->get_id() ) . "'
|
||||||
AND posts.post_type = 'shop_order'
|
AND posts.post_type = 'shop_order'
|
||||||
AND posts.post_status IN ( '" . implode( "','", array_map( 'esc_sql', array_keys( wc_get_order_statuses() ) ) ) . "' )
|
AND posts.post_status IN ( '" . implode( "','", array_map( 'esc_sql', array_keys( wc_get_order_statuses() ) ) ) . "' )
|
||||||
ORDER BY posts.ID DESC";
|
ORDER BY posts.ID DESC"
|
||||||
}
|
// phpcs:enable
|
||||||
|
);
|
||||||
// phpcs:ignore WordPress.WP.PreparedSQL.NotPrepared
|
|
||||||
$last_order = $wpdb->get_var( $query );
|
|
||||||
|
|
||||||
if ( ! $last_order ) {
|
if ( ! $last_order ) {
|
||||||
return false;
|
return false;
|
||||||
|
@ -367,25 +358,17 @@ class WC_Customer_Data_Store extends WC_Data_Store_WP implements WC_Customer_Dat
|
||||||
if ( '' === $count ) {
|
if ( '' === $count ) {
|
||||||
global $wpdb;
|
global $wpdb;
|
||||||
|
|
||||||
// On WC 3.5.0 the ID of the user that placed the order was moved from the post meta _customer_user to the post_author field in the wp_posts table.
|
$count = $wpdb->get_var(
|
||||||
if ( version_compare( get_option( 'woocommerce_db_version' ), '3.5.0', '>=' ) ) {
|
// phpcs:disable WordPress.WP.PreparedSQL.NotPrepared
|
||||||
$query = "SELECT COUNT(*)
|
"SELECT COUNT(*)
|
||||||
FROM $wpdb->posts
|
|
||||||
WHERE post_type = 'shop_order'
|
|
||||||
AND post_status IN ( '" . implode( "','", array_map( 'esc_sql', array_keys( wc_get_order_statuses() ) ) ) . "' )
|
|
||||||
AND post_author = " . esc_sql( $customer->get_id() );
|
|
||||||
} else {
|
|
||||||
$query = "SELECT COUNT(*)
|
|
||||||
FROM $wpdb->posts as posts
|
FROM $wpdb->posts as posts
|
||||||
LEFT JOIN {$wpdb->postmeta} AS meta ON posts.ID = meta.post_id
|
LEFT JOIN {$wpdb->postmeta} AS meta ON posts.ID = meta.post_id
|
||||||
WHERE meta.meta_key = '_customer_user'
|
WHERE meta.meta_key = '_customer_user'
|
||||||
AND posts.post_type = 'shop_order'
|
AND posts.post_type = 'shop_order'
|
||||||
AND posts.post_status IN ( '" . implode( "','", array_map( 'esc_sql', array_keys( wc_get_order_statuses() ) ) ) . "' )
|
AND posts.post_status IN ( '" . implode( "','", array_map( 'esc_sql', array_keys( wc_get_order_statuses() ) ) ) . "' )
|
||||||
AND meta_value = '" . esc_sql( $customer->get_id() ) . "'";
|
AND meta_value = '" . esc_sql( $customer->get_id() ) . "'"
|
||||||
}
|
// phpcs:enable
|
||||||
|
);
|
||||||
// phpcs:ignore WordPress.WP.PreparedSQL.NotPrepared
|
|
||||||
$count = $wpdb->get_var( $query );
|
|
||||||
update_user_meta( $customer->get_id(), '_order_count', $count );
|
update_user_meta( $customer->get_id(), '_order_count', $count );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -410,18 +393,11 @@ class WC_Customer_Data_Store extends WC_Data_Store_WP implements WC_Customer_Dat
|
||||||
global $wpdb;
|
global $wpdb;
|
||||||
|
|
||||||
$statuses = array_map( 'esc_sql', wc_get_is_paid_statuses() );
|
$statuses = array_map( 'esc_sql', wc_get_is_paid_statuses() );
|
||||||
|
$spent = $wpdb->get_var(
|
||||||
// On WC 3.5.0 the ID of the user that placed the order was moved from the post meta _customer_user to the post_author field in the wp_posts table.
|
// phpcs:disable WordPress.WP.PreparedSQL.NotPrepared
|
||||||
if ( version_compare( get_option( 'woocommerce_db_version' ), '3.5.0', '>=' ) ) {
|
apply_filters(
|
||||||
$query = "SELECT SUM(meta.meta_value)
|
'woocommerce_customer_get_total_spent_query',
|
||||||
FROM $wpdb->posts as posts
|
"SELECT SUM(meta2.meta_value)
|
||||||
LEFT JOIN {$wpdb->postmeta} AS meta ON posts.ID = meta.post_id
|
|
||||||
WHERE posts.post_author = '" . esc_sql( $customer->get_id() ) . "'
|
|
||||||
AND posts.post_type = 'shop_order'
|
|
||||||
AND posts.post_status IN ( 'wc-" . implode( "','wc-", $statuses ) . "' )
|
|
||||||
AND meta.meta_key = '_order_total'";
|
|
||||||
} else {
|
|
||||||
$query = "SELECT SUM(meta2.meta_value)
|
|
||||||
FROM $wpdb->posts as posts
|
FROM $wpdb->posts as posts
|
||||||
LEFT JOIN {$wpdb->postmeta} AS meta ON posts.ID = meta.post_id
|
LEFT JOIN {$wpdb->postmeta} AS meta ON posts.ID = meta.post_id
|
||||||
LEFT JOIN {$wpdb->postmeta} AS meta2 ON posts.ID = meta2.post_id
|
LEFT JOIN {$wpdb->postmeta} AS meta2 ON posts.ID = meta2.post_id
|
||||||
|
@ -429,11 +405,11 @@ class WC_Customer_Data_Store extends WC_Data_Store_WP implements WC_Customer_Dat
|
||||||
AND meta.meta_value = '" . esc_sql( $customer->get_id() ) . "'
|
AND meta.meta_value = '" . esc_sql( $customer->get_id() ) . "'
|
||||||
AND posts.post_type = 'shop_order'
|
AND posts.post_type = 'shop_order'
|
||||||
AND posts.post_status IN ( 'wc-" . implode( "','wc-", $statuses ) . "' )
|
AND posts.post_status IN ( 'wc-" . implode( "','wc-", $statuses ) . "' )
|
||||||
AND meta2.meta_key = '_order_total'";
|
AND meta2.meta_key = '_order_total'",
|
||||||
}
|
$customer
|
||||||
|
)
|
||||||
// phpcs:ignore WordPress.WP.PreparedSQL.NotPrepared
|
// phpcs:enable
|
||||||
$spent = $wpdb->get_var( apply_filters( 'woocommerce_customer_get_total_spent_query', $query, $customer ) );
|
);
|
||||||
|
|
||||||
if ( ! $spent ) {
|
if ( ! $spent ) {
|
||||||
$spent = 0;
|
$spent = 0;
|
||||||
|
|
|
@ -107,17 +107,10 @@ class WC_Order_Data_Store_CPT extends Abstract_WC_Order_Data_Store_CPT implement
|
||||||
$date_paid = get_post_meta( $id, '_paid_date', true );
|
$date_paid = get_post_meta( $id, '_paid_date', true );
|
||||||
}
|
}
|
||||||
|
|
||||||
// On WC 3.5.0 the ID of the user that placed the order was moved from the post meta _customer_user to the post_author field in the wp_posts table.
|
|
||||||
if ( version_compare( get_option( 'woocommerce_db_version' ), '3.5.0', '>=' ) ) {
|
|
||||||
$customer_id = $post_object->post_author;
|
|
||||||
} else {
|
|
||||||
$customer_id = get_post_meta( $id, '_customer_user', true );
|
|
||||||
}
|
|
||||||
|
|
||||||
$order->set_props(
|
$order->set_props(
|
||||||
array(
|
array(
|
||||||
'order_key' => get_post_meta( $id, '_order_key', true ),
|
'order_key' => get_post_meta( $id, '_order_key', true ),
|
||||||
'customer_id' => $customer_id,
|
'customer_id' => get_post_meta( $id, '_customer_user', true ),
|
||||||
'billing_first_name' => get_post_meta( $id, '_billing_first_name', true ),
|
'billing_first_name' => get_post_meta( $id, '_billing_first_name', true ),
|
||||||
'billing_last_name' => get_post_meta( $id, '_billing_last_name', true ),
|
'billing_last_name' => get_post_meta( $id, '_billing_last_name', true ),
|
||||||
'billing_company' => get_post_meta( $id, '_billing_company', true ),
|
'billing_company' => get_post_meta( $id, '_billing_company', true ),
|
||||||
|
@ -265,9 +258,10 @@ class WC_Order_Data_Store_CPT extends Abstract_WC_Order_Data_Store_CPT implement
|
||||||
update_post_meta( $id, '_shipping_address_index', implode( ' ', $order->get_address( 'shipping' ) ) );
|
update_post_meta( $id, '_shipping_address_index', implode( ' ', $order->get_address( 'shipping' ) ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
// If customer email changed, update any downloadable permissions.
|
// If customer changed, update any downloadable permissions.
|
||||||
if ( in_array( 'billing_email', $updated_props ) ) {
|
if ( in_array( 'customer_id', $updated_props ) || in_array( 'billing_email', $updated_props ) ) {
|
||||||
$this->update_downloadable_permissions( $order );
|
$data_store = WC_Data_Store::load( 'customer-download' );
|
||||||
|
$data_store->update_user_by_order_id( $id, $order->get_customer_id(), $order->get_billing_email() );
|
||||||
}
|
}
|
||||||
|
|
||||||
// Mark user account as active.
|
// Mark user account as active.
|
||||||
|
@ -651,11 +645,6 @@ class WC_Order_Data_Store_CPT extends Abstract_WC_Order_Data_Store_CPT implement
|
||||||
'page' => 'paged',
|
'page' => 'paged',
|
||||||
);
|
);
|
||||||
|
|
||||||
// On WC 3.5.0 the ID of the user that placed the order was moved from the post meta _customer_user to the post_author field in the wp_posts table.
|
|
||||||
if ( version_compare( get_option( 'woocommerce_db_version' ), '3.5.0', '>=' ) ) {
|
|
||||||
$key_mapping['customer_id'] = 'author';
|
|
||||||
}
|
|
||||||
|
|
||||||
foreach ( $key_mapping as $query_key => $db_key ) {
|
foreach ( $key_mapping as $query_key => $db_key ) {
|
||||||
if ( isset( $query_vars[ $query_key ] ) ) {
|
if ( isset( $query_vars[ $query_key ] ) ) {
|
||||||
$query_vars[ $db_key ] = $query_vars[ $query_key ];
|
$query_vars[ $db_key ] = $query_vars[ $query_key ];
|
||||||
|
|
|
@ -1855,126 +1855,6 @@ function wc_update_344_db_version() {
|
||||||
WC_Install::update_db_version( '3.4.4' );
|
WC_Install::update_db_version( '3.4.4' );
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Copy order customer_id from post meta to post_author and set post_author to 0 for refunds.
|
|
||||||
*
|
|
||||||
* Two different strategies are used to copy data depending if the update is being executed from
|
|
||||||
* the command line or not. If `wp wc update` is used to update the database, this function
|
|
||||||
* copies data in a single go that is faster but uses more resources. If the databse update was
|
|
||||||
* triggered from the wp-admin, this function copies data in batches which is slower but uses
|
|
||||||
* few resources and thus is less likely to fail on smaller servers.
|
|
||||||
*
|
|
||||||
* @param WC_Background_Updater|false $updater Background updater instance or false if function is called from `wp wc update` WP-CLI command.
|
|
||||||
* @return true|void Return true if near memory limit and needs to restart. Return void if update completed.
|
|
||||||
*/
|
|
||||||
function wc_update_350_order_customer_id( $updater = false ) {
|
|
||||||
global $wpdb;
|
|
||||||
|
|
||||||
$post_types = (array) apply_filters( 'woocommerce_update_350_order_customer_id_post_types', array( 'shop_order' ) );
|
|
||||||
$post_types_placeholders = implode( ', ', array_fill( 0, count( $post_types ), '%s' ) );
|
|
||||||
|
|
||||||
if ( defined( 'WP_CLI' ) && WP_CLI ) {
|
|
||||||
// If running the update from the command-line, copy data in a single go which is faster but uses more resources.
|
|
||||||
$wpdb->query(
|
|
||||||
'CREATE TEMPORARY TABLE customers_map (post_id BIGINT(20), customer_id BIGINT(20), PRIMARY KEY(post_id))'
|
|
||||||
);
|
|
||||||
|
|
||||||
$wpdb->query(
|
|
||||||
"INSERT IGNORE INTO customers_map (SELECT post_id, meta_value FROM {$wpdb->prefix}postmeta WHERE meta_key = '_customer_user')"
|
|
||||||
);
|
|
||||||
|
|
||||||
$wpdb->query( 'SET sql_safe_updates=1' );
|
|
||||||
|
|
||||||
$wpdb->query(
|
|
||||||
$wpdb->prepare(
|
|
||||||
"UPDATE {$wpdb->prefix}posts JOIN customers_map ON {$wpdb->prefix}posts.ID = customers_map.post_id SET {$wpdb->prefix}posts.post_author = customers_map.customer_id WHERE post_type IN ({$post_types_placeholders})", // phpcs:ignore WordPress.WP.PreparedSQL.NotPrepared
|
|
||||||
$post_types
|
|
||||||
)
|
|
||||||
);
|
|
||||||
|
|
||||||
$wpdb->update( $wpdb->posts, array( 'post_author' => 0 ), array( 'post_type' => 'shop_order_refund' ) );
|
|
||||||
} else {
|
|
||||||
// If running the update from the wp-admin, copy data in batches being careful not to use more memory than allowed.
|
|
||||||
$admin_orders_sql = '';
|
|
||||||
$admin_orders = get_transient( 'wc_update_350_admin_orders' );
|
|
||||||
|
|
||||||
if ( false === $admin_orders ) {
|
|
||||||
// Get the list of orders that we don't want to change as they belong to user ID 1.
|
|
||||||
$admin_orders = $wpdb->get_col(
|
|
||||||
$wpdb->prepare(
|
|
||||||
"SELECT ID FROM {$wpdb->prefix}posts p
|
|
||||||
INNER JOIN {$wpdb->prefix}postmeta pm ON p.ID = pm.post_id
|
|
||||||
WHERE post_type IN ({$post_types_placeholders}) AND meta_key = '_customer_user' AND meta_value = 1", // phpcs:ignore WordPress.WP.PreparedSQL.NotPrepared
|
|
||||||
$post_types
|
|
||||||
)
|
|
||||||
);
|
|
||||||
|
|
||||||
// Cache the list of orders placed by the user ID 1 as to large stores this query can be slow.
|
|
||||||
set_transient( 'wc_update_350_admin_orders', $admin_orders, DAY_IN_SECONDS );
|
|
||||||
}
|
|
||||||
|
|
||||||
if ( ! empty( $admin_orders ) ) {
|
|
||||||
$admin_orders_sql .= ' AND ID NOT IN (' . implode( ', ', $admin_orders ) . ') ';
|
|
||||||
}
|
|
||||||
|
|
||||||
// Query to get a batch of orders IDs to change.
|
|
||||||
$query = $wpdb->prepare(
|
|
||||||
// phpcs:disable WordPress.WP.PreparedSQL.NotPrepared
|
|
||||||
"SELECT ID FROM {$wpdb->posts}
|
|
||||||
WHERE post_author = 1 AND post_type IN ({$post_types_placeholders}) $admin_orders_sql
|
|
||||||
LIMIT 1000",
|
|
||||||
$post_types
|
|
||||||
// phpcs:enable
|
|
||||||
);
|
|
||||||
|
|
||||||
while ( true ) {
|
|
||||||
// phpcs:ignore WordPress.WP.PreparedSQL.NotPrepared
|
|
||||||
$orders_to_update = $wpdb->get_col( $query );
|
|
||||||
|
|
||||||
// Exit loop if no more orders to update.
|
|
||||||
if ( ! $orders_to_update ) {
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
$orders_meta_data = $wpdb->get_results(
|
|
||||||
// phpcs:ignore WordPress.WP.PreparedSQL.NotPrepared
|
|
||||||
"SELECT post_id, meta_value as customer_id FROM {$wpdb->postmeta} WHERE meta_key = '_customer_user' AND post_id IN (" . implode( ', ', $orders_to_update ) . ')'
|
|
||||||
);
|
|
||||||
|
|
||||||
// Exit loop if no _customer_user metas exist for the list of orders to update.
|
|
||||||
if ( ! $orders_meta_data ) {
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Update post_author for a batch of orders.
|
|
||||||
foreach ( $orders_meta_data as $order_meta ) {
|
|
||||||
// Stop update execution and re-enqueue it if near memory limit.
|
|
||||||
if ( $updater instanceof WC_Background_Updater && $updater->is_memory_exceeded() ) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
$wpdb->update( $wpdb->posts, array( 'post_author' => $order_meta->customer_id ), array( 'ID' => $order_meta->post_id ) );
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Set post_author to 0 instead of 1 on all shop_order_refunds.
|
|
||||||
while ( true ) {
|
|
||||||
// Stop update execution and re-enqueue it if near memory limit.
|
|
||||||
if ( $updater instanceof WC_Background_Updater && $updater->is_memory_exceeded() ) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
$updated_rows = $wpdb->query( "UPDATE {$wpdb->posts} SET post_author = 0 WHERE post_type = 'shop_order_refund' LIMIT 1000" );
|
|
||||||
|
|
||||||
if ( ! $updated_rows ) {
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
wp_cache_flush();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set the comment type to 'review' for product reviews that don't have a comment type.
|
* Set the comment type to 'review' for product reviews that don't have a comment type.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -219,15 +219,11 @@ function wc_customer_bought_product( $customer_email, $user_id, $product_id ) {
|
||||||
$result = get_transient( $transient_name );
|
$result = get_transient( $transient_name );
|
||||||
|
|
||||||
if ( false === $result ) {
|
if ( false === $result ) {
|
||||||
$customer_data = array();
|
$customer_data = array( $user_id );
|
||||||
|
|
||||||
if ( $user_id ) {
|
if ( $user_id ) {
|
||||||
$user = get_user_by( 'id', $user_id );
|
$user = get_user_by( 'id', $user_id );
|
||||||
|
|
||||||
if ( version_compare( get_option( 'woocommerce_db_version' ), '3.5.0', '<' ) ) {
|
|
||||||
$customer_data[] = $user_id;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ( isset( $user->user_email ) ) {
|
if ( isset( $user->user_email ) ) {
|
||||||
$customer_data[] = $user->user_email;
|
$customer_data[] = $user->user_email;
|
||||||
}
|
}
|
||||||
|
@ -244,31 +240,19 @@ function wc_customer_bought_product( $customer_email, $user_id, $product_id ) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( version_compare( get_option( 'woocommerce_db_version' ), '3.5.0', '>=' ) && $user_id ) {
|
$result = $wpdb->get_col(
|
||||||
// Since WC 3.5 wp_posts.post_author is used to store the ID of the customer who placed an order.
|
"
|
||||||
$query = "SELECT im.meta_value FROM {$wpdb->posts} AS p
|
SELECT im.meta_value FROM {$wpdb->posts} AS p
|
||||||
INNER JOIN {$wpdb->postmeta} AS pm ON p.ID = pm.post_id
|
INNER JOIN {$wpdb->postmeta} AS pm ON p.ID = pm.post_id
|
||||||
INNER JOIN {$wpdb->prefix}woocommerce_order_items AS i ON p.ID = i.order_id
|
INNER JOIN {$wpdb->prefix}woocommerce_order_items AS i ON p.ID = i.order_id
|
||||||
INNER JOIN {$wpdb->prefix}woocommerce_order_itemmeta AS im ON i.order_item_id = im.order_item_id
|
INNER JOIN {$wpdb->prefix}woocommerce_order_itemmeta AS im ON i.order_item_id = im.order_item_id
|
||||||
WHERE p.post_status IN ( 'wc-" . implode( "','wc-", $statuses ) . "' )
|
WHERE p.post_status IN ( 'wc-" . implode( "','wc-", $statuses ) . "' )
|
||||||
AND p.post_author = {$user_id}
|
AND pm.meta_key IN ( '_billing_email', '_customer_user' )
|
||||||
AND pm.meta_key = '_billing_email'
|
AND im.meta_key IN ( '_product_id', '_variation_id' )
|
||||||
AND im.meta_key IN ( '_product_id', '_variation_id' )
|
AND im.meta_value != 0
|
||||||
AND im.meta_value != 0
|
AND pm.meta_value IN ( '" . implode( "','", $customer_data ) . "' )
|
||||||
AND pm.meta_value IN ( '" . implode( "','", $customer_data ) . "' )";
|
"
|
||||||
} else {
|
); // WPCS: unprepared SQL ok.
|
||||||
$query = "SELECT im.meta_value FROM {$wpdb->posts} AS p
|
|
||||||
INNER JOIN {$wpdb->postmeta} AS pm ON p.ID = pm.post_id
|
|
||||||
INNER JOIN {$wpdb->prefix}woocommerce_order_items AS i ON p.ID = i.order_id
|
|
||||||
INNER JOIN {$wpdb->prefix}woocommerce_order_itemmeta AS im ON i.order_item_id = im.order_item_id
|
|
||||||
WHERE p.post_status IN ( 'wc-" . implode( "','wc-", $statuses ) . "' )
|
|
||||||
AND pm.meta_key IN ( '_billing_email', '_customer_user' )
|
|
||||||
AND im.meta_key IN ( '_product_id', '_variation_id' )
|
|
||||||
AND im.meta_value != 0
|
|
||||||
AND pm.meta_value IN ( '" . implode( "','", $customer_data ) . "' )";
|
|
||||||
}
|
|
||||||
|
|
||||||
$result = $wpdb->get_col( $query ); // WPCS: unprepared SQL ok.
|
|
||||||
$result = array_map( 'absint', $result );
|
$result = array_map( 'absint', $result );
|
||||||
|
|
||||||
set_transient( $transient_name, $result, DAY_IN_SECONDS * 30 );
|
set_transient( $transient_name, $result, DAY_IN_SECONDS * 30 );
|
||||||
|
@ -561,7 +545,7 @@ function wc_get_customer_order_count( $user_id ) {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Reset customer ID on orders when a user is deleted.
|
* Reset _customer_user on orders when a user is deleted.
|
||||||
*
|
*
|
||||||
* @param int $user_id User ID.
|
* @param int $user_id User ID.
|
||||||
*/
|
*/
|
||||||
|
@ -574,22 +558,6 @@ function wc_reset_order_customer_id_on_deleted_user( $user_id ) {
|
||||||
'meta_value' => $user_id,
|
'meta_value' => $user_id,
|
||||||
)
|
)
|
||||||
); // WPCS: slow query ok.
|
); // WPCS: slow query ok.
|
||||||
|
|
||||||
$post_types = (array) apply_filters( 'woocommerce_reset_order_customer_id_post_types', array( 'shop_order' ) );
|
|
||||||
$post_types_placeholders = implode( ', ', array_fill( 0, count( $post_types ), '%s' ) );
|
|
||||||
$query_args = array_merge( $post_types, array( $user_id ) );
|
|
||||||
|
|
||||||
// Since WC 3.5, the customer ID is stored both in the _customer_user postmeta and in the post_author field.
|
|
||||||
// In future versions of WC, the plan is to use only post_author and stop using _customer_user, but for now
|
|
||||||
// we have to update both places.
|
|
||||||
$wpdb->query(
|
|
||||||
// phpcs:disable WordPress.WP.PreparedSQL.NotPrepared, WordPress.DB.PreparedSQLPlaceholders.UnfinishedPrepare
|
|
||||||
$wpdb->prepare(
|
|
||||||
"UPDATE {$wpdb->posts} SET `post_author` = 0 WHERE post_type IN ({$post_types_placeholders}) AND post_author = %d",
|
|
||||||
$query_args
|
|
||||||
)
|
|
||||||
// phpcs:enable
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
add_action( 'deleted_user', 'wc_reset_order_customer_id_on_deleted_user' );
|
add_action( 'deleted_user', 'wc_reset_order_customer_id_on_deleted_user' );
|
||||||
|
|
Loading…
Reference in New Issue