74 lines
2.2 KiB
PHP
Executable File
74 lines
2.2 KiB
PHP
Executable File
<?php
|
|
|
|
namespace Thelia\Model;
|
|
|
|
use Thelia\Exception\TaxEngineException;
|
|
use Thelia\Model\Base\Tax as BaseTax;
|
|
use Thelia\Model\Tools\ModelEventDispatcherTrait;
|
|
use Thelia\TaxEngine\TaxType\BaseTaxType;
|
|
|
|
class Tax extends BaseTax
|
|
{
|
|
use ModelEventDispatcherTrait;
|
|
|
|
public function calculateTax($amount)
|
|
{
|
|
if(false === filter_var($amount, FILTER_VALIDATE_FLOAT)) {
|
|
throw new TaxEngineException('BAD AMOUNT FORMAT', TaxEngineException::BAD_AMOUNT_FORMAT);
|
|
}
|
|
|
|
$rate = $this->getRate();
|
|
|
|
if($rate === null) {
|
|
return 0;
|
|
}
|
|
|
|
return $amount * $rate * 0.01;
|
|
}
|
|
|
|
public function getTaxRuleCountryPosition()
|
|
{
|
|
try {
|
|
$taxRuleCountryPosition = $this->getVirtualColumn(TaxRuleQuery::ALIAS_FOR_TAX_RULE_COUNTRY_POSITION);
|
|
} catch(PropelException $e) {
|
|
throw new PropelException("Virtual column `" . TaxRuleQuery::ALIAS_FOR_TAX_RULE_COUNTRY_POSITION . "` does not exist in Tax::getTaxRuleCountryPosition");
|
|
}
|
|
|
|
return $taxRuleCountryPosition;
|
|
}
|
|
|
|
public function getTypeInstance()
|
|
{
|
|
$class = '\\Thelia\\TaxEngine\\TaxType\\' . $this->getType();
|
|
|
|
/* test type */
|
|
if(!class_exists($class)) {
|
|
throw new TaxEngineException('Recorded type `' . $class . '` does not exists', TaxEngineException::BAD_RECORDED_TYPE);
|
|
}
|
|
|
|
$instance = new $class;
|
|
|
|
if(!$instance instanceof BaseTaxType) {
|
|
throw new TaxEngineException('Recorded type `' . $class . '` does not extends BaseTaxType', TaxEngineException::BAD_RECORDED_TYPE);
|
|
}
|
|
|
|
return $instance;
|
|
}
|
|
|
|
public function setRequirements($requirements)
|
|
{
|
|
return parent::setSerializedRequirements(base64_encode(json_encode($requirements)));
|
|
}
|
|
|
|
public function getRequirements()
|
|
{
|
|
$requirements = json_decode(base64_decode(parent::getSerializedRequirements()), true);
|
|
|
|
if(json_last_error() != JSON_ERROR_NONE || !is_array($requirements)) {
|
|
throw new TaxEngineException('BAD RECORDED REQUIREMENTS', TaxEngineException::BAD_RECORDED_REQUIREMENTS);
|
|
}
|
|
|
|
return $requirements;
|
|
}
|
|
}
|