* @copyright 2007-2014 PrestaShop SA * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) * International Registered Trademark & Property of PrestaShop SA */ class VATNumberTaxManager implements TaxManagerInterface { public static function isAvailableForThisAddress(Address $address) { return (!empty($address->vat_number) && $address->id_country != Configuration::get('VATNUMBER_COUNTRY') && 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)); } }