* @copyright 2007-2011 PrestaShop SA * @version Release: $Revision$ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * International Registered Trademark & Property of PrestaShop SA */ class VATNumberTaxManager implements TaxManagerInterface { public static function isAvailableForThisAddress(Address $address) { return (!empty($address->vat_number) AND $address->id_country != Configuration::get('VATNUMBER_COUNTRY') AND Configuration::get('VATNUMBER_MANAGEMENT')); } public function getTaxCalculator() { // If the address matches the european vat number criterias no taxes are applied $tax = new Tax(); $tax->rate = 0; return new TaxCalculator(array($tax)); } }