kernel/classes/vathandlers/ezdefaultvathandler.php
\eZDefaultVATHandler
Methods

chooseVatType(
$productCategory, $country
)
:
voidChoose the best matching VAT type for given product category and country.
We calculate priority for each VAT type and then choose the VAT type having the highest priority (or first of those having the highest priority).
VAT type priority is calculated from county match and category match as following:
CountryMatch = 0 CategoryMatch = 1
if ( there is exact match on country ) CountryMatch = 2 elseif ( there is weak match on country ) CountryMatch = 1
if ( there is exact match on product category ) CategoryMatch = 2 elseif ( there is weak match on product category ) CategoryMatch = 1
if ( there is match on both country and category ) VatTypePriority = CountryMatch * 2 + CategoryMatch - 2 else VatTypePriority = 0
\private \static
| Name | Type | Description |
|---|---|---|
| $productCategory | ||
| $country |

getProductCategory(
$object
)
:
voidDetermine object's product category.
\private \static
| Name | Type | Description |
|---|---|---|
| $object |