woocommerce/includes/class-wc-totals.php

432 lines
12 KiB
PHP
Raw Normal View History

<?php
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* Order/cart totals calculation class.
*
* @author Automattic
* @package WooCommerce/Classes
* @version 3.2.0
* @since 3.2.0
*/
class WC_Totals {
/**
2017-07-24 16:21:08 +00:00
* Reference to cart or order object.
*
2017-07-24 16:21:08 +00:00
* @since 3.2.0
* @var array
*/
2017-07-24 16:21:08 +00:00
protected $object;
/**
2017-07-24 16:21:08 +00:00
* Line items to calculate.
*
2017-07-24 16:21:08 +00:00
* @since 3.2.0
* @var array
*/
2017-07-24 16:21:08 +00:00
protected $items = array(); // @todo ?
2017-07-23 11:05:11 +00:00
/**
2017-07-24 16:21:08 +00:00
* Discount amounts in cents after calculation.
2017-07-23 11:05:11 +00:00
*
2017-07-24 16:21:08 +00:00
* @since 3.2.0
2017-07-23 11:05:11 +00:00
* @var array
*/
protected $discounts = array();
/**
* Stores totals.
*
2017-07-24 16:21:08 +00:00
* @since 3.2.0
* @var array
*/
2017-07-23 11:05:11 +00:00
protected $totals = array(
'fees_total' => 0,
'fees_total_tax' => 0,
'items_subtotal' => 0,
'items_subtotal_tax' => 0,
'items_total' => 0,
'items_total_tax' => 0,
'total' => 0,
'taxes' => array(),
'tax_total' => 0,
'shipping_total' => 0,
'shipping_tax_total' => 0,
2017-07-24 16:21:08 +00:00
'discounts_total' => 0,
'discounts_tax_total' => 0,
2017-07-23 11:05:11 +00:00
);
/**
* Precision so we can work in cents.
*
2017-07-24 16:21:08 +00:00
* @since 3.2.0
* @var int
*/
protected $precision = 1;
/**
2017-07-23 11:05:11 +00:00
* Sets up the items provided, and calculate totals.
2017-07-24 16:21:08 +00:00
*
* @since 3.2.0
*/
2017-07-24 16:21:08 +00:00
public function __construct( &$cart = null ) {
$this->precision = pow( 10, wc_get_price_decimals() );
2017-07-24 16:21:08 +00:00
$this->object = $cart;
$this->set_items();
2017-07-23 11:05:11 +00:00
$this->calculate();
}
/**
2017-07-24 16:21:08 +00:00
* Handles a cart or order object passed in for calculation. Normalises data.
*
* @since 3.2.0
2017-07-23 11:05:11 +00:00
*/
2017-07-24 16:21:08 +00:00
protected function set_items() {
if ( is_a( $this->object, 'WC_Cart' ) ) {
foreach ( $this->object->get_cart() as $cart_item_key => $cart_item ) {
$item = $this->get_default_item_props();
$item->key = $cart_item_key;
$item->quantity = $cart_item['quantity'];
$item->price = $cart_item['data']->get_price() * $this->precision * $cart_item['quantity'];
$item->product = $cart_item['data'];
$this->items[ $cart_item_key ] = $item;
}
2017-07-23 11:05:11 +00:00
}
}
/**
* Remove precision from a price.
*
2017-07-24 16:21:08 +00:00
* @since 3.2.0
* @param int $value
* @return float
*/
protected function remove_precision( $value ) {
2017-07-24 16:21:08 +00:00
if ( is_array( $value ) ) {
foreach ( $value as $key => $subvalue ) {
$value[ $key ] = $this->remove_precision( $subvalue );
}
} else {
$value = wc_format_decimal( $value / $this->precision, wc_get_price_decimals() );
}
return $value;
}
/**
* Get default blank set of props used per item.
2017-07-24 16:21:08 +00:00
*
* @since 3.2.0
* @return array
*/
protected function get_default_item_props() {
return (object) array(
'price_includes_tax' => wc_prices_include_tax(),
'subtotal' => 0,
'subtotal_tax' => 0,
'subtotal_taxes' => array(),
'total' => 0,
'total_tax' => 0,
'taxes' => array(),
'discounted_price' => 0,
);
}
/**
2017-07-24 16:21:08 +00:00
* Only ran if woocommerce_adjust_non_base_location_prices is true.
*
* If the customer is outside of the base location, this removes the base
* taxes. This is off by default unless the filter is used.
*
* @since 3.2.0
*/
2017-07-24 16:21:08 +00:00
protected function adjust_non_base_location_price( $item ) {
$base_tax_rates = WC_Tax::get_base_tax_rates( $item->product->tax_class );
$item_tax_rates = $this->get_item_tax_rates( $item );
if ( $item_tax_rates !== $base_tax_rates ) {
// Work out a new base price without the shop's base tax
$taxes = WC_Tax::calc_tax( $item->price, $base_tax_rates, true, true );
// Now we have a new item price (excluding TAX)
$item->price = $item->price - array_sum( $taxes );
$item->price_includes_tax = false;
}
return $item;
}
/**
* Get discounted price of an item with precision (in cents).
*
* @since 3.2.0
* @param object $item
* @return int
*/
protected function get_discounted_price_in_cents( $item ) {
return $item->price - $this->totals['discounts'][ $item->key ];
}
/**
* Get tax rates for an item. Caches rates in class to avoid multiple look ups.
*
* @param object $item
* @return array of taxes
*/
protected function get_item_tax_rates( $item ) {
$tax_class = $item->product->get_tax_class();
return isset( $this->item_tax_rates[ $tax_class ] ) ? $this->item_tax_rates[ $tax_class ] : $this->item_tax_rates[ $tax_class ] = WC_Tax::get_rates( $item->product->get_tax_class() );
}
/**
2017-07-24 16:21:08 +00:00
* Return array of coupon objects from the cart or an order.
*
* @since 3.2.0
* @return array
*/
2017-07-24 16:21:08 +00:00
protected function get_coupons() {
if ( is_a( $this->object, 'WC_Cart' ) ) {
return $this->object->get_coupons();
}
}
/**
2017-07-24 16:21:08 +00:00
* Return array of shipping costs.
*
* @since 3.2.0
* @return array
*/
2017-07-24 16:21:08 +00:00
protected function get_shipping() {
// @todo get this somehow. Where does calc occur?
return array();
}
protected function get_discounts() {
// @todo fee style API for discounts in cart/checkout.
return array();
}
protected function get_fees() {
// @todo where should fee api be located? New class?
return array();
}
/**
2017-07-24 16:21:08 +00:00
* Get a single total with or without precision (in cents).
*
2017-07-24 16:21:08 +00:00
* @since 3.2.0
* @param string $key Total to get.
* @param bool $in_cents
* @return int|float
*/
2017-07-24 16:21:08 +00:00
public function get_total( $key = 'total', $in_cents = false ) {
$totals = $this->get_totals( $in_cents );
return isset( $totals[ $key ] ) ? $totals[ $key ] : 0;
}
/**
2017-07-24 16:21:08 +00:00
* Set a single total.
*
2017-07-24 16:21:08 +00:00
* @since 3.2.0
* @param string $key
* @param int $total
*/
2017-07-24 16:21:08 +00:00
protected function set_total( $key = 'total', $total ) {
$this->totals[ $key ] = $total;
}
2017-07-24 16:21:08 +00:00
/**
* Get all totals with or without precision (in cents).
*
* @since 3.2.0
* @param $in_cents bool
* @return array.
*/
public function get_totals( $in_cents = false ) {
return $in_cents ? $this->totals : array_map( array( $this, 'remove_precision' ), $this->totals );
}
2017-07-24 16:21:08 +00:00
/**
* Get all tax rows from items (including shipping and product line items).
*
* @todo consider an item object instead of array here
*
* @since 3.2.0
* @return array
*/
protected function get_merged_taxes() {
$taxes = array();
foreach ( $this->items as $item ) {
foreach ( $item->taxes as $rate_id => $rate ) {
if ( ! isset( $taxes[ $rate_id ] ) ) {
$taxes[ $rate_id ] = array( 'tax_total' => 0, 'shipping_tax_total' => 0 );
}
$taxes[ $rate_id ]['tax_total'] = $taxes[ $rate_id ]['tax_total'] + $rate;
}
}
2017-07-24 16:21:08 +00:00
foreach ( $this->get_shipping() as $item ) {
foreach ( $item->taxes as $rate_id => $rate ) {
if ( ! isset( $taxes[ $rate_id ] ) ) {
$taxes[ $rate_id ] = array( 'tax_total' => 0, 'shipping_tax_total' => 0 );
}
$taxes[ $rate_id ]['shipping_tax_total'] = $taxes[ $rate_id ]['shipping_tax_total'] + $rate;
}
}
return $taxes;
}
/*
|--------------------------------------------------------------------------
| Calculation methods.
|--------------------------------------------------------------------------
*/
/**
* Run all calculations methods on the given items.
2017-07-23 11:05:11 +00:00
*
2017-07-24 16:21:08 +00:00
* @since 3.2.0
*/
2017-07-23 11:05:11 +00:00
protected function calculate() {
$this->calculate_item_subtotals();
2017-07-24 16:21:08 +00:00
$this->calculate_discounts();
$this->calculate_item_totals();
$this->calculate_fee_totals();
$this->calculate_shipping_totals();
$this->calculate_totals();
}
/**
* Subtotals are costs before discounts.
*
* To prevent rounding issues we need to work with the inclusive price where possible.
* otherwise we'll see errors such as when working with a 9.99 inc price, 20% VAT which would.
* be 8.325 leading to totals being 1p off.
*
* Pre tax coupons come off the price the customer thinks they are paying - tax is calculated.
* afterwards.
*
* e.g. $100 bike with $10 coupon = customer pays $90 and tax worked backwards from that.
2017-07-24 16:21:08 +00:00
*
* @since 3.2.0
*/
protected function calculate_item_subtotals() {
foreach ( $this->items as $item ) {
if ( $item->price_includes_tax && apply_filters( 'woocommerce_adjust_non_base_location_prices', true ) ) {
$item = $this->adjust_non_base_location_price( $item );
}
2017-07-24 16:21:08 +00:00
$item->subtotal = $item->price;
$item->subtotal_tax = 0;
if ( wc_tax_enabled() && $item->product->is_taxable() ) {
$item->subtotal_taxes = WC_Tax::calc_tax( $item->subtotal, $this->get_item_tax_rates( $item ), $item->price_includes_tax );
$item->subtotal_tax = array_sum( $item->subtotal_taxes );
if ( $item->price_includes_tax ) {
$item->subtotal = $item->subtotal - $item->subtotal_tax;
}
}
}
2017-07-24 16:21:08 +00:00
$this->set_total( 'items_subtotal', array_sum( array_values( wp_list_pluck( $this->items, 'subtotal' ) ) ) );
$this->set_total( 'items_subtotal_tax', array_sum( array_values( wp_list_pluck( $this->items, 'subtotal_tax' ) ) ) );
}
/**
2017-07-24 16:21:08 +00:00
* Calculate all discount and coupon amounts.
*
* @since 3.2.0
* @uses WC_Discounts class.
*/
2017-07-24 16:21:08 +00:00
protected function calculate_discounts() {
$discounts = new WC_Discounts( $this->items );
2017-07-24 16:21:08 +00:00
foreach ( $this->get_coupons() as $coupon ) {
$discounts->apply_coupon( $coupon );
}
2017-07-24 16:21:08 +00:00
foreach ( $this->get_discounts() as $discount ) {
//$discounts->apply_discount( $coupon ); @todo
}
2017-07-24 16:21:08 +00:00
$this->totals['discounts'] = $discounts->get_discounts();
$this->totals['discounts_total'] = array_sum( $this->totals['discounts'] );
// $this->totals['discounts_tax_total'] = $value;
2017-07-24 16:21:08 +00:00
/*$this->set_coupon_totals( wp_list_pluck( $this->coupons, 'total' ) );
//$this->set_coupon_tax_totals( wp_list_pluck( $this->coupons, 'total_tax' ) );
//$this->set_coupon_counts( wp_list_pluck( $this->coupons, 'count' ) );*/
}
2017-07-24 16:21:08 +00:00
/**
* Totals are costs after discounts.
*
* @since 3.2.0
*/
protected function calculate_item_totals() {
foreach ( $this->items as $item ) {
$item->total = $this->get_discounted_price_in_cents( $item );
$item->total_tax = 0;
2017-07-24 16:21:08 +00:00
if ( wc_tax_enabled() && $item->product->is_taxable() ) {
$item->taxes = WC_Tax::calc_tax( $item->total, $this->get_item_tax_rates( $item ), $item->price_includes_tax );
$item->total_tax = array_sum( $item->taxes );
if ( $item->price_includes_tax ) {
$item->total = $item->total - $item->total_tax;
} else {
$item->total = $item->total;
}
}
}
2017-07-24 16:21:08 +00:00
$this->set_total( 'items_total', array_sum( array_values( wp_list_pluck( $this->items, 'total' ) ) ) );
$this->set_total( 'items_total_tax', array_sum( array_values( wp_list_pluck( $this->items, 'total_tax' ) ) ) );
}
/**
* Calculate any fees taxes.
2017-07-24 16:21:08 +00:00
*
* @since 3.2.0
*/
protected function calculate_fee_totals() {
2017-07-24 16:21:08 +00:00
foreach ( $this->get_fees() as $fee_key => $fee ) {
if ( wc_tax_enabled() && $fee->taxable ) {
$fee->taxes = WC_Tax::calc_tax( $fee->total, $tax_rates, false );
$fee->total_tax = array_sum( $fee->taxes );
}
}
}
/**
* Calculate any shipping taxes.
2017-07-24 16:21:08 +00:00
*
* @since 3.2.0
*/
protected function calculate_shipping_totals() {
2017-07-24 16:21:08 +00:00
//$this->set_shipping_total( array_sum( array_values( wp_list_pluck( $this->shipping, 'total' ) ) ) );
}
/**
* Main cart totals.
*
* @since 3.2.0
*/
2017-07-24 16:21:08 +00:00
protected function calculate_totals() {
$this->set_total( 'taxes', $this->get_merged_taxes() );
$this->set_total( 'tax_total', array_sum( wp_list_pluck( $this->get_total( 'taxes', true ), 'tax_total' ) ) );
$this->set_total( 'shipping_tax_total', array_sum( wp_list_pluck( $this->get_total( 'taxes', true ), 'shipping_tax_total' ) ) );
2017-07-24 16:21:08 +00:00
//$this->set_fees_total( array_sum( array_values( wp_list_pluck( $this->fees, 'total' ) ) ) );
//$this->set_fees_total_tax( array_sum( array_values( wp_list_pluck( $this->fees, 'total_tax' ) ) ) );
2017-07-24 16:21:08 +00:00
$this->set_total( 'total', round( $this->get_total( 'items_total', true ) + $this->get_total( 'fees_total', true ) + $this->get_total( 'shipping_total', true ) + $this->get_total( 'tax_total', true ) + $this->get_total( 'shipping_tax_total', true ) ) );
2017-07-24 16:21:08 +00:00
// @todo woocommerce_tax_round_at_subtotal option - how should we handle this with precision?
// @todo woocommerce_calculate_totals action for carts.
// @todo woocommerce_calculated_total filter for carts.
}
}