/**
  * Saves an item's data to the database / item meta.
  * Ran after both create and update, so $item->get_id() will be set.
  *
  * @since 2.7.0
  * @param WC_Order_Item $item
  */
 public function save_item_data(&$item)
 {
     wc_update_order_item_meta($item->get_id(), 'method_id', $item->get_method_id('edit'));
     wc_update_order_item_meta($item->get_id(), 'cost', $item->get_total('edit'));
     wc_update_order_item_meta($item->get_id(), 'total_tax', $item->get_total_tax('edit'));
     wc_update_order_item_meta($item->get_id(), 'taxes', $item->get_taxes('edit'));
 }
 /**
  * Saves an item's data to the database / item meta.
  * Ran after both create and update, so $item->get_id() will be set.
  *
  * @since 2.7.0
  * @param WC_Order_Item $item
  */
 public function save_item_data(&$item)
 {
     wc_update_order_item_meta($item->get_id(), '_tax_class', $item->get_tax_class('edit'));
     wc_update_order_item_meta($item->get_id(), '_tax_status', $item->get_tax_status('edit'));
     wc_update_order_item_meta($item->get_id(), '_line_total', $item->get_total('edit'));
     wc_update_order_item_meta($item->get_id(), '_line_tax', $item->get_total_tax('edit'));
     wc_update_order_item_meta($item->get_id(), '_line_tax_data', $item->get_taxes('edit'));
 }
 /**
  * Saves an item's data to the database / item meta.
  * Ran after both create and update, so $item->get_id() will be set.
  *
  * @since 2.7.0
  * @param WC_Order_Item $item
  */
 public function save_item_data(&$item)
 {
     wc_update_order_item_meta($item->get_id(), 'rate_id', $item->get_rate_id('edit'));
     wc_update_order_item_meta($item->get_id(), 'label', $item->get_label('edit'));
     wc_update_order_item_meta($item->get_id(), 'compound', $item->get_compound('edit'));
     wc_update_order_item_meta($item->get_id(), 'tax_amount', $item->get_tax_total('edit'));
     wc_update_order_item_meta($item->get_id(), 'shipping_tax_amount', $item->get_shipping_tax_total('edit'));
 }
 /**
  * Saves an item's data to the database / item meta.
  * Ran after both create and update, so $item->get_id() will be set.
  *
  * @since 2.7.0
  * @param WC_Order_Item $item
  */
 public function save_item_data(&$item)
 {
     wc_update_order_item_meta($item->get_id(), '_product_id', $item->get_product_id('edit'));
     wc_update_order_item_meta($item->get_id(), '_variation_id', $item->get_variation_id('edit'));
     wc_update_order_item_meta($item->get_id(), '_qty', $item->get_quantity('edit'));
     wc_update_order_item_meta($item->get_id(), '_tax_class', $item->get_tax_class('edit'));
     wc_update_order_item_meta($item->get_id(), '_line_subtotal', $item->get_subtotal('edit'));
     wc_update_order_item_meta($item->get_id(), '_line_subtotal_tax', $item->get_subtotal_tax('edit'));
     wc_update_order_item_meta($item->get_id(), '_line_total', $item->get_total('edit'));
     wc_update_order_item_meta($item->get_id(), '_line_tax', $item->get_total_tax('edit'));
     wc_update_order_item_meta($item->get_id(), '_line_tax_data', $item->get_taxes('edit'));
 }
 /**
  * Read a order item from the database.
  *
  * @since 2.7.0
  * @param WC_Order_Item $item
  */
 public function read(&$item)
 {
     global $wpdb;
     $item->set_defaults();
     $data = $wpdb->get_row($wpdb->prepare("SELECT * FROM {$wpdb->prefix}woocommerce_order_items WHERE order_item_id = %d LIMIT 1;", $item->get_id()));
     if (!$data) {
         throw new Exception(__('Invalid order item.', 'woocommerce'));
     }
     $item->set_props(array('order_id' => $data->order_id, 'name' => $data->order_item_name, 'type' => $data->order_item_type));
     $item->read_meta_data();
     $item->set_object_read(true);
 }
 /**
  * Saves an item's data to the database / item meta.
  * Ran after both create and update, so $item->get_id() will be set.
  *
  * @since 2.7.0
  * @param WC_Order_Item $item
  */
 public function save_item_data(&$item)
 {
     wc_update_order_item_meta($item->get_id(), 'discount_amount', $item->get_discount('edit'));
     wc_update_order_item_meta($item->get_id(), 'discount_amount_tax', $item->get_discount_tax('edit'));
 }