我需要为商店中的选定产品添加自定义属性。为此,我使用了 Model_Price_Observer。我正在使用 Magento 1.7。到目前为止,我可以添加自定义属性,但计算出的价格是错误的 - 缺少税收。
我的代码是(部分):
$quote_item->getProduct()->setIsSuperMode(true);
$quote_item->setOriginalCustomPrice( $customprice );
$quote_item->setCustomPrice( $customprice );
$quote_item->setTaxAmount($taxAmount);
$quote_item->setBaseTaxAmount($taxAmount);
任何想法我做错了什么?
我使用正确的触发器吗?