[*] BO : Taxes are now historized

[*] BO : Taxes are no longer stored in the order details row



git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@8556 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
fBrignoli
2011-09-14 09:06:20 +00:00
parent 578d6de4b9
commit facb2318e5
14 changed files with 439 additions and 217 deletions
+4 -1
View File
@@ -37,7 +37,10 @@ class VATNumberTaxManager implements TaxManagerInterface
public function getTaxCalculator()
{
// No tax
return new TaxCalculator(array(0));
$tax = new Tax();
$tax->rate = 0;
return new TaxCalculator(array($tax));
}
}