2016-11-17 21:30:34 +00:00
|
|
|
<?php
|
2018-03-08 19:28:49 +00:00
|
|
|
/**
|
|
|
|
* Class WC_Order_Item_Fee_Data_Store file.
|
|
|
|
*
|
|
|
|
* @package WooCommerce\DataStores
|
|
|
|
*/
|
|
|
|
|
2016-11-17 21:30:34 +00:00
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* WC Order Item Fee Data Store
|
|
|
|
*
|
2017-03-15 16:36:53 +00:00
|
|
|
* @version 3.0.0
|
2016-11-17 21:30:34 +00:00
|
|
|
*/
|
2016-11-22 13:54:51 +00:00
|
|
|
class WC_Order_Item_Fee_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-08-23 11:15:06 +00:00
|
|
|
*
|
2017-03-15 16:36:53 +00:00
|
|
|
* @since 3.0.0
|
2016-11-24 11:50:34 +00:00
|
|
|
* @var array
|
|
|
|
*/
|
2017-08-23 11:15:06 +00:00
|
|
|
protected $internal_meta_keys = array( '_fee_amount', '_tax_class', '_tax_status', '_line_subtotal', '_line_subtotal_tax', '_line_total', '_line_tax', '_line_tax_data' );
|
2016-11-24 11:50:34 +00:00
|
|
|
|
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
|
2018-03-08 19:28:49 +00:00
|
|
|
* @param WC_Order_Item_Fee $item Fee order item object.
|
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();
|
2018-03-07 19:16:01 +00:00
|
|
|
$item->set_props(
|
|
|
|
array(
|
|
|
|
'amount' => get_metadata( 'order_item', $id, '_fee_amount', true ),
|
|
|
|
'tax_class' => get_metadata( 'order_item', $id, '_tax_class', true ),
|
|
|
|
'tax_status' => get_metadata( 'order_item', $id, '_tax_status', true ),
|
|
|
|
'total' => get_metadata( 'order_item', $id, '_line_total', true ),
|
|
|
|
'taxes' => get_metadata( 'order_item', $id, '_line_tax_data', true ),
|
|
|
|
)
|
|
|
|
);
|
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
|
2018-03-08 19:28:49 +00:00
|
|
|
* @param WC_Order_Item_Fee $item Fee order item object.
|
2016-11-18 11:33:31 +00:00
|
|
|
*/
|
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(
|
2017-08-23 11:15:06 +00:00
|
|
|
'_fee_amount' => $item->get_amount( 'edit' ),
|
2017-02-01 09:53:53 +00:00
|
|
|
'_tax_class' => $item->get_tax_class( 'edit' ),
|
|
|
|
'_tax_status' => $item->get_tax_status( 'edit' ),
|
|
|
|
'_line_total' => $item->get_total( 'edit' ),
|
|
|
|
'_line_tax' => $item->get_total_tax( 'edit' ),
|
|
|
|
'_line_tax_data' => $item->get_taxes( 'edit' ),
|
|
|
|
);
|
|
|
|
foreach ( $save_values as $key => $value ) {
|
|
|
|
update_metadata( 'order_item', $id, $key, $value );
|
|
|
|
}
|
2016-11-17 21:30:34 +00:00
|
|
|
}
|
|
|
|
}
|