2011-08-09 15:16:18 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2011-12-28 23:59:33 +00:00
|
|
|
* Performs tax calculations and loads tax rates.
|
2011-08-09 15:16:18 +00:00
|
|
|
*
|
2012-01-27 16:38:39 +00:00
|
|
|
* @class WC_Tax
|
2012-12-03 19:19:58 +00:00
|
|
|
* @version 2.0.0
|
2012-08-14 22:43:48 +00:00
|
|
|
* @package WooCommerce/Classes
|
2013-02-20 17:14:46 +00:00
|
|
|
* @category Class
|
2012-08-14 20:19:41 +00:00
|
|
|
* @author WooThemes
|
2011-08-09 15:16:18 +00:00
|
|
|
*/
|
2012-01-27 16:38:39 +00:00
|
|
|
class WC_Tax {
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2012-12-03 12:18:34 +00:00
|
|
|
/** @var array */
|
2012-12-14 22:03:00 +00:00
|
|
|
public $matched_rates;
|
2012-11-27 16:22:47 +00:00
|
|
|
|
2013-10-24 12:15:42 +00:00
|
|
|
|
|
|
|
var $log = array();
|
|
|
|
|
2012-12-13 01:23:35 +00:00
|
|
|
/**
|
|
|
|
* __construct function.
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2012-12-14 22:03:00 +00:00
|
|
|
public function __construct() {
|
2013-10-24 18:36:22 +00:00
|
|
|
$this->precision = WC_ROUNDING_PRECISION;
|
2013-06-13 16:01:36 +00:00
|
|
|
$this->dp = (int) get_option( 'woocommerce_price_num_decimals' );
|
|
|
|
$this->round_at_subtotal = get_option('woocommerce_tax_round_at_subtotal') == 'yes';
|
2012-12-13 01:23:35 +00:00
|
|
|
}
|
|
|
|
|
2013-10-24 12:15:42 +00:00
|
|
|
/**
|
2013-10-24 15:16:39 +00:00
|
|
|
* Calculate tax for a line
|
|
|
|
* @param float $price Price to calc tax on
|
|
|
|
* @param array $rates Rates to apply
|
|
|
|
* @param boolean $price_includes_tax Whether the passed price has taxes included
|
|
|
|
* @param boolean $suppress_rounding Whether to supress any rounding from taking place
|
|
|
|
* @return array Array of rates + prices after tax
|
2013-10-24 12:15:42 +00:00
|
|
|
*/
|
2013-10-24 15:16:39 +00:00
|
|
|
public function calc_tax( $price, $rates, $price_includes_tax = false, $suppress_rounding = false ) {
|
2013-10-24 12:15:42 +00:00
|
|
|
// Work in pence to X precision
|
|
|
|
$price = $this->precision( $price );
|
|
|
|
|
|
|
|
if ( $price_includes_tax )
|
2013-10-24 15:16:39 +00:00
|
|
|
$taxes = $this->calc_inclusive_tax( $price, $rates );
|
2013-10-24 12:15:42 +00:00
|
|
|
else
|
2013-10-24 15:16:39 +00:00
|
|
|
$taxes = $this->calc_exclusive_tax( $price, $rates );
|
2013-10-24 12:15:42 +00:00
|
|
|
|
2013-10-24 13:53:01 +00:00
|
|
|
// Round to precision
|
2013-10-24 12:15:42 +00:00
|
|
|
if ( ! $this->round_at_subtotal && ! $suppress_rounding ) {
|
|
|
|
$taxes = array_map( 'round', $taxes ); // Round to precision
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remove precision
|
|
|
|
$price = $this->remove_precision( $price );
|
|
|
|
$taxes = array_map( array( $this, 'remove_precision' ), $taxes );
|
|
|
|
|
2013-10-24 15:16:39 +00:00
|
|
|
return apply_filters( 'woocommerce_calc_tax', $taxes, $price, $rates, $price_includes_tax, $suppress_rounding );
|
|
|
|
}
|
2013-10-24 12:15:42 +00:00
|
|
|
|
2013-10-24 15:16:39 +00:00
|
|
|
/**
|
|
|
|
* Calculate the shipping tax using a passed array of rates.
|
|
|
|
*
|
|
|
|
* @param float Price
|
|
|
|
* @param array Taxation Rate
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function calc_shipping_tax( $price, $rates ) {
|
|
|
|
return $this->calc_exclusive_tax( $price, $rates );
|
2013-10-24 12:15:42 +00:00
|
|
|
}
|
|
|
|
|
2013-10-24 15:16:39 +00:00
|
|
|
/**
|
|
|
|
* Multiply cost by pow precision
|
|
|
|
* @param float $price
|
|
|
|
* @return float
|
|
|
|
*/
|
2013-10-24 12:15:42 +00:00
|
|
|
private function precision( $price ) {
|
|
|
|
return $price * ( pow( 10, $this->precision ) );
|
|
|
|
}
|
|
|
|
|
2013-10-24 15:16:39 +00:00
|
|
|
/**
|
|
|
|
* Divide cost by pow precision
|
|
|
|
* @param float $price
|
|
|
|
* @return float
|
|
|
|
*/
|
2013-10-24 12:15:42 +00:00
|
|
|
private function remove_precision( $price ) {
|
|
|
|
return $price / ( pow( 10, $this->precision ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Round to precision.
|
|
|
|
*
|
|
|
|
* Filter example: to return rounding to .5 cents you'd use:
|
|
|
|
*
|
|
|
|
* public function euro_5cent_rounding( $in ) {
|
|
|
|
* return round( $in / 5, 2 ) * 5;
|
|
|
|
* }
|
|
|
|
* add_filter( 'woocommerce_tax_round', 'euro_5cent_rounding' );
|
|
|
|
*/
|
|
|
|
public function round( $in ) {
|
2013-10-24 13:53:01 +00:00
|
|
|
return apply_filters( 'woocommerce_tax_round', round( $in, $this->precision ), $in );
|
2013-10-24 12:15:42 +00:00
|
|
|
}
|
|
|
|
|
2013-10-24 15:16:39 +00:00
|
|
|
/**
|
|
|
|
* Calc tax from inclusive price
|
|
|
|
*
|
|
|
|
* @param float $price
|
|
|
|
* @param array $rates
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
private function calc_inclusive_tax( $price, $rates ) {
|
2013-10-24 12:15:42 +00:00
|
|
|
$taxes = array();
|
|
|
|
|
|
|
|
$regular_tax_rates = $compound_tax_rates = 0;
|
|
|
|
|
|
|
|
foreach ( $rates as $key => $rate )
|
|
|
|
if ( $rate['compound'] == 'yes' )
|
|
|
|
$compound_tax_rates = $compound_tax_rates + $rate['rate'];
|
|
|
|
else
|
|
|
|
$regular_tax_rates = $regular_tax_rates + $rate['rate'];
|
|
|
|
|
|
|
|
$regular_tax_rate = 1 + ( $regular_tax_rates / 100 );
|
|
|
|
$compound_tax_rate = 1 + ( $compound_tax_rates / 100 );
|
|
|
|
$non_compound_price = $price / $compound_tax_rate;
|
|
|
|
|
|
|
|
foreach ( $rates as $key => $rate ) {
|
|
|
|
if ( ! isset( $taxes[ $key ] ) )
|
|
|
|
$taxes[ $key ] = 0;
|
|
|
|
|
|
|
|
$the_rate = $rate['rate'] / 100;
|
|
|
|
|
|
|
|
if ( $rate['compound'] == 'yes' ) {
|
|
|
|
$the_price = $price;
|
|
|
|
$the_rate = $the_rate / $compound_tax_rate;
|
|
|
|
} else {
|
|
|
|
$the_price = $non_compound_price;
|
|
|
|
$the_rate = $the_rate / $regular_tax_rate;
|
|
|
|
}
|
|
|
|
|
|
|
|
$net_price = $price - ( $the_rate * $the_price );
|
|
|
|
$tax_amount = $price - $net_price;
|
|
|
|
$taxes[ $key ] += apply_filters( 'woocommerce_price_inc_tax_amount', $tax_amount, $key, $rate, $price );
|
|
|
|
}
|
|
|
|
|
|
|
|
return $taxes;
|
|
|
|
}
|
|
|
|
|
2013-10-24 15:16:39 +00:00
|
|
|
/**
|
|
|
|
* Calc tax from exclusive price
|
|
|
|
*
|
|
|
|
* @param float $price
|
|
|
|
* @param array $rates
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
private function calc_exclusive_tax( $price, $rates ) {
|
2013-10-24 12:15:42 +00:00
|
|
|
$taxes = array();
|
|
|
|
|
|
|
|
// Multiple taxes
|
|
|
|
foreach ( $rates as $key => $rate ) {
|
|
|
|
|
|
|
|
if ( $rate['compound'] == 'yes' )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
$tax_amount = $price * ( $rate['rate'] / 100 );
|
|
|
|
|
|
|
|
// ADVANCED: Allow third parties to modify this rate
|
|
|
|
$tax_amount = apply_filters( 'woocommerce_price_ex_tax_amount', $tax_amount, $key, $rate, $price );
|
|
|
|
|
|
|
|
// Add rate
|
|
|
|
if ( ! isset( $taxes[ $key ] ) )
|
|
|
|
$taxes[ $key ] = $tax_amount;
|
|
|
|
else
|
|
|
|
$taxes[ $key ] += $tax_amount;
|
|
|
|
}
|
|
|
|
|
|
|
|
$pre_compound_total = array_sum( $taxes );
|
|
|
|
|
|
|
|
// Compound taxes
|
|
|
|
if ( $rates ) {
|
|
|
|
foreach ( $rates as $key => $rate ) {
|
|
|
|
|
|
|
|
if ( $rate['compound'] == 'no' )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
$the_price_inc_tax = $price + ( $pre_compound_total * 100 );
|
|
|
|
|
|
|
|
$tax_amount = $the_price_inc_tax * ( $rate['rate'] / 100 );
|
|
|
|
|
|
|
|
// ADVANCED: Allow third parties to modifiy this rate
|
|
|
|
$tax_amount = apply_filters( 'woocommerce_price_ex_tax_amount', $tax_amount, $key, $rate, $price, $the_price_inc_tax, $pre_compound_total );
|
|
|
|
|
|
|
|
// Add rate
|
|
|
|
if ( ! isset( $taxes[ $key ] ) )
|
|
|
|
$taxes[ $key ] = $tax_amount;
|
|
|
|
else
|
|
|
|
$taxes[ $key ] += $tax_amount;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $taxes;
|
|
|
|
}
|
|
|
|
|
2011-08-09 15:16:18 +00:00
|
|
|
/**
|
2012-08-14 20:19:41 +00:00
|
|
|
* Searches for all matching country/state/postcode tax rates.
|
2012-11-27 16:22:47 +00:00
|
|
|
*
|
2012-09-23 16:16:39 +00:00
|
|
|
* @access public
|
|
|
|
* @param string $args (default: '')
|
|
|
|
* @return array
|
2011-08-09 15:16:18 +00:00
|
|
|
*/
|
2013-02-12 07:00:10 +00:00
|
|
|
public function find_rates( $args = array(), $deprecated_state = null, $deprecated_postcode = null, $deprecated_class = null ) {
|
2012-12-03 12:18:34 +00:00
|
|
|
global $wpdb;
|
2012-11-27 16:22:47 +00:00
|
|
|
|
2013-02-12 07:00:10 +00:00
|
|
|
// Make sure the arguments match the WC 2.0 structure
|
|
|
|
if ( is_string( $args ) ) {
|
2013-02-12 11:49:26 +00:00
|
|
|
_deprecated_argument( __CLASS__ . '->' . __FUNCTION__, '2.0', 'Use $args["country"] instead. Deprecated argument will be removed in WC 2.1.' );
|
2013-02-12 07:00:10 +00:00
|
|
|
$args = array(
|
|
|
|
'country' => $args
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( func_num_args() > 1 ) {
|
|
|
|
if ( null !== $deprecated_state ) {
|
2013-02-12 11:49:26 +00:00
|
|
|
_deprecated_argument( __CLASS__ . '->' . __FUNCTION__, '2.0', 'Use $args["state"] instead. Deprecated argument will be removed in WC 2.1.' );
|
2013-02-12 07:00:10 +00:00
|
|
|
$args['state'] = $deprecated_state;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( null !== $deprecated_postcode ) {
|
2013-02-12 11:49:26 +00:00
|
|
|
_deprecated_argument( __CLASS__ . '->' . __FUNCTION__, '2.0', 'Use $args["postcode"] instead. Deprecated argument will be removed in WC 2.1.' );
|
2013-02-12 07:00:10 +00:00
|
|
|
$args['postcode'] = $deprecated_postcode;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( null !== $deprecated_class ) {
|
2013-02-12 11:49:26 +00:00
|
|
|
_deprecated_argument( __CLASS__ . '->' . __FUNCTION__, '2.0', 'Use $args["tax_class"] instead. Deprecated argument will be removed in WC 2.1.' );
|
2013-02-12 07:00:10 +00:00
|
|
|
$args['tax_class'] = $deprecated_class;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-23 16:16:39 +00:00
|
|
|
$defaults = array(
|
|
|
|
'country' => '',
|
|
|
|
'state' => '',
|
|
|
|
'city' => '',
|
|
|
|
'postcode' => '',
|
|
|
|
'tax_class' => ''
|
|
|
|
);
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2012-09-23 16:16:39 +00:00
|
|
|
$args = wp_parse_args( $args, $defaults );
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2012-09-23 16:16:39 +00:00
|
|
|
extract( $args, EXTR_SKIP );
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2012-11-27 16:22:47 +00:00
|
|
|
if ( ! $country )
|
2012-09-23 16:16:39 +00:00
|
|
|
return array();
|
2011-08-09 15:16:18 +00:00
|
|
|
|
2012-12-03 12:18:34 +00:00
|
|
|
// Handle postcodes
|
|
|
|
$valid_postcodes = array( '*', strtoupper( woocommerce_clean( $postcode ) ) );
|
2012-09-23 16:16:39 +00:00
|
|
|
|
2012-12-03 12:18:34 +00:00
|
|
|
// Work out possible valid wildcard postcodes
|
|
|
|
$postcode_length = strlen( $postcode );
|
|
|
|
$wildcard_postcode = strtoupper( woocommerce_clean( $postcode ) );
|
2012-11-27 16:22:47 +00:00
|
|
|
|
2012-12-03 12:18:34 +00:00
|
|
|
for ( $i = 0; $i < $postcode_length; $i ++ ) {
|
2012-11-27 16:22:47 +00:00
|
|
|
|
2012-12-03 12:18:34 +00:00
|
|
|
$wildcard_postcode = substr( $wildcard_postcode, 0, -1 );
|
2012-11-27 16:22:47 +00:00
|
|
|
|
2012-12-03 12:18:34 +00:00
|
|
|
$valid_postcodes[] = $wildcard_postcode . '*';
|
2012-09-23 16:16:39 +00:00
|
|
|
}
|
2011-12-28 23:59:33 +00:00
|
|
|
|
2012-12-03 12:18:34 +00:00
|
|
|
// Run the query
|
|
|
|
$found_rates = $wpdb->get_results( $wpdb->prepare( "
|
2013-03-27 14:32:36 +00:00
|
|
|
SELECT * FROM (
|
|
|
|
SELECT tax_rates.* FROM
|
|
|
|
{$wpdb->prefix}woocommerce_tax_rates as tax_rates
|
|
|
|
LEFT OUTER JOIN
|
|
|
|
{$wpdb->prefix}woocommerce_tax_rate_locations as locations ON tax_rates.tax_rate_id = locations.tax_rate_id
|
|
|
|
LEFT OUTER JOIN
|
|
|
|
{$wpdb->prefix}woocommerce_tax_rate_locations as locations2 ON tax_rates.tax_rate_id = locations2.tax_rate_id
|
|
|
|
WHERE
|
|
|
|
tax_rate_country IN ( %s, '' )
|
|
|
|
AND tax_rate_state IN ( %s, '' )
|
|
|
|
AND tax_rate_class = %s
|
|
|
|
AND
|
2012-12-03 12:18:34 +00:00
|
|
|
(
|
2013-03-27 14:32:36 +00:00
|
|
|
(
|
|
|
|
locations.location_type IS NULL
|
|
|
|
)
|
|
|
|
OR
|
|
|
|
(
|
|
|
|
locations.location_type = 'postcode'
|
|
|
|
AND locations.location_code IN ('" . implode( "','", $valid_postcodes ) . "')
|
|
|
|
AND locations2.location_type = 'city'
|
|
|
|
AND locations2.location_code = %s
|
|
|
|
)
|
|
|
|
OR
|
|
|
|
(
|
|
|
|
locations.location_type = 'postcode'
|
|
|
|
AND locations.location_code IN ('" . implode( "','", $valid_postcodes ) . "')
|
|
|
|
AND 0 = (
|
|
|
|
SELECT COUNT(*) FROM {$wpdb->prefix}woocommerce_tax_rate_locations as sublocations
|
|
|
|
WHERE sublocations.location_type = 'city'
|
|
|
|
AND sublocations.tax_rate_id = tax_rates.tax_rate_id
|
|
|
|
)
|
|
|
|
)
|
|
|
|
OR
|
|
|
|
(
|
|
|
|
locations.location_type = 'city'
|
|
|
|
AND locations.location_code = %s
|
|
|
|
AND 0 = (
|
|
|
|
SELECT COUNT(*) FROM {$wpdb->prefix}woocommerce_tax_rate_locations as sublocations
|
|
|
|
WHERE sublocations.location_type = 'postcode'
|
|
|
|
AND sublocations.tax_rate_id = tax_rates.tax_rate_id
|
|
|
|
)
|
|
|
|
)
|
2012-12-03 12:18:34 +00:00
|
|
|
)
|
2013-03-27 14:32:36 +00:00
|
|
|
GROUP BY
|
|
|
|
tax_rate_id
|
|
|
|
ORDER BY
|
|
|
|
tax_rate_priority, tax_rate_order
|
|
|
|
) as ordered_taxes
|
2012-12-03 12:18:34 +00:00
|
|
|
GROUP BY
|
|
|
|
tax_rate_priority
|
|
|
|
",
|
|
|
|
strtoupper( $country ),
|
|
|
|
strtoupper( $state ),
|
|
|
|
sanitize_title( $tax_class ),
|
2013-03-27 14:32:36 +00:00
|
|
|
strtoupper( $city ),
|
2012-12-03 12:18:34 +00:00
|
|
|
strtoupper( $city )
|
|
|
|
) );
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2012-12-03 12:18:34 +00:00
|
|
|
// Put results into array
|
2012-12-05 02:08:37 +00:00
|
|
|
$matched_tax_rates = array();
|
2013-03-27 14:32:36 +00:00
|
|
|
|
2012-12-03 12:18:34 +00:00
|
|
|
foreach ( $found_rates as $found_rate )
|
|
|
|
$matched_tax_rates[ $found_rate->tax_rate_id ] = array(
|
|
|
|
'rate' => $found_rate->tax_rate,
|
|
|
|
'label' => $found_rate->tax_rate_name,
|
|
|
|
'shipping' => $found_rate->tax_rate_shipping ? 'yes' : 'no',
|
|
|
|
'compound' => $found_rate->tax_rate_compound ? 'yes' : 'no'
|
|
|
|
);
|
|
|
|
|
|
|
|
return apply_filters( 'woocommerce_matched_tax_rates', $matched_tax_rates, $country, $state, $postcode, $city, $tax_class );
|
2011-08-09 15:16:18 +00:00
|
|
|
}
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2011-08-09 15:16:18 +00:00
|
|
|
/**
|
2012-08-14 20:19:41 +00:00
|
|
|
* Get's an array of matching rates for a tax class.
|
2011-08-09 15:16:18 +00:00
|
|
|
*
|
|
|
|
* @param object Tax Class
|
2011-12-28 23:59:33 +00:00
|
|
|
* @return array
|
2011-08-09 15:16:18 +00:00
|
|
|
*/
|
2012-12-14 22:03:00 +00:00
|
|
|
public function get_rates( $tax_class = '' ) {
|
2011-09-06 11:11:22 +00:00
|
|
|
global $woocommerce;
|
2012-11-27 16:22:47 +00:00
|
|
|
|
2012-05-09 17:29:22 +00:00
|
|
|
$tax_class = sanitize_title( $tax_class );
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2012-05-09 17:29:22 +00:00
|
|
|
/* Checkout uses customer location for the tax rates. Also, if shipping has been calculated, use the customers address. */
|
2013-09-19 15:31:54 +00:00
|
|
|
if ( ( defined('WOOCOMMERCE_CHECKOUT') && WOOCOMMERCE_CHECKOUT ) || ( ! empty( $woocommerce->customer ) && $woocommerce->customer->has_calculated_shipping() ) ) {
|
2012-11-27 16:22:47 +00:00
|
|
|
|
2012-10-01 09:45:07 +00:00
|
|
|
list( $country, $state, $postcode, $city ) = $woocommerce->customer->get_taxable_address();
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2012-09-23 16:16:39 +00:00
|
|
|
$matched_tax_rates = $this->find_rates( array(
|
2012-11-27 16:22:47 +00:00
|
|
|
'country' => $country,
|
|
|
|
'state' => $state,
|
|
|
|
'postcode' => $postcode,
|
2012-09-23 16:16:39 +00:00
|
|
|
'city' => $city,
|
|
|
|
'tax_class' => $tax_class
|
|
|
|
) );
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2012-05-09 17:29:22 +00:00
|
|
|
} else {
|
2012-11-26 22:01:15 +00:00
|
|
|
|
2012-10-12 11:48:06 +00:00
|
|
|
// Prices which include tax should always use the base rate if we don't know where the user is located
|
2012-12-13 16:38:40 +00:00
|
|
|
// Prices excluding tax however should just not add any taxes, as they will be added during checkout.
|
|
|
|
// The woocommerce_default_customer_address option (when set to base) is also used here.
|
2013-09-19 15:31:54 +00:00
|
|
|
$matched_tax_rates = get_option( 'woocommerce_prices_include_tax' ) == 'yes' || get_option( 'woocommerce_default_customer_address' ) == 'base'
|
2012-11-26 22:01:15 +00:00
|
|
|
? $this->get_shop_base_rate( $tax_class )
|
|
|
|
: array();
|
|
|
|
|
2012-05-09 17:29:22 +00:00
|
|
|
}
|
2011-08-09 15:16:18 +00:00
|
|
|
|
2012-11-26 22:01:15 +00:00
|
|
|
return apply_filters('woocommerce_matched_rates', $matched_tax_rates, $tax_class);
|
2011-08-09 15:16:18 +00:00
|
|
|
}
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2011-08-09 15:16:18 +00:00
|
|
|
/**
|
2012-08-14 20:19:41 +00:00
|
|
|
* Get's an array of matching rates for the shop's base country.
|
2011-08-09 15:16:18 +00:00
|
|
|
*
|
2011-12-28 23:59:33 +00:00
|
|
|
* @param string Tax Class
|
|
|
|
* @return array
|
2011-08-09 15:16:18 +00:00
|
|
|
*/
|
2012-12-14 22:03:00 +00:00
|
|
|
public function get_shop_base_rate( $tax_class = '' ) {
|
2012-09-23 16:16:39 +00:00
|
|
|
return $this->find_rates( array(
|
2013-09-24 15:56:55 +00:00
|
|
|
'country' => WC()->countries->get_base_country(),
|
|
|
|
'state' => WC()->countries->get_base_state(),
|
|
|
|
'postcode' => WC()->countries->get_base_postcode(),
|
|
|
|
'city' => WC()->countries->get_base_city(),
|
2012-11-27 16:22:47 +00:00
|
|
|
'tax_class' => $tax_class
|
2012-09-23 16:16:39 +00:00
|
|
|
) );
|
2012-02-01 21:49:08 +00:00
|
|
|
}
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2011-08-09 15:16:18 +00:00
|
|
|
/**
|
2012-08-14 20:19:41 +00:00
|
|
|
* Gets an array of matching shipping tax rates for a given class.
|
2011-08-09 15:16:18 +00:00
|
|
|
*
|
2011-12-28 23:59:33 +00:00
|
|
|
* @param string Tax Class
|
2012-08-08 10:42:42 +00:00
|
|
|
* @return mixed
|
2011-08-09 15:16:18 +00:00
|
|
|
*/
|
2012-12-14 22:03:00 +00:00
|
|
|
public function get_shipping_tax_rates( $tax_class = null ) {
|
2011-12-30 19:36:44 +00:00
|
|
|
global $woocommerce;
|
2012-11-27 16:22:47 +00:00
|
|
|
|
2012-11-15 14:01:16 +00:00
|
|
|
// See if we have an explicitly set shipping tax class
|
|
|
|
if ( $shipping_tax_class = get_option( 'woocommerce_shipping_tax_class' ) ) {
|
|
|
|
$tax_class = $shipping_tax_class == 'standard' ? '' : $shipping_tax_class;
|
|
|
|
}
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2013-09-19 15:31:54 +00:00
|
|
|
if ( ( defined('WOOCOMMERCE_CHECKOUT') && WOOCOMMERCE_CHECKOUT ) || ( ! empty( $woocommerce->customer ) && $woocommerce->customer->has_calculated_shipping() ) ) {
|
2012-11-27 16:22:47 +00:00
|
|
|
|
2012-10-01 09:45:07 +00:00
|
|
|
list( $country, $state, $postcode, $city ) = $woocommerce->customer->get_taxable_address();
|
2012-09-12 10:16:53 +00:00
|
|
|
|
2012-05-09 17:29:22 +00:00
|
|
|
} else {
|
2012-11-27 16:22:47 +00:00
|
|
|
|
2012-10-12 11:48:06 +00:00
|
|
|
// Prices which include tax should always use the base rate if we don't know where the user is located
|
2013-03-03 17:07:31 +00:00
|
|
|
// Prices excluding tax however should just not add any taxes, as they will be added during checkout
|
2013-09-19 15:31:54 +00:00
|
|
|
if ( get_option( 'woocommerce_prices_include_tax' ) == 'yes' || get_option( 'woocommerce_default_customer_address' ) == 'base' ) {
|
2012-10-12 11:48:06 +00:00
|
|
|
$country = $woocommerce->countries->get_base_country();
|
|
|
|
$state = $woocommerce->countries->get_base_state();
|
|
|
|
$postcode = '';
|
|
|
|
$city = '';
|
|
|
|
} else {
|
|
|
|
return array();
|
|
|
|
}
|
|
|
|
|
2012-05-09 17:29:22 +00:00
|
|
|
}
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2011-08-09 15:16:18 +00:00
|
|
|
// If we are here then shipping is taxable - work it out
|
2012-09-23 16:16:39 +00:00
|
|
|
if ( ! is_null( $tax_class ) ) {
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2011-12-30 19:36:44 +00:00
|
|
|
$matched_tax_rates = array();
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2011-08-09 15:16:18 +00:00
|
|
|
// This will be per item shipping
|
2012-09-23 16:16:39 +00:00
|
|
|
$rates = $this->find_rates( array(
|
2012-11-27 16:22:47 +00:00
|
|
|
'country' => $country,
|
|
|
|
'state' => $state,
|
|
|
|
'postcode' => $postcode,
|
2012-09-23 16:16:39 +00:00
|
|
|
'city' => $city,
|
2012-11-27 16:22:47 +00:00
|
|
|
'tax_class' => $tax_class
|
2012-09-23 16:16:39 +00:00
|
|
|
) );
|
|
|
|
|
2012-11-27 16:22:47 +00:00
|
|
|
if ( $rates )
|
2012-09-23 16:16:39 +00:00
|
|
|
foreach ( $rates as $key => $rate )
|
|
|
|
if ( isset( $rate['shipping'] ) && $rate['shipping'] == 'yes' )
|
|
|
|
$matched_tax_rates[ $key ] = $rate;
|
|
|
|
|
|
|
|
if ( sizeof( $matched_tax_rates ) == 0 ) {
|
2011-08-09 15:16:18 +00:00
|
|
|
// Get standard rate
|
2012-09-23 16:16:39 +00:00
|
|
|
$rates = $this->find_rates( array(
|
2012-11-27 16:22:47 +00:00
|
|
|
'country' => $country,
|
|
|
|
'state' => $state,
|
2012-09-23 16:16:39 +00:00
|
|
|
'city' => $city,
|
2012-11-27 16:22:47 +00:00
|
|
|
'postcode' => $postcode,
|
2012-09-23 16:16:39 +00:00
|
|
|
) );
|
|
|
|
|
2012-11-27 16:22:47 +00:00
|
|
|
if ( $rates )
|
2012-09-23 16:16:39 +00:00
|
|
|
foreach ( $rates as $key => $rate )
|
|
|
|
if ( isset( $rate['shipping'] ) && $rate['shipping'] == 'yes' )
|
|
|
|
$matched_tax_rates[ $key ] = $rate;
|
|
|
|
}
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2011-12-30 19:36:44 +00:00
|
|
|
return $matched_tax_rates;
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2012-09-23 16:16:39 +00:00
|
|
|
} else {
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2011-08-09 15:16:18 +00:00
|
|
|
// This will be per order shipping - loop through the order and find the highest tax class rate
|
2012-01-04 16:24:26 +00:00
|
|
|
$found_tax_classes = array();
|
|
|
|
$matched_tax_rates = array();
|
|
|
|
$rates = false;
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2011-08-09 15:16:18 +00:00
|
|
|
// Loop cart and find the highest tax band
|
2012-11-27 16:22:47 +00:00
|
|
|
if ( sizeof( $woocommerce->cart->get_cart() ) > 0 )
|
2012-09-23 16:16:39 +00:00
|
|
|
foreach ( $woocommerce->cart->get_cart() as $item )
|
|
|
|
$found_tax_classes[] = $item['data']->get_tax_class();
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2012-01-04 16:24:26 +00:00
|
|
|
$found_tax_classes = array_unique( $found_tax_classes );
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2012-01-04 16:24:26 +00:00
|
|
|
// If multiple classes are found, use highest
|
2012-09-23 16:16:39 +00:00
|
|
|
if ( sizeof( $found_tax_classes ) > 1 ) {
|
|
|
|
|
|
|
|
if ( in_array( '', $found_tax_classes ) ) {
|
|
|
|
$rates = $this->find_rates( array(
|
2012-11-27 16:22:47 +00:00
|
|
|
'country' => $country,
|
|
|
|
'state' => $state,
|
2012-09-23 16:16:39 +00:00
|
|
|
'city' => $city,
|
2012-11-27 16:22:47 +00:00
|
|
|
'postcode' => $postcode,
|
2012-09-23 16:16:39 +00:00
|
|
|
) );
|
|
|
|
} else {
|
|
|
|
$tax_classes = array_filter( array_map( 'trim', explode( "\n", get_option( 'woocommerce_tax_classes' ) ) ) );
|
|
|
|
|
|
|
|
foreach ( $tax_classes as $tax_class ) {
|
|
|
|
if ( in_array( $tax_class, $found_tax_classes ) ) {
|
|
|
|
$rates = $this->find_rates( array(
|
2012-11-27 16:22:47 +00:00
|
|
|
'country' => $country,
|
|
|
|
'state' => $state,
|
|
|
|
'postcode' => $postcode,
|
2012-09-23 16:16:39 +00:00
|
|
|
'city' => $city,
|
2012-11-27 16:22:47 +00:00
|
|
|
'tax_class' => $tax_class
|
2012-09-23 16:16:39 +00:00
|
|
|
) );
|
2012-01-04 16:24:26 +00:00
|
|
|
break;
|
2012-09-23 16:16:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-01-04 16:24:26 +00:00
|
|
|
|
|
|
|
// If a single tax class is found, use it
|
2012-09-23 16:16:39 +00:00
|
|
|
} elseif ( sizeof( $found_tax_classes ) == 1 ) {
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2012-09-23 16:16:39 +00:00
|
|
|
$rates = $this->find_rates( array(
|
2012-11-27 16:22:47 +00:00
|
|
|
'country' => $country,
|
|
|
|
'state' => $state,
|
|
|
|
'postcode' => $postcode,
|
2012-09-23 16:16:39 +00:00
|
|
|
'city' => $city,
|
2012-11-27 16:22:47 +00:00
|
|
|
'tax_class' => $found_tax_classes[0]
|
2012-09-23 16:16:39 +00:00
|
|
|
) );
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2012-09-23 16:16:39 +00:00
|
|
|
}
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2012-09-23 16:16:39 +00:00
|
|
|
// If no class rate are found, use standard rates
|
|
|
|
if ( ! $rates )
|
|
|
|
$rates = $this->find_rates( array(
|
2012-11-27 16:22:47 +00:00
|
|
|
'country' => $country,
|
|
|
|
'state' => $state,
|
|
|
|
'postcode' => $postcode,
|
2012-09-23 16:16:39 +00:00
|
|
|
'city' => $city,
|
|
|
|
) );
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2012-11-27 16:22:47 +00:00
|
|
|
if ( $rates )
|
2012-09-23 16:16:39 +00:00
|
|
|
foreach ( $rates as $key => $rate )
|
|
|
|
if ( isset( $rate['shipping'] ) && $rate['shipping'] == 'yes' )
|
|
|
|
$matched_tax_rates[ $key ] = $rate;
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2012-01-04 16:24:26 +00:00
|
|
|
return $matched_tax_rates;
|
2012-09-23 16:16:39 +00:00
|
|
|
}
|
2011-08-09 15:16:18 +00:00
|
|
|
|
2011-12-30 19:36:44 +00:00
|
|
|
return array(); // return false
|
2011-08-09 15:16:18 +00:00
|
|
|
}
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2011-12-30 19:36:44 +00:00
|
|
|
/**
|
2012-08-14 20:19:41 +00:00
|
|
|
* Return true/false depending on if a rate is a compound rate.
|
2011-12-30 21:11:18 +00:00
|
|
|
*
|
|
|
|
* @param int key
|
2012-08-08 10:42:42 +00:00
|
|
|
* @return bool
|
2011-12-30 19:36:44 +00:00
|
|
|
*/
|
2012-12-14 22:03:00 +00:00
|
|
|
public function is_compound( $key ) {
|
2012-12-03 12:18:34 +00:00
|
|
|
global $wpdb;
|
|
|
|
return $wpdb->get_var( $wpdb->prepare( "SELECT tax_rate_compound FROM {$wpdb->prefix}woocommerce_tax_rates WHERE tax_rate_id = %s", $key ) ) ? true : false;
|
2011-12-30 19:36:44 +00:00
|
|
|
}
|
2011-12-30 21:11:18 +00:00
|
|
|
|
2011-12-30 19:36:44 +00:00
|
|
|
/**
|
2012-08-14 20:19:41 +00:00
|
|
|
* Return a given rates label.
|
2011-12-30 21:11:18 +00:00
|
|
|
*
|
|
|
|
* @param int key
|
2012-08-08 10:42:42 +00:00
|
|
|
* @return string
|
2011-12-30 19:36:44 +00:00
|
|
|
*/
|
2012-12-14 22:03:00 +00:00
|
|
|
public function get_rate_label( $key ) {
|
2013-09-10 10:04:26 +00:00
|
|
|
global $wpdb, $woocommerce;
|
|
|
|
|
|
|
|
$rate_name = $wpdb->get_var( $wpdb->prepare( "SELECT tax_rate_name FROM {$wpdb->prefix}woocommerce_tax_rates WHERE tax_rate_id = %s", $key ) );
|
|
|
|
|
|
|
|
if ( ! $rate_name )
|
|
|
|
$rate_name = $woocommerce->countries->tax_or_vat();
|
|
|
|
|
|
|
|
return apply_filters( 'woocommerce_rate_label', $rate_name, $key, $this );
|
2011-12-30 19:36:44 +00:00
|
|
|
}
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2012-12-06 19:49:00 +00:00
|
|
|
/**
|
|
|
|
* Get a rates code. Code is made up of COUNTRY-STATE-NAME-Priority. E.g GB-VAT-1, US-AL-TAX-1
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @param mixed $key
|
|
|
|
* @return void
|
|
|
|
*/
|
2012-12-14 22:03:00 +00:00
|
|
|
public function get_rate_code( $key ) {
|
2012-12-06 19:49:00 +00:00
|
|
|
global $wpdb;
|
|
|
|
|
|
|
|
$rate = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM {$wpdb->prefix}woocommerce_tax_rates WHERE tax_rate_id = %s", $key ) );
|
|
|
|
|
|
|
|
$code = array();
|
|
|
|
|
|
|
|
$code[] = $rate->tax_rate_country;
|
|
|
|
$code[] = $rate->tax_rate_state;
|
|
|
|
$code[] = $rate->tax_rate_name ? $rate->tax_rate_name : 'TAX';
|
|
|
|
$code[] = absint( $rate->tax_rate_priority );
|
|
|
|
|
|
|
|
return apply_filters( 'woocommerce_rate_code', strtoupper( implode( '-', array_filter( $code ) ) ), $key, $this );
|
|
|
|
}
|
|
|
|
|
2012-01-04 16:24:26 +00:00
|
|
|
/**
|
2012-08-14 20:19:41 +00:00
|
|
|
* Round tax lines and return the sum.
|
2012-01-04 16:24:26 +00:00
|
|
|
*
|
|
|
|
* @param array
|
2012-08-08 10:42:42 +00:00
|
|
|
* @return float
|
2012-01-04 16:24:26 +00:00
|
|
|
*/
|
2012-12-14 22:03:00 +00:00
|
|
|
public function get_tax_total( $taxes ) {
|
2012-12-15 11:53:32 +00:00
|
|
|
return array_sum( array_map( array( $this, 'round' ), $taxes ) );
|
2012-01-04 16:24:26 +00:00
|
|
|
}
|
2012-11-08 15:27:47 +00:00
|
|
|
}
|