0

我在管理产品选择的magento后端添加了一个名为frontend_price的新属性。

在这个属性的值中,想得到产品的价格并将其与增值税和货币相乘。只是在后端设置产品的前端价格,而不是存储到数据库的任何表中,没什么特别的。此属性仅用于内部 porpose,因此它不必在前端可见。

我在想:

Mage::app()->loadAreaPart(Mage_Core_Model_App_Area::AREA_FRONTEND,Mage_Core_Model_App_Area::PART_EVENTS);
$currencyrate = Mage::app()->getStore()->getCurrentCurrencyRate(); 
$price_normal = $_product->getPrice();
$_product->getResource()->getAttribute('frontend_price')->getFrontend()->getValue($_product) = $price_normal*$currencyrate*1.24;

不幸的是,我不知道在哪里实现此代码以在后端查看它。任何想法编辑后端产品选择页面的页面。

谢谢你。

4

0 回答 0