[-] FO: Fix some tax_display_method value for not default customer group

This commit is contained in:
Rémi Gaillard
2012-12-06 16:38:31 +01:00
parent 276696dd6c
commit 56819e3573
3 changed files with 6 additions and 13 deletions
+1 -3
View File
@@ -154,7 +154,6 @@ class CartCore extends ObjectModel
$customer = Context::getContext()->customer;
else
$customer = new Customer((int)$this->id_customer);
$this->_taxCalculationMethod = Group::getPriceDisplayMethod((int)$customer->id_default_group);
if ((!$this->secure_key || $this->secure_key == '-1') && $customer->secure_key)
{
@@ -162,8 +161,7 @@ class CartCore extends ObjectModel
$this->save();
}
}
else
$this->_taxCalculationMethod = Group::getDefaultPriceDisplayMethod();
$this->_taxCalculationMethod = Group::getPriceDisplayMethod(Group::getCurrent()->id);
}