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-08-14 20:19:41 +00:00
|
|
|
* @version 1.6.4
|
|
|
|
* @package WooCommerce/classes
|
|
|
|
* @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-08-14 20:19:41 +00:00
|
|
|
/**
|
|
|
|
* Contains an array of tax rates.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
var $rates;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Contains an array of parsed tax rates with counties/states as keys.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
var $parsed_rates;
|
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 the tax rates as an array.
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @return array
|
2011-08-09 15:16:18 +00:00
|
|
|
*/
|
|
|
|
function get_tax_rates() {
|
2012-06-20 14:24:49 +00:00
|
|
|
if ( ! is_array( $this->parsed_rates ) ) {
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2011-12-29 01:18:59 +00:00
|
|
|
global $woocommerce;
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2012-04-25 09:27:46 +00:00
|
|
|
$tax_rates = array_filter( (array) get_option('woocommerce_tax_rates') );
|
|
|
|
$local_tax_rates = array_filter( (array) get_option('woocommerce_local_tax_rates') );
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2012-01-03 17:23:42 +00:00
|
|
|
$parsed_rates = array();
|
|
|
|
$flat_rates = array();
|
|
|
|
$index = 0;
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2012-04-16 17:55:35 +00:00
|
|
|
if ( ! empty( $tax_rates ) ) foreach( $tax_rates as $rate ) :
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2011-12-29 01:18:59 +00:00
|
|
|
// Standard Rate?
|
2012-03-19 18:29:38 +00:00
|
|
|
if ( isset( $rate['class'] ) && !$rate['class']) $rate['class'] = '*';
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2011-12-29 01:18:59 +00:00
|
|
|
// Add entry for each country/state - each will hold all matching rates
|
2012-03-19 18:29:38 +00:00
|
|
|
if ( isset( $rate['countries'] ) && $rate['countries']) foreach ($rate['countries'] as $country => $states) :
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2011-12-29 01:18:59 +00:00
|
|
|
if ($states) :
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2011-12-29 01:18:59 +00:00
|
|
|
foreach ($states as $state) :
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2011-12-30 14:00:41 +00:00
|
|
|
if (!$rate['label']) :
|
|
|
|
$rate['label'] = $woocommerce->countries->tax_or_vat();
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2011-12-30 14:00:41 +00:00
|
|
|
// Add % to label
|
|
|
|
if ( $rate['rate'] > 0 || $rate['rate'] === 0 ) :
|
|
|
|
$rate['label'] .= ' ('. rtrim(rtrim($rate['rate'], '0'), '.') . '%)';
|
|
|
|
endif;
|
2011-12-29 01:18:59 +00:00
|
|
|
endif;
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2011-12-30 21:11:18 +00:00
|
|
|
$flat_rates[$index] = $rate;
|
2012-08-08 10:42:42 +00:00
|
|
|
|
|
|
|
$parsed_rates[$country][$state][$rate['class']][$index] = array(
|
|
|
|
'label' => $rate['label'],
|
|
|
|
'rate' => $rate['rate'],
|
2011-12-29 01:18:59 +00:00
|
|
|
'shipping' => $rate['shipping'],
|
2012-08-08 10:42:42 +00:00
|
|
|
'compound' => $rate['compound']
|
2011-12-29 01:18:59 +00:00
|
|
|
);
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2011-12-29 01:18:59 +00:00
|
|
|
$index++;
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2011-12-29 01:18:59 +00:00
|
|
|
endforeach;
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2011-12-29 01:18:59 +00:00
|
|
|
endif;
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2011-12-29 01:18:59 +00:00
|
|
|
endforeach;
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2011-08-24 16:23:04 +00:00
|
|
|
endforeach;
|
2012-03-19 18:29:38 +00:00
|
|
|
|
2012-04-16 17:55:35 +00:00
|
|
|
if ( ! empty( $local_tax_rates ) ) foreach( $local_tax_rates as $rate ) :
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2012-01-03 17:23:42 +00:00
|
|
|
// Standard Rate?
|
|
|
|
if (!$rate['class']) $rate['class'] = '*';
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2012-03-19 18:29:38 +00:00
|
|
|
if ( isset( $rate['label'] ) && !$rate['label']) :
|
2012-01-03 17:23:42 +00:00
|
|
|
$rate['label'] = $woocommerce->countries->tax_or_vat();
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2012-01-03 17:23:42 +00:00
|
|
|
// Add % to label
|
|
|
|
if ( $rate['rate'] > 0 || $rate['rate'] === 0 ) :
|
|
|
|
$rate['label'] .= ' ('. rtrim(rtrim($rate['rate'], '0'), '.') . '%)';
|
|
|
|
endif;
|
|
|
|
endif;
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2012-01-03 17:23:42 +00:00
|
|
|
$flat_rates[$index] = $rate;
|
2012-08-08 10:42:42 +00:00
|
|
|
|
|
|
|
$parsed_rates[$rate['country']][$rate['state']][$rate['class']][$index] = array(
|
|
|
|
'label' => $rate['label'],
|
|
|
|
'rate' => $rate['rate'],
|
2012-01-17 15:26:54 +00:00
|
|
|
'postcode' => array_map('strtoupper', (array) $rate['postcode']),
|
2012-01-03 17:23:42 +00:00
|
|
|
'shipping' => $rate['shipping'],
|
2012-08-08 10:42:42 +00:00
|
|
|
'compound' => $rate['compound']
|
2012-01-03 17:23:42 +00:00
|
|
|
);
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2012-01-03 17:23:42 +00:00
|
|
|
$index++;
|
2012-08-08 10:42:42 +00:00
|
|
|
|
|
|
|
endforeach;
|
|
|
|
|
2012-06-20 14:24:49 +00:00
|
|
|
$this->rates = $flat_rates;
|
2011-12-30 21:11:18 +00:00
|
|
|
$this->parsed_rates = $parsed_rates;
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2012-06-20 14:24:49 +00:00
|
|
|
do_action( 'woocommerce_get_tax_rates', $this );
|
|
|
|
}
|
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
|
|
|
* Searches for all matching country/state/postcode tax rates.
|
2011-08-09 15:16:18 +00:00
|
|
|
*
|
2011-12-28 23:59:33 +00:00
|
|
|
* @since 1.4
|
2011-08-09 15:16:18 +00:00
|
|
|
* @param string country
|
|
|
|
* @param string state
|
2011-12-21 20:24:34 +00:00
|
|
|
* @param string postcode
|
2011-12-28 23:59:33 +00:00
|
|
|
* @param string Tax Class
|
2011-12-21 20:24:34 +00:00
|
|
|
* @return array
|
2011-08-09 15:16:18 +00:00
|
|
|
*/
|
2011-12-28 23:59:33 +00:00
|
|
|
function find_rates( $country = '', $state = '', $postcode = '', $tax_class = '' ) {
|
2011-12-29 01:18:59 +00:00
|
|
|
$this->get_tax_rates();
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2012-06-21 12:06:48 +00:00
|
|
|
if ( ! $country ) return array();
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2012-06-21 12:06:48 +00:00
|
|
|
if ( ! $state ) $state = '*';
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2011-11-29 00:20:51 +00:00
|
|
|
$tax_class = sanitize_title($tax_class);
|
2012-06-21 12:06:48 +00:00
|
|
|
if ( ! $tax_class ) $tax_class = '*';
|
2011-08-09 15:16:18 +00:00
|
|
|
|
2011-12-29 01:18:59 +00:00
|
|
|
$found_rates = array();
|
|
|
|
|
2011-12-28 23:59:33 +00:00
|
|
|
// Look for a state specific rule
|
2012-06-20 14:14:09 +00:00
|
|
|
if ( isset( $this->parsed_rates[ $country ][ $state ][ $tax_class ] ) || isset( $this->parsed_rates[ $country ][ $state ][ '*' ] ) ) {
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2011-12-28 23:59:33 +00:00
|
|
|
// Look for tax class specific rule
|
2012-06-20 14:14:09 +00:00
|
|
|
if ( isset( $this->parsed_rates[ $country ][ $state ][ $tax_class ] ) )
|
2011-12-30 21:11:18 +00:00
|
|
|
$found_rates = $this->parsed_rates[ $country ][ $state ][ $tax_class ];
|
2012-06-20 14:14:09 +00:00
|
|
|
else
|
2011-12-30 21:11:18 +00:00
|
|
|
$found_rates = $this->parsed_rates[ $country ][ $state ][ '*' ];
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2011-12-28 23:59:33 +00:00
|
|
|
// Default to * if not state specific rules are found
|
2012-06-20 14:14:09 +00:00
|
|
|
} elseif ( isset( $this->parsed_rates[ $country ][ '*' ] ) ) {
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2011-12-28 23:59:33 +00:00
|
|
|
// Look for tax class specific rule
|
2012-06-21 12:06:48 +00:00
|
|
|
if ( isset( $this->parsed_rates[ $country ][ '*' ][ $tax_class ] ) )
|
2011-12-30 21:11:18 +00:00
|
|
|
$found_rates = $this->parsed_rates[ $country ][ '*' ][ $tax_class ];
|
2012-06-21 12:06:48 +00:00
|
|
|
elseif ( isset( $this->parsed_rates[ $country ][ '*' ][ '*' ] ) )
|
2011-12-30 21:11:18 +00:00
|
|
|
$found_rates = $this->parsed_rates[ $country ][ '*' ][ '*' ];
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2012-06-20 14:14:09 +00:00
|
|
|
}
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2011-12-28 23:59:33 +00:00
|
|
|
// Now we have an array of matching rates, lets filter this based on postcode
|
2012-01-03 17:23:42 +00:00
|
|
|
$matched_tax_rates = array();
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2012-02-10 22:15:29 +00:00
|
|
|
if ($found_rates) foreach ($found_rates as $key => $rate) :
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2012-01-03 17:23:42 +00:00
|
|
|
if (isset($rate['postcode'])) :
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2012-01-03 17:23:42 +00:00
|
|
|
// Local rate
|
|
|
|
if ($postcode) :
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2012-01-03 17:23:42 +00:00
|
|
|
// Check if postcode matches up
|
|
|
|
if (in_array($postcode, $rate['postcode']) || sizeof($rate['postcode'])==0) $matched_tax_rates[$key] = $rate;
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2012-01-03 17:23:42 +00:00
|
|
|
// Check postcode ranges
|
|
|
|
if (is_numeric($postcode)) :
|
|
|
|
foreach ($rate['postcode'] as $rate_postcode) :
|
|
|
|
if (strstr($rate_postcode, '-')) :
|
|
|
|
$parts = array_map('trim', explode('-', $rate_postcode));
|
|
|
|
if (sizeof($parts)==2 && is_numeric($parts[0]) && is_numeric($parts[1])) :
|
|
|
|
if ($postcode>=$parts[0] && $postcode<=$parts[1]) $matched_tax_rates[$key] = $rate;
|
|
|
|
endif;
|
|
|
|
endif;
|
|
|
|
endforeach;
|
|
|
|
endif;
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2012-01-03 17:23:42 +00:00
|
|
|
endif;
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2012-01-03 17:23:42 +00:00
|
|
|
else :
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2012-01-03 17:23:42 +00:00
|
|
|
// Standard rate
|
|
|
|
$matched_tax_rates[$key] = $rate;
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2012-01-03 17:23:42 +00:00
|
|
|
endif;
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2012-01-03 17:23:42 +00:00
|
|
|
endforeach;
|
2011-12-28 23:59:33 +00:00
|
|
|
|
2011-12-30 21:11:18 +00:00
|
|
|
$matched_tax_rates = apply_filters('woocommerce_matched_tax_rates', $matched_tax_rates, $this->parsed_rates, $country, $state, $postcode, $tax_class );
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2011-12-28 23:59:33 +00:00
|
|
|
return $matched_tax_rates;
|
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
|
|
|
*/
|
2011-12-28 23:59:33 +00:00
|
|
|
function get_rates( $tax_class = '' ) {
|
2011-09-06 11:11:22 +00:00
|
|
|
global $woocommerce;
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2011-12-29 01:18:59 +00:00
|
|
|
$this->get_tax_rates();
|
2012-08-08 10:42:42 +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. */
|
|
|
|
if ( ( defined('WOOCOMMERCE_CHECKOUT') && WOOCOMMERCE_CHECKOUT ) || $woocommerce->customer->has_calculated_shipping() ) {
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2011-12-06 10:49:26 +00:00
|
|
|
$country = $woocommerce->customer->get_shipping_country();
|
|
|
|
$state = $woocommerce->customer->get_shipping_state();
|
2011-12-21 20:24:34 +00:00
|
|
|
$postcode = $woocommerce->customer->get_shipping_postcode();
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2011-12-28 23:59:33 +00:00
|
|
|
$matched_tax_rates = $this->find_rates( $country, $state, $postcode, $tax_class );
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2011-12-28 23:59:33 +00:00
|
|
|
return $matched_tax_rates;
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2012-05-09 17:29:22 +00:00
|
|
|
} else {
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2011-08-09 15:16:18 +00:00
|
|
|
return $this->get_shop_base_rate( $tax_class );
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2012-05-09 17:29:22 +00:00
|
|
|
}
|
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
|
|
|
*/
|
|
|
|
function get_shop_base_rate( $tax_class = '' ) {
|
2011-09-06 11:11:22 +00:00
|
|
|
global $woocommerce;
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2011-12-29 01:18:59 +00:00
|
|
|
$this->get_tax_rates();
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2011-09-06 11:11:22 +00:00
|
|
|
$country = $woocommerce->countries->get_base_country();
|
|
|
|
$state = $woocommerce->countries->get_base_state();
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2011-12-28 23:59:33 +00:00
|
|
|
return $this->find_rates( $country, $state, '', $tax_class );
|
2011-08-09 15:16:18 +00:00
|
|
|
}
|
|
|
|
|
2012-08-14 20:19:41 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Deprecated before new tax system - added to stop errors before people upgrade.
|
|
|
|
*
|
|
|
|
* @deprecated 1.4
|
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2012-02-01 21:49:08 +00:00
|
|
|
function get_shipping_tax_rate() {
|
|
|
|
_deprecated_function( 'get_shipping_tax_rate', '1.4' );
|
|
|
|
}
|
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
|
|
|
*/
|
2011-12-30 19:36:44 +00:00
|
|
|
function get_shipping_tax_rates( $tax_class = null ) {
|
|
|
|
global $woocommerce;
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2011-12-29 01:18:59 +00:00
|
|
|
$this->get_tax_rates();
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2012-05-09 17:29:22 +00:00
|
|
|
if ( ( defined('WOOCOMMERCE_CHECKOUT') && WOOCOMMERCE_CHECKOUT ) || $woocommerce->customer->has_calculated_shipping() ) {
|
2011-12-06 10:49:26 +00:00
|
|
|
$country = $woocommerce->customer->get_shipping_country();
|
|
|
|
$state = $woocommerce->customer->get_shipping_state();
|
2011-12-30 19:36:44 +00:00
|
|
|
$postcode = $woocommerce->customer->get_shipping_postcode();
|
2012-05-09 17:29:22 +00:00
|
|
|
} else {
|
2011-09-06 11:11:22 +00:00
|
|
|
$country = $woocommerce->countries->get_base_country();
|
|
|
|
$state = $woocommerce->countries->get_base_state();
|
2011-12-30 19:36:44 +00:00
|
|
|
$postcode = '';
|
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-05-09 17:29:22 +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
|
2011-12-30 19:36:44 +00:00
|
|
|
$rates = $this->find_rates( $country, $state, $postcode, $tax_class );
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2011-12-30 19:36:44 +00:00
|
|
|
if ($rates) foreach ($rates as $key => $rate) :
|
|
|
|
if (isset($rate['shipping']) && $rate['shipping']=='yes') :
|
|
|
|
$matched_tax_rates[$key] = $rate;
|
|
|
|
endif;
|
|
|
|
endforeach;
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2011-12-30 19:36:44 +00:00
|
|
|
if (sizeof($matched_tax_rates)==0) :
|
2011-08-09 15:16:18 +00:00
|
|
|
// Get standard rate
|
2011-12-30 19:36:44 +00:00
|
|
|
$rates = $this->find_rates( $country, $state, $postcode );
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2011-12-30 19:36:44 +00:00
|
|
|
if ($rates) foreach ($rates as $key => $rate) :
|
|
|
|
if (isset($rate['shipping']) && $rate['shipping']=='yes') :
|
|
|
|
$matched_tax_rates[$key] = $rate;
|
|
|
|
endif;
|
|
|
|
endforeach;
|
2011-08-09 15:16:18 +00:00
|
|
|
endif;
|
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
|
|
|
|
2011-08-09 15:16:18 +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
|
2011-11-06 13:45:18 +00:00
|
|
|
if (sizeof($woocommerce->cart->get_cart())>0) : foreach ($woocommerce->cart->get_cart() as $item) :
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2012-01-04 16:24:26 +00:00
|
|
|
$found_tax_classes[] = $item['data']->get_tax_class();
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2011-08-09 15:16:18 +00:00
|
|
|
endforeach; endif;
|
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
|
|
|
|
if (sizeof($found_tax_classes)>1) :
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2012-01-04 16:24:26 +00:00
|
|
|
if (in_array('', $found_tax_classes)) :
|
|
|
|
$rates = $this->find_rates( $country, $state, $postcode );
|
2011-08-09 15:16:18 +00:00
|
|
|
else :
|
2012-01-04 16:24:26 +00:00
|
|
|
$tax_classes = array_filter(array_map('trim', explode("\n", get_option('woocommerce_tax_classes'))));
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2012-01-04 16:24:26 +00:00
|
|
|
foreach ($tax_classes as $tax_class) :
|
|
|
|
if (in_array( $tax_class, $found_tax_classes )) :
|
|
|
|
$rates = $this->find_rates( $country, $state, $postcode, $tax_class );
|
|
|
|
break;
|
|
|
|
endif;
|
|
|
|
endforeach;
|
2011-08-09 15:16:18 +00:00
|
|
|
endif;
|
2012-01-04 16:24:26 +00:00
|
|
|
|
|
|
|
// If a single tax class is found, use it
|
|
|
|
elseif (sizeof($found_tax_classes)==1) :
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2012-01-04 16:24:26 +00:00
|
|
|
$rates = $this->find_rates( $country, $state, $postcode, $found_tax_classes[0] );
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2012-01-04 16:24:26 +00:00
|
|
|
endif;
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2012-01-04 16:24:26 +00:00
|
|
|
// If no classes are found, use standard rates
|
|
|
|
if (!$rates) :
|
2012-08-08 10:42:42 +00:00
|
|
|
$rates = $this->find_rates( $country, $state, $postcode );
|
2011-08-09 15:16:18 +00:00
|
|
|
endif;
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2012-01-04 16:24:26 +00:00
|
|
|
if ($rates) foreach ($rates as $key => $rate) :
|
|
|
|
if (isset($rate['shipping']) && $rate['shipping']=='yes') :
|
|
|
|
$matched_tax_rates[$key] = $rate;
|
|
|
|
endif;
|
|
|
|
endforeach;
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2012-01-04 16:24:26 +00:00
|
|
|
return $matched_tax_rates;
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2011-12-30 19:36:44 +00:00
|
|
|
endif;
|
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-08-09 15:16:18 +00:00
|
|
|
/**
|
2012-08-14 20:19:41 +00:00
|
|
|
* Calculate the tax using a passed array of rates.
|
2011-08-09 15:16:18 +00:00
|
|
|
*
|
2011-12-28 23:59:33 +00:00
|
|
|
* @param float price
|
|
|
|
* @param array rates
|
|
|
|
* @param bool passed price includes tax
|
2011-12-30 19:36:44 +00:00
|
|
|
* @return array array of rates/amounts
|
2011-08-09 15:16:18 +00:00
|
|
|
*/
|
2012-06-05 11:21:52 +00:00
|
|
|
function calc_tax( $price, $rates, $price_includes_tax = true, $supress_rounding = false ) {
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2011-11-21 11:33:46 +00:00
|
|
|
$price = $price * 100; // To avoid float rounding errors, work with integers (pence)
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2011-12-30 19:36:44 +00:00
|
|
|
// Taxes array
|
|
|
|
$taxes = array();
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2012-01-02 15:25:07 +00:00
|
|
|
// Price inc tax
|
2012-08-08 10:42:42 +00:00
|
|
|
if ( $price_includes_tax ) {
|
|
|
|
|
|
|
|
$regular_tax_rates = $compound_tax_rates = 0;
|
|
|
|
|
|
|
|
foreach ( $rates as $key => $rate )
|
2012-01-02 15:25:07 +00:00
|
|
|
if ($rate['compound']=='yes')
|
|
|
|
$compound_tax_rates = $compound_tax_rates + $rate['rate'];
|
|
|
|
else
|
|
|
|
$regular_tax_rates = $regular_tax_rates + $rate['rate'];
|
2012-08-08 10:42:42 +00:00
|
|
|
|
|
|
|
$regular_tax_rate = 1 + ( $regular_tax_rates / 100 );
|
|
|
|
$compound_tax_rate = 1 + ( $compound_tax_rates / 100 );
|
|
|
|
$tax_rate = $regular_tax_rate * $compound_tax_rate;
|
|
|
|
$non_compound_price = ( $price / $compound_tax_rate );
|
|
|
|
|
|
|
|
foreach ( $rates as $key => $rate ) {
|
|
|
|
|
2012-01-02 15:25:07 +00:00
|
|
|
$the_rate = $rate['rate'] / 100;
|
2012-08-08 10:42:42 +00:00
|
|
|
|
|
|
|
if ( $rate['compound'] == 'yes' )
|
2012-01-02 15:25:07 +00:00
|
|
|
$tax_amount = ( $the_rate / $compound_tax_rate ) * $price;
|
|
|
|
else
|
|
|
|
$tax_amount = ( $the_rate / $regular_tax_rate ) * $non_compound_price;
|
2012-08-08 10:42:42 +00:00
|
|
|
|
|
|
|
// ADVANCED: Allow third parties to modifiy this rate
|
|
|
|
$tax_amount = apply_filters( 'woocommerce_price_inc_tax_amount', $tax_amount, $key, $rate, $price, $non_compound_price );
|
|
|
|
|
2012-01-02 15:25:07 +00:00
|
|
|
// Back to pounds
|
2012-08-08 10:42:42 +00:00
|
|
|
$tax_amount = ( $tax_amount / 100 );
|
|
|
|
|
2012-01-02 15:25:07 +00:00
|
|
|
// Rounding
|
2012-08-08 10:42:42 +00:00
|
|
|
if ( get_option( 'woocommerce_tax_round_at_subtotal' ) == 'no' && ! $supress_rounding )
|
2012-01-02 15:25:07 +00:00
|
|
|
$tax_amount = round( $tax_amount, 2 );
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2012-01-02 15:25:07 +00:00
|
|
|
// Add rate
|
2012-08-08 10:42:42 +00:00
|
|
|
if ( ! isset( $taxes[$key] ) )
|
|
|
|
$taxes[ $key ] = $tax_amount;
|
|
|
|
else
|
|
|
|
$taxes[ $key ] += $tax_amount;
|
|
|
|
|
|
|
|
}
|
2011-12-30 19:36:44 +00:00
|
|
|
|
2012-01-02 15:25:07 +00:00
|
|
|
// Prices ex tax
|
2012-08-08 10:42:42 +00:00
|
|
|
} else {
|
2012-01-02 15:25:07 +00:00
|
|
|
|
|
|
|
// Multiple taxes
|
2012-08-08 10:42:42 +00:00
|
|
|
foreach ( $rates as $key => $rate ) {
|
|
|
|
|
|
|
|
if ( $rate['compound'] == 'yes' )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
$tax_amount = $price * ( $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 );
|
|
|
|
|
2012-01-02 15:25:07 +00:00
|
|
|
// Back to pounds
|
2012-08-08 10:42:42 +00:00
|
|
|
$tax_amount = ( $tax_amount / 100 );
|
|
|
|
|
2012-01-02 15:25:07 +00:00
|
|
|
// Rounding
|
2012-08-08 10:42:42 +00:00
|
|
|
if ( get_option( 'woocommerce_tax_round_at_subtotal' ) == 'no' && ! $supress_rounding )
|
2012-01-02 15:25:07 +00:00
|
|
|
$tax_amount = round( $tax_amount, 2 );
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2012-01-02 15:25:07 +00:00
|
|
|
// Add rate
|
2012-08-08 10:42:42 +00:00
|
|
|
if ( ! isset( $taxes[ $key ] ) )
|
|
|
|
$taxes[ $key ] = $tax_amount;
|
|
|
|
else
|
|
|
|
$taxes[ $key ] += $tax_amount;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
$pre_compound_total = array_sum( $taxes );
|
|
|
|
|
2012-01-02 15:25:07 +00:00
|
|
|
// Compound taxes
|
2012-08-08 10:42:42 +00:00
|
|
|
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 );
|
|
|
|
|
2012-01-02 15:25:07 +00:00
|
|
|
// Back to pounds
|
2012-08-08 10:42:42 +00:00
|
|
|
$tax_amount = ( $tax_amount / 100 );
|
|
|
|
|
2012-01-02 15:25:07 +00:00
|
|
|
// Rounding
|
2012-08-08 10:42:42 +00:00
|
|
|
if ( get_option( 'woocommerce_tax_round_at_subtotal' ) == 'no' && ! $supress_rounding )
|
2012-01-02 15:25:07 +00:00
|
|
|
$tax_amount = round( $tax_amount, 2 );
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2012-01-02 15:25:07 +00:00
|
|
|
// Add rate
|
2012-08-08 10:42:42 +00:00
|
|
|
if ( ! isset( $taxes[ $key ] ) )
|
|
|
|
$taxes[ $key ] = $tax_amount;
|
|
|
|
else
|
|
|
|
$taxes[ $key ] += $tax_amount;
|
2011-12-30 19:36:44 +00:00
|
|
|
|
2012-08-08 10:42:42 +00:00
|
|
|
}
|
2011-10-05 23:23:26 +00:00
|
|
|
|
2012-08-08 10:42:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return apply_filters( 'woocommerce_calc_tax', $taxes, $price, $rates, $price_includes_tax, $supress_rounding );
|
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
|
|
|
* Calculate the shipping tax using a passed array of rates.
|
2011-08-09 15:16:18 +00:00
|
|
|
*
|
|
|
|
* @param int Price
|
|
|
|
* @param int Taxation Rate
|
2012-08-08 10:42:42 +00:00
|
|
|
* @return int
|
2011-08-09 15:16:18 +00:00
|
|
|
*/
|
2011-12-30 19:36:44 +00:00
|
|
|
function calc_shipping_tax( $price, $rates ) {
|
2011-08-09 15:16:18 +00:00
|
|
|
|
2011-12-30 19:36:44 +00:00
|
|
|
// Taxes array
|
|
|
|
$taxes = array();
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2011-12-30 19:36:44 +00:00
|
|
|
// Multiple taxes
|
|
|
|
foreach ($rates as $key => $rate) :
|
|
|
|
if ($rate['compound']=='yes') continue;
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2011-12-30 19:36:44 +00:00
|
|
|
$tax_amount = $price * ($rate['rate']/100);
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2011-12-30 19:36:44 +00:00
|
|
|
// Add rate
|
|
|
|
if (!isset($taxes[$key])) $taxes[$key] = $tax_amount; else $taxes[$key] += $tax_amount;
|
|
|
|
|
|
|
|
endforeach;
|
|
|
|
|
|
|
|
$pre_compound_total = array_sum($taxes);
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2011-12-30 19:36:44 +00:00
|
|
|
// Compound taxes
|
|
|
|
foreach ($rates as $key => $rate) :
|
|
|
|
if ($rate['compound']=='no') continue;
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2011-12-30 19:36:44 +00:00
|
|
|
$the_price_inc_tax = $price + $pre_compound_total;
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2011-12-30 19:36:44 +00:00
|
|
|
$tax_amount = $the_price_inc_tax * ($rate['rate']/100);
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2011-12-30 19:36:44 +00:00
|
|
|
// Add rate
|
|
|
|
if (!isset($taxes[$key])) $taxes[$key] = $tax_amount; else $taxes[$key] += $tax_amount;
|
|
|
|
|
|
|
|
endforeach;
|
2012-01-04 16:24:26 +00:00
|
|
|
|
2011-12-30 19:36:44 +00:00
|
|
|
return $taxes;
|
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
|
|
|
*/
|
2011-12-30 21:11:18 +00:00
|
|
|
function is_compound( $key ) {
|
|
|
|
if (isset($this->rates[$key]) && $this->rates[$key]['compound']=='yes') return true;
|
|
|
|
return 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
|
|
|
*/
|
2011-12-30 21:11:18 +00:00
|
|
|
function get_rate_label( $key ) {
|
|
|
|
if (isset($this->rates[$key]) && $this->rates[$key]['label']) return $this->rates[$key]['label'];
|
|
|
|
return '';
|
2011-12-30 19:36:44 +00:00
|
|
|
}
|
2012-08-08 10:42:42 +00:00
|
|
|
|
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
|
|
|
*/
|
|
|
|
function get_tax_total( $taxes ) {
|
|
|
|
return array_sum(array_map(array(&$this, 'round'), $taxes));
|
|
|
|
}
|
2012-08-08 10:42:42 +00:00
|
|
|
|
|
|
|
/**
|
2012-08-14 20:19:41 +00:00
|
|
|
* Round to 2 DP.
|
2012-01-04 16:24:26 +00:00
|
|
|
*/
|
|
|
|
function round( $in ) {
|
|
|
|
return round($in, 2);
|
|
|
|
}
|
2012-08-08 10:42:42 +00:00
|
|
|
|
2012-01-27 16:38:39 +00:00
|
|
|
}
|
|
|
|
|
2012-08-14 20:19:41 +00:00
|
|
|
/**
|
|
|
|
* woocommerce_tax class.
|
|
|
|
*
|
|
|
|
* @extends WC_Tax
|
|
|
|
* @deprecated 1.4
|
|
|
|
*/
|
2012-01-27 16:38:39 +00:00
|
|
|
class woocommerce_tax extends WC_Tax {
|
2012-08-08 10:42:42 +00:00
|
|
|
public function __construct() {
|
2012-01-27 16:38:39 +00:00
|
|
|
_deprecated_function( 'woocommerce_tax', '1.4', 'WC_Tax()' );
|
2012-08-08 10:42:42 +00:00
|
|
|
}
|
2012-03-19 18:29:38 +00:00
|
|
|
}
|