VirtueMart Forum

VirtueMart 2 + 3 + 4 => Virtuemart Development and bug reports => Topic started by: j_vovus on March 01, 2012, 13:07:09 PM

Title: [BUG] Every tax_id is "0" in cart object
Post by: j_vovus on March 01, 2012, 13:07:09 PM
Hi
If you'll look on $cart object in plgVmConfirmedOrder method you'll see that every tax_id element is zero, although in $method objects for every plugin tax_id is correct.
This happens because in /administrator/components/com_virtuemart/plugins/vmpsplugin.php::onSelectedCalculatePrice zero assigned to $cart_prices[$this->_psType . "_tax_id"]
It should be $cart_prices[$this->_psType . "_tax_id"] = $method->tax_id;
Title: Re: every tax_id is "0" in cart object
Post by: j_vovus on March 01, 2012, 13:34:19 PM
Plus following bug http://forum.virtuemart.net/index.php?topic=98423.0 that VM developers are successfully ignoring.
Title: Re: [BUG] Every tax_id is "0" in cart object
Post by: j_vovus on March 12, 2012, 13:38:04 PM
up