2016-11-17 21:30:34 +00:00
|
|
|
<?php
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* WC Order Item Tax Data Store
|
|
|
|
*
|
2017-03-15 16:36:53 +00:00
|
|
|
* @version 3.0.0
|
2016-11-17 21:30:34 +00:00
|
|
|
* @category Class
|
2016-11-18 11:33:31 +00:00
|
|
|
* @author WooCommerce
|
2016-11-17 21:30:34 +00:00
|
|
|
*/
|
2016-11-22 13:54:51 +00:00
|
|
|
class WC_Order_Item_Tax_Data_Store extends Abstract_WC_Order_Item_Type_Data_Store implements WC_Object_Data_Store_Interface, WC_Order_Item_Type_Data_Store_Interface {
|
2017-03-20 10:03:14 +00:00
|
|
|
|
2016-11-24 11:50:34 +00:00
|
|
|
/**
|
|
|
|
* Data stored in meta keys.
|
2017-03-15 16:36:53 +00:00
|
|
|
* @since 3.0.0
|
2016-11-24 11:50:34 +00:00
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $internal_meta_keys = array( 'rate_id', 'label', 'compound', 'tax_amount', 'shipping_tax_amount' );
|
|
|
|
|
2016-11-17 21:30:34 +00:00
|
|
|
/**
|
|
|
|
* Read/populate data properties specific to this order item.
|
|
|
|
*
|
2017-03-15 16:36:53 +00:00
|
|
|
* @since 3.0.0
|
2017-03-20 10:03:14 +00:00
|
|
|
* @param WC_Order_Item_Tax $item
|
2016-11-17 21:30:34 +00:00
|
|
|
*/
|
|
|
|
public function read( &$item ) {
|
|
|
|
parent::read( $item );
|
2017-02-01 00:44:16 +00:00
|
|
|
$id = $item->get_id();
|
2016-11-17 21:30:34 +00:00
|
|
|
$item->set_props( array(
|
2017-02-01 00:44:16 +00:00
|
|
|
'rate_id' => get_metadata( 'order_item', $id, 'rate_id', true ),
|
|
|
|
'label' => get_metadata( 'order_item', $id, 'label', true ),
|
|
|
|
'compound' => get_metadata( 'order_item', $id, 'compound', true ),
|
|
|
|
'tax_total' => get_metadata( 'order_item', $id, 'tax_amount', true ),
|
|
|
|
'shipping_tax_total' => get_metadata( 'order_item', $id, 'shipping_tax_amount', true ),
|
2016-11-17 21:30:34 +00:00
|
|
|
) );
|
2016-12-18 18:04:14 +00:00
|
|
|
$item->set_object_read( true );
|
2016-11-17 21:30:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-11-18 11:33:31 +00:00
|
|
|
* Saves an item's data to the database / item meta.
|
2017-02-01 00:44:16 +00:00
|
|
|
* Ran after both create and update, so $id will be set.
|
2016-11-18 11:33:31 +00:00
|
|
|
*
|
2017-03-15 16:36:53 +00:00
|
|
|
* @since 3.0.0
|
2017-03-20 10:03:14 +00:00
|
|
|
* @param WC_Order_Item_Tax $item
|
2016-11-17 21:30:34 +00:00
|
|
|
*/
|
|
|
|
public function save_item_data( &$item ) {
|
2017-02-01 09:53:53 +00:00
|
|
|
$id = $item->get_id();
|
|
|
|
$save_values = array(
|
|
|
|
'rate_id' => $item->get_rate_id( 'edit' ),
|
|
|
|
'label' => $item->get_label( 'edit' ),
|
|
|
|
'compound' => $item->get_compound( 'edit' ),
|
|
|
|
'tax_amount' => $item->get_tax_total( 'edit' ),
|
|
|
|
'shipping_tax_amount' => $item->get_shipping_tax_total( 'edit' ),
|
|
|
|
);
|
|
|
|
foreach ( $save_values as $key => $value ) {
|
|
|
|
update_metadata( 'order_item', $id, $key, $value );
|
|
|
|
}
|
2016-11-17 21:30:34 +00:00
|
|
|
}
|
|
|
|
}
|