woocommerce/classes/tax.class.php

368 lines
9.4 KiB
PHP
Raw Normal View History

2011-08-09 15:16:18 +00:00
<?php
/**
* Performs tax calculations and loads tax rates.
2011-08-09 15:16:18 +00:00
*
* @class woocommerce_tax
2011-08-10 17:11:11 +00:00
* @package WooCommerce
* @category Class
* @author WooThemes
2011-08-09 15:16:18 +00:00
*/
2011-08-10 17:11:11 +00:00
class woocommerce_tax {
2011-08-09 15:16:18 +00:00
2011-12-29 01:18:59 +00:00
var $rates = '';
2011-08-09 15:16:18 +00:00
/**
* Get the tax rates as an array
*/
function get_tax_rates() {
2011-12-29 01:18:59 +00:00
if (!is_array($this->rates)) :
global $woocommerce;
2011-08-24 16:23:04 +00:00
2011-12-29 01:18:59 +00:00
$tax_rates = get_option('woocommerce_tax_rates');
$tax_rates_array = array();
$index = 0;
if ($tax_rates && is_array($tax_rates) && sizeof($tax_rates)>0) foreach( $tax_rates as $rate ) :
// Standard Rate?
if (!$rate['class']) $rate['class'] = '*';
2011-08-24 16:23:04 +00:00
2011-12-29 01:18:59 +00:00
// Add entry for each country/state - each will hold all matching rates
if ($rate['countries']) foreach ($rate['countries'] as $country => $states) :
2011-12-29 01:18:59 +00:00
if ($states) :
2011-08-24 16:23:04 +00:00
2011-12-29 01:18:59 +00:00
foreach ($states as $state) :
if (!$rate['label']) :
$rate['label'] = $woocommerce->countries->tax_or_vat();
// 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;
$tax_rates_array[$country][$state][$rate['class']][$index] = array(
'label' => $rate['label'],
'rate' => $rate['rate'],
'postcode' => $rate['postcode'],
'shipping' => $rate['shipping'],
'compound' => $rate['compound']
);
$index++;
endforeach;
endif;
endforeach;
2011-08-24 16:23:04 +00:00
endforeach;
2011-12-29 01:18:59 +00:00
$this->rates = $tax_rates_array;
endif;
return $this->rates;
2011-08-09 15:16:18 +00:00
}
/**
* Searches for all matching country/state/postcode tax rates
2011-08-09 15:16:18 +00:00
*
* @since 1.4
2011-08-09 15:16:18 +00:00
* @param string country
* @param string state
* @param string postcode
* @param string Tax Class
* @return array
2011-08-09 15:16:18 +00:00
*/
function find_rates( $country = '', $state = '', $postcode = '', $tax_class = '' ) {
2011-12-29 01:18:59 +00:00
$this->get_tax_rates();
2011-08-09 15:16:18 +00:00
if (!$country) return array();
if (!$state) $state = '*';
2011-11-29 00:20:51 +00:00
$tax_class = sanitize_title($tax_class);
if (!$tax_class) $tax_class = '*';
2011-08-09 15:16:18 +00:00
2011-12-29 01:18:59 +00:00
$found_rates = array();
// Look for a state specific rule
2011-08-09 15:16:18 +00:00
if (isset($this->rates[ $country ][ $state ])) :
// Look for tax class specific rule
2011-12-29 01:18:59 +00:00
if (isset($this->rates[ $country ][ $state ][ $tax_class ])) :
$found_rates = $this->rates[ $country ][ $state ][ $tax_class ];
2011-08-09 15:16:18 +00:00
else :
$found_rates = $this->rates[ $country ][ $state ][ '*' ];
2011-08-09 15:16:18 +00:00
endif;
// Default to * if not state specific rules are found
2011-08-09 15:16:18 +00:00
elseif (isset($this->rates[ $country ][ '*' ])) :
// Look for tax class specific rule
2011-12-29 01:18:59 +00:00
if (isset($this->rates[ $country ][ '*' ][ $tax_class ])) :
$found_rates = $this->rates[ $country ][ '*' ][ $tax_class ];
2011-08-09 15:16:18 +00:00
else :
$found_rates = $this->rates[ $country ][ '*' ][ '*' ];
2011-08-09 15:16:18 +00:00
endif;
endif;
2011-08-09 15:16:18 +00:00
// Now we have an array of matching rates, lets filter this based on postcode
$matched_tax_rates = array();
2011-08-09 15:16:18 +00:00
if ($postcode) :
foreach ($found_rates as $rate) :
if (in_array($postcode, $rate['postcode']) || sizeof($rate['postcode'])==0) $matched_tax_rates[] = $rate;
endforeach;
else :
foreach ($found_rates as $rate) :
if (sizeof($rate['postcode'])==0) $matched_tax_rates[] = $rate;
endforeach;
endif;
$matched_tax_rates = apply_filters('woocommerce_matched_tax_rates', $matched_tax_rates, $this->rates, $country, $state, $postcode, $tax_class );
return $matched_tax_rates;
2011-08-09 15:16:18 +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
* @return array
2011-08-09 15:16:18 +00:00
*/
function get_rates( $tax_class = '' ) {
global $woocommerce;
2011-08-09 15:16:18 +00:00
2011-12-29 01:18:59 +00:00
$this->get_tax_rates();
$tax_class = sanitize_title($tax_class);
2011-08-09 15:16:18 +00:00
/* Checkout uses customer location, otherwise use store base rate */
2011-08-10 17:11:11 +00:00
if ( defined('WOOCOMMERCE_CHECKOUT') && WOOCOMMERCE_CHECKOUT ) :
2011-08-09 15:16:18 +00:00
$country = $woocommerce->customer->get_shipping_country();
$state = $woocommerce->customer->get_shipping_state();
$postcode = $woocommerce->customer->get_shipping_postcode();
2011-08-09 15:16:18 +00:00
$matched_tax_rates = $this->find_rates( $country, $state, $postcode, $tax_class );
2011-08-09 15:16:18 +00:00
return $matched_tax_rates;
2011-08-09 15:16:18 +00:00
else :
return $this->get_shop_base_rate( $tax_class );
endif;
}
/**
* Get's an array of matching rates for the shop's base country
2011-08-09 15:16:18 +00:00
*
* @param string Tax Class
* @return array
2011-08-09 15:16:18 +00:00
*/
function get_shop_base_rate( $tax_class = '' ) {
global $woocommerce;
2011-08-09 15:16:18 +00:00
2011-12-29 01:18:59 +00:00
$this->get_tax_rates();
$country = $woocommerce->countries->get_base_country();
$state = $woocommerce->countries->get_base_state();
2011-08-09 15:16:18 +00:00
return $this->find_rates( $country, $state, '', $tax_class );
2011-08-09 15:16:18 +00:00
}
/**
* Get the tax rate based on the country and state
*
* @param string Tax Class
2011-08-09 15:16:18 +00:00
* @return mixed
*/
function get_shipping_tax_rate( $tax_class = '' ) {
/*global $woocommerce;
2011-08-09 15:16:18 +00:00
2011-12-29 01:18:59 +00:00
$this->get_tax_rates();
2011-08-10 17:11:11 +00:00
if (defined('WOOCOMMERCE_CHECKOUT') && WOOCOMMERCE_CHECKOUT) :
$country = $woocommerce->customer->get_shipping_country();
$state = $woocommerce->customer->get_shipping_state();
2011-08-09 15:16:18 +00:00
else :
$country = $woocommerce->countries->get_base_country();
$state = $woocommerce->countries->get_base_state();
2011-08-09 15:16:18 +00:00
endif;
// If we are here then shipping is taxable - work it out
if ($tax_class) :
// This will be per item shipping
$rate = $this->find_rates( $country, $state, $tax_class );
2011-08-09 15:16:18 +00:00
if (isset($rate['shipping']) && $rate['shipping']=='yes') :
return $rate['rate'];
else :
// Get standard rate
$rate = $this->find_rates( $country, $state );
2011-08-09 15:16:18 +00:00
if (isset($rate['shipping']) && $rate['shipping']=='yes') return $rate['rate'];
endif;
else :
// This will be per order shipping - loop through the order and find the highest tax class rate
$found_rates = array();
$found_shipping_rates = array();
// Loop cart and find the highest tax band
if (sizeof($woocommerce->cart->get_cart())>0) : foreach ($woocommerce->cart->get_cart() as $item) :
2011-08-09 15:16:18 +00:00
2011-11-29 00:20:51 +00:00
if ($item['data']->get_tax_class()) :
2011-08-09 15:16:18 +00:00
$found_rate = $this->find_rates( $country, $state, $item['data']->get_tax_class() );
2011-08-09 15:16:18 +00:00
$found_rates[] = $found_rate['rate'];
if (isset($found_rate['shipping']) && $found_rate['shipping']=='yes') $found_shipping_rates[] = $found_rate['rate'];
endif;
endforeach; endif;
if (sizeof($found_rates) > 0 && sizeof($found_shipping_rates) > 0) :
rsort($found_rates);
rsort($found_shipping_rates);
if ($found_rates[0] == $found_shipping_rates[0]) :
return $found_shipping_rates[0];
else :
// Use standard rate
$rate = $this->find_rates( $country, $state );
2011-08-09 15:16:18 +00:00
if (isset($rate['shipping']) && $rate['shipping']=='yes') return $rate['rate'];
endif;
else :
// Use standard rate
$rate = $this->find_rates( $country, $state );
2011-08-09 15:16:18 +00:00
if (isset($rate['shipping']) && $rate['shipping']=='yes') return $rate['rate'];
endif;
endif;*/
2011-08-09 15:16:18 +00:00
return 0; // return false
}
/**
* Calculate the tax using a passed array of rates
2011-08-09 15:16:18 +00:00
*
* @param float price
* @param array rates
* @param bool passed price includes tax
* @return array
2011-08-09 15:16:18 +00:00
*/
function calc_tax( $price, $rates, $price_includes_tax = true ) {
2011-12-29 01:18:59 +00:00
$price = $price * 100; // To avoid float rounding errors, work with integers (pence)
$taxes = array(
'total' => 0,
'has_compound' => false,
'rates' => array()
);
// Stacked taxes
foreach ($rates as $key => $rate) :
if ($rate['compound']=='yes') continue;
if ($price_includes_tax) :
$the_rate = ($rate['rate'] / 100) + 1;
$tax_amount = $price - ( $price / $the_rate);
else :
$tax_amount = $price * ($rate['rate']/100);
endif;
if (!isset($taxes['rates'][$key])) :
$taxes['rates'][$key] = array(
'label' => $rate['label'],
'rate' => $rate['rate'],
'compound' => false,
'total' => 0
);
endif;
2011-12-29 01:18:59 +00:00
// Back to pounds
$tax_amount = ($tax_amount / 100);
// Rounding
if ( get_option( 'woocommerce_tax_round_at_subtotal' ) == 'no' ) :
$tax_amount = round( $tax_amount, 2 );
endif;
$taxes['rates'][$key]['total'] = $taxes['rates'][$key]['total'] + $tax_amount;
$taxes['total'] = $taxes['total'] + $tax_amount;
endforeach;
// Compound taxes
foreach ($rates as $key => $rate) :
if ($rate['compound']=='no') continue;
$taxes['has_compound'] = true;
$the_price_inc_tax = $price + ($taxes['total'] * 100);
if ($price_includes_tax) :
$the_rate = ($rate['rate'] / 100) + 1;
$tax_amount = $the_price_inc_tax - ( $the_price_inc_tax / $the_rate);
else :
$tax_amount = $the_price_inc_tax * ($rate['rate']/100);
endif;
2011-12-29 01:18:59 +00:00
if (!isset($taxes['rates'][$key])) :
$taxes['rates'][$key] = array(
'label' => $rate['label'],
'rate' => $rate['rate'],
'compound' => true,
'total' => 0
);
endif;
2011-08-09 15:16:18 +00:00
2011-12-29 01:18:59 +00:00
// Back to pounds
$tax_amount = ($tax_amount / 100);
// Rounding
$tax_amount = round( $tax_amount, 2 );
2011-08-09 15:16:18 +00:00
2011-12-29 01:18:59 +00:00
$taxes['rates'][$key]['total'] = $taxes['rates'][$key]['total'] + $tax_amount;
$taxes['total'] = $taxes['total'] + $tax_amount;
endforeach;
2011-10-05 23:23:26 +00:00
return $taxes;
2011-08-09 15:16:18 +00:00
}
/**
* Calculate the shipping tax using the final value
*
* @param int Price
* @param int Taxation Rate
* @return int
*/
function calc_shipping_tax( $price, $rate ) {
$rate = round($rate, 4);
$tax_amount = $price * ($rate/100);
return round($tax_amount, 2);
}
}