在magento后端添加空白属性并使用php计算值

时间:2013-10-10 09:31:33

标签: php magento attributes

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

在此属性的值中,您希望获得产品的价格,并将其与增值税和货币相乘。没有什么可以只是在后端获得产品的前端价格,但没有存储到数据库的任何表中。 此属性仅用于内部参数,因此不必在前端显示。

我在想:

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;

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

谢谢。

0 个答案:

没有答案