Do not update woocommerce_order_items if nothing changed
Do not update the item (`woocommerce_order_items`) unless something changed.
This commit is contained in:
parent
3946654b29
commit
f2f6d76f6d
|
@ -59,11 +59,15 @@ abstract class Abstract_WC_Order_Item_Type_Data_Store extends WC_Data_Store_WP i
|
|||
public function update( &$item ) {
|
||||
global $wpdb;
|
||||
|
||||
$wpdb->update( $wpdb->prefix . 'woocommerce_order_items', array(
|
||||
'order_item_name' => $item->get_name(),
|
||||
'order_item_type' => $item->get_type(),
|
||||
'order_id' => $item->get_order_id(),
|
||||
), array( 'order_item_id' => $item->get_id() ) );
|
||||
$changes = $item->get_changes();
|
||||
|
||||
if ( ! empty( $changes ) ) {
|
||||
$wpdb->update( $wpdb->prefix . 'woocommerce_order_items', array(
|
||||
'order_item_name' => $item->get_name(),
|
||||
'order_item_type' => $item->get_type(),
|
||||
'order_id' => $item->get_order_id(),
|
||||
), array( 'order_item_id' => $item->get_id() ) );
|
||||
}
|
||||
|
||||
$this->save_item_data( $item );
|
||||
$item->save_meta_data();
|
||||
|
|
Loading…
Reference in New Issue