2016-06-21 19:10:09 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2018-03-21 03:46:32 +00:00
|
|
|
* Order Line Item (shipping)
|
2016-06-21 19:10:09 +00:00
|
|
|
*
|
2018-03-21 03:46:32 +00:00
|
|
|
* @package WooCommerce/Classes
|
|
|
|
* @version 3.0.0
|
|
|
|
* @since 3.0.0
|
2018-01-15 14:28:08 +00:00
|
|
|
*/
|
|
|
|
|
2018-03-21 03:46:32 +00:00
|
|
|
defined( 'ABSPATH' ) || exit;
|
2018-01-15 14:28:08 +00:00
|
|
|
|
|
|
|
/**
|
2018-03-21 03:46:32 +00:00
|
|
|
* Order item shipping class.
|
2016-06-21 19:10:09 +00:00
|
|
|
*/
|
|
|
|
class WC_Order_Item_Shipping extends WC_Order_Item {
|
|
|
|
|
|
|
|
/**
|
2017-03-15 16:36:53 +00:00
|
|
|
* Order Data array. This is the core order data exposed in APIs since 3.0.0.
|
2018-01-15 14:28:08 +00:00
|
|
|
*
|
2017-03-15 16:36:53 +00:00
|
|
|
* @since 3.0.0
|
2016-06-21 19:10:09 +00:00
|
|
|
* @var array
|
|
|
|
*/
|
2016-11-17 21:30:34 +00:00
|
|
|
protected $extra_data = array(
|
2016-08-16 11:36:38 +00:00
|
|
|
'method_title' => '',
|
|
|
|
'method_id' => '',
|
2018-01-15 14:31:05 +00:00
|
|
|
'instance_id' => '',
|
2016-08-16 11:36:38 +00:00
|
|
|
'total' => 0,
|
|
|
|
'total_tax' => 0,
|
|
|
|
'taxes' => array(
|
2016-08-27 01:46:45 +00:00
|
|
|
'total' => array(),
|
2016-06-21 19:10:09 +00:00
|
|
|
),
|
|
|
|
);
|
|
|
|
|
2017-07-27 09:49:47 +00:00
|
|
|
/**
|
|
|
|
* Calculate item taxes.
|
|
|
|
*
|
|
|
|
* @since 3.2.0
|
|
|
|
* @param array $calculate_tax_for Location data to get taxes for. Required.
|
|
|
|
* @return bool True if taxes were calculated.
|
|
|
|
*/
|
|
|
|
public function calculate_taxes( $calculate_tax_for = array() ) {
|
|
|
|
if ( ! isset( $calculate_tax_for['country'], $calculate_tax_for['state'], $calculate_tax_for['postcode'], $calculate_tax_for['city'], $calculate_tax_for['tax_class'] ) ) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if ( wc_tax_enabled() ) {
|
|
|
|
$tax_rates = WC_Tax::find_shipping_rates( $calculate_tax_for );
|
|
|
|
$taxes = WC_Tax::calc_tax( $this->get_total(), $tax_rates, false );
|
|
|
|
$this->set_taxes( array( 'total' => $taxes ) );
|
|
|
|
} else {
|
|
|
|
$this->set_taxes( false );
|
|
|
|
}
|
2017-09-28 10:52:55 +00:00
|
|
|
|
|
|
|
do_action( 'woocommerce_order_item_shipping_after_calculate_taxes', $this, $calculate_tax_for );
|
|
|
|
|
2017-07-27 09:49:47 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-06-21 19:10:09 +00:00
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Setters
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set order item name.
|
2016-11-17 21:30:34 +00:00
|
|
|
*
|
2018-01-15 14:28:08 +00:00
|
|
|
* @param string $value Value to set.
|
|
|
|
* @throws WC_Data_Exception May throw exception if data is invalid.
|
2016-06-21 19:10:09 +00:00
|
|
|
*/
|
|
|
|
public function set_name( $value ) {
|
2016-08-26 09:54:18 +00:00
|
|
|
$this->set_method_title( $value );
|
2016-06-21 19:10:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-11-17 21:30:34 +00:00
|
|
|
* Set method title.
|
|
|
|
*
|
2018-01-15 14:28:08 +00:00
|
|
|
* @param string $value Value to set.
|
|
|
|
* @throws WC_Data_Exception May throw exception if data is invalid.
|
2016-06-21 19:10:09 +00:00
|
|
|
*/
|
|
|
|
public function set_method_title( $value ) {
|
2017-04-11 20:38:50 +00:00
|
|
|
$this->set_prop( 'name', wc_clean( $value ) );
|
2016-11-17 21:30:34 +00:00
|
|
|
$this->set_prop( 'method_title', wc_clean( $value ) );
|
2016-06-21 19:10:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set shipping method id.
|
2016-11-17 21:30:34 +00:00
|
|
|
*
|
2018-01-15 14:28:08 +00:00
|
|
|
* @param string $value Value to set.
|
|
|
|
* @throws WC_Data_Exception May throw exception if data is invalid.
|
2016-06-21 19:10:09 +00:00
|
|
|
*/
|
|
|
|
public function set_method_id( $value ) {
|
2016-11-17 21:30:34 +00:00
|
|
|
$this->set_prop( 'method_id', wc_clean( $value ) );
|
2016-06-21 19:10:09 +00:00
|
|
|
}
|
|
|
|
|
2018-01-15 14:31:05 +00:00
|
|
|
/**
|
|
|
|
* Set shipping instance id.
|
|
|
|
*
|
|
|
|
* @param string $value Value to set.
|
|
|
|
* @throws WC_Data_Exception May throw exception if data is invalid.
|
|
|
|
*/
|
|
|
|
public function set_instance_id( $value ) {
|
|
|
|
$this->set_prop( 'instance_id', wc_clean( $value ) );
|
|
|
|
}
|
|
|
|
|
2016-06-21 19:10:09 +00:00
|
|
|
/**
|
|
|
|
* Set total.
|
2016-11-17 21:30:34 +00:00
|
|
|
*
|
2018-01-15 14:28:08 +00:00
|
|
|
* @param string $value Value to set.
|
|
|
|
* @throws WC_Data_Exception May throw exception if data is invalid.
|
2016-06-21 19:10:09 +00:00
|
|
|
*/
|
|
|
|
public function set_total( $value ) {
|
2016-11-17 21:30:34 +00:00
|
|
|
$this->set_prop( 'total', wc_format_decimal( $value ) );
|
2016-06-21 19:10:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set total tax.
|
2016-11-17 21:30:34 +00:00
|
|
|
*
|
2018-01-15 14:28:08 +00:00
|
|
|
* @param string $value Value to set.
|
|
|
|
* @throws WC_Data_Exception May throw exception if data is invalid.
|
2016-06-21 19:10:09 +00:00
|
|
|
*/
|
2016-08-25 12:05:27 +00:00
|
|
|
protected function set_total_tax( $value ) {
|
2016-11-17 21:30:34 +00:00
|
|
|
$this->set_prop( 'total_tax', wc_format_decimal( $value ) );
|
2016-06-21 19:10:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set taxes.
|
|
|
|
*
|
|
|
|
* This is an array of tax ID keys with total amount values.
|
2018-01-15 14:28:08 +00:00
|
|
|
*
|
|
|
|
* @param array $raw_tax_data Value to set.
|
|
|
|
* @throws WC_Data_Exception May throw exception if data is invalid.
|
2016-06-21 19:10:09 +00:00
|
|
|
*/
|
|
|
|
public function set_taxes( $raw_tax_data ) {
|
|
|
|
$raw_tax_data = maybe_unserialize( $raw_tax_data );
|
|
|
|
$tax_data = array(
|
2018-01-15 14:28:08 +00:00
|
|
|
'total' => array(),
|
2016-06-21 19:10:09 +00:00
|
|
|
);
|
2017-05-18 14:48:42 +00:00
|
|
|
if ( isset( $raw_tax_data['total'] ) ) {
|
2018-01-15 14:28:08 +00:00
|
|
|
$tax_data['total'] = array_map( 'wc_format_decimal', $raw_tax_data['total'] );
|
2017-04-26 11:17:34 +00:00
|
|
|
} elseif ( ! empty( $raw_tax_data ) && is_array( $raw_tax_data ) ) {
|
|
|
|
// Older versions just used an array.
|
2018-01-15 14:28:08 +00:00
|
|
|
$tax_data['total'] = array_map( 'wc_format_decimal', $raw_tax_data );
|
2016-06-21 19:10:09 +00:00
|
|
|
}
|
2016-11-17 21:30:34 +00:00
|
|
|
$this->set_prop( 'taxes', $tax_data );
|
2016-06-21 19:10:09 +00:00
|
|
|
$this->set_total_tax( array_sum( $tax_data['total'] ) );
|
|
|
|
}
|
|
|
|
|
2016-08-22 15:48:19 +00:00
|
|
|
/**
|
|
|
|
* Set properties based on passed in shipping rate object.
|
2016-11-17 21:30:34 +00:00
|
|
|
*
|
2018-01-15 14:28:08 +00:00
|
|
|
* @param WC_Shipping_Rate $shipping_rate Shipping rate to set.
|
2016-08-22 15:48:19 +00:00
|
|
|
*/
|
|
|
|
public function set_shipping_rate( $shipping_rate ) {
|
2018-01-15 14:31:05 +00:00
|
|
|
$this->set_method_title( $shipping_rate->get_label() );
|
|
|
|
$this->set_method_id( $shipping_rate->get_method_id() );
|
|
|
|
$this->set_instance_id( $shipping_rate->get_instance_id() );
|
|
|
|
$this->set_total( $shipping_rate->get_cost() );
|
|
|
|
$this->set_taxes( $shipping_rate->get_taxes() );
|
2016-08-22 15:48:19 +00:00
|
|
|
$this->set_meta_data( $shipping_rate->get_meta_data() );
|
|
|
|
}
|
|
|
|
|
2016-06-21 19:10:09 +00:00
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Getters
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get order item type.
|
2016-11-17 21:30:34 +00:00
|
|
|
*
|
2016-06-21 19:10:09 +00:00
|
|
|
* @return string
|
|
|
|
*/
|
2016-11-18 11:33:31 +00:00
|
|
|
public function get_type() {
|
2016-06-21 19:10:09 +00:00
|
|
|
return 'shipping';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get order item name.
|
2016-11-17 21:30:34 +00:00
|
|
|
*
|
2018-01-15 14:28:08 +00:00
|
|
|
* @param string $context View or edit context.
|
2016-06-21 19:10:09 +00:00
|
|
|
* @return string
|
|
|
|
*/
|
2016-11-17 21:30:34 +00:00
|
|
|
public function get_name( $context = 'view' ) {
|
|
|
|
return $this->get_method_title( $context );
|
2016-06-21 19:10:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get title.
|
2016-11-17 21:30:34 +00:00
|
|
|
*
|
2018-01-15 14:28:08 +00:00
|
|
|
* @param string $context View or edit context.
|
2016-06-21 19:10:09 +00:00
|
|
|
* @return string
|
|
|
|
*/
|
2016-11-17 21:30:34 +00:00
|
|
|
public function get_method_title( $context = 'view' ) {
|
|
|
|
$method_title = $this->get_prop( 'method_title', $context );
|
2016-11-21 12:14:53 +00:00
|
|
|
if ( 'view' === $context ) {
|
|
|
|
return $method_title ? $method_title : __( 'Shipping', 'woocommerce' );
|
|
|
|
} else {
|
|
|
|
return $method_title;
|
|
|
|
}
|
2016-06-21 19:10:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get method ID.
|
2016-11-17 21:30:34 +00:00
|
|
|
*
|
2018-01-15 14:28:08 +00:00
|
|
|
* @param string $context View or edit context.
|
2016-06-21 19:10:09 +00:00
|
|
|
* @return string
|
|
|
|
*/
|
2016-11-17 21:30:34 +00:00
|
|
|
public function get_method_id( $context = 'view' ) {
|
|
|
|
return $this->get_prop( 'method_id', $context );
|
2016-06-21 19:10:09 +00:00
|
|
|
}
|
|
|
|
|
2018-01-15 14:31:05 +00:00
|
|
|
/**
|
|
|
|
* Get instance ID.
|
|
|
|
*
|
|
|
|
* @param string $context View or edit context.
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function get_instance_id( $context = 'view' ) {
|
|
|
|
return $this->get_prop( 'instance_id', $context );
|
|
|
|
}
|
|
|
|
|
2016-06-21 19:10:09 +00:00
|
|
|
/**
|
|
|
|
* Get total cost.
|
2016-11-17 21:30:34 +00:00
|
|
|
*
|
2018-01-15 14:28:08 +00:00
|
|
|
* @param string $context View or edit context.
|
2016-06-21 19:10:09 +00:00
|
|
|
* @return string
|
|
|
|
*/
|
2016-11-17 21:30:34 +00:00
|
|
|
public function get_total( $context = 'view' ) {
|
|
|
|
return $this->get_prop( 'total', $context );
|
2016-06-21 19:10:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get total tax.
|
2016-11-17 21:30:34 +00:00
|
|
|
*
|
2018-01-15 14:28:08 +00:00
|
|
|
* @param string $context View or edit context.
|
2016-06-21 19:10:09 +00:00
|
|
|
* @return string
|
|
|
|
*/
|
2016-11-17 21:30:34 +00:00
|
|
|
public function get_total_tax( $context = 'view' ) {
|
|
|
|
return $this->get_prop( 'total_tax', $context );
|
2016-06-21 19:10:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get taxes.
|
2016-11-17 21:30:34 +00:00
|
|
|
*
|
2018-01-15 14:28:08 +00:00
|
|
|
* @param string $context View or edit context.
|
2016-06-21 19:10:09 +00:00
|
|
|
* @return array
|
|
|
|
*/
|
2016-11-17 21:30:34 +00:00
|
|
|
public function get_taxes( $context = 'view' ) {
|
|
|
|
return $this->get_prop( 'taxes', $context );
|
|
|
|
}
|
|
|
|
|
2017-08-11 16:53:49 +00:00
|
|
|
/**
|
|
|
|
* Get tax class.
|
|
|
|
*
|
2018-01-15 14:28:08 +00:00
|
|
|
* @param string $context View or edit context.
|
2017-08-11 16:53:49 +00:00
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function get_tax_class( $context = 'view' ) {
|
|
|
|
return get_option( 'woocommerce_shipping_tax_class' );
|
|
|
|
}
|
|
|
|
|
2016-11-17 21:30:34 +00:00
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Array Access Methods
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
2017-07-17 10:10:52 +00:00
|
|
|
| For backwards compatibility with legacy arrays.
|
2016-11-17 21:30:34 +00:00
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2018-01-15 14:28:08 +00:00
|
|
|
* Offset get: for ArrayAccess/Backwards compatibility.
|
|
|
|
*
|
2016-11-17 21:30:34 +00:00
|
|
|
* @deprecated Add deprecation notices in future release.
|
2018-01-15 14:28:08 +00:00
|
|
|
* @param string $offset Key.
|
2016-11-17 21:30:34 +00:00
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function offsetGet( $offset ) {
|
|
|
|
if ( 'cost' === $offset ) {
|
|
|
|
$offset = 'total';
|
|
|
|
}
|
|
|
|
return parent::offsetGet( $offset );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-01-15 14:28:08 +00:00
|
|
|
* Offset set: for ArrayAccess/Backwards compatibility.
|
|
|
|
*
|
2016-11-17 21:30:34 +00:00
|
|
|
* @deprecated Add deprecation notices in future release.
|
2018-01-15 14:28:08 +00:00
|
|
|
* @param string $offset Key.
|
|
|
|
* @param mixed $value Value to set.
|
2016-11-17 21:30:34 +00:00
|
|
|
*/
|
|
|
|
public function offsetSet( $offset, $value ) {
|
|
|
|
if ( 'cost' === $offset ) {
|
|
|
|
$offset = 'total';
|
|
|
|
}
|
|
|
|
parent::offsetSet( $offset, $value );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-01-15 14:28:08 +00:00
|
|
|
* Offset exists: for ArrayAccess.
|
|
|
|
*
|
|
|
|
* @param string $offset Key.
|
2016-11-17 21:30:34 +00:00
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function offsetExists( $offset ) {
|
2018-01-15 14:28:08 +00:00
|
|
|
if ( in_array( $offset, array( 'cost' ), true ) ) {
|
2016-11-17 21:30:34 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return parent::offsetExists( $offset );
|
|
|
|
}
|
2016-06-21 19:10:09 +00:00
|
|
|
}
|