/**
  * 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'));
 }