如何划分所有价格,让我们说3为Magento的客户群

时间:2014-05-08 05:15:02

标签: magento

我目前正在显示Magento的零售价格。

我想显示批发客户群的不同价格,我想将所有价格除以3,以显示批发客户群中的登录用户。

有什么想法吗?

2 个答案:

答案 0 :(得分:0)

您可以简单地为magento后端的每个产品添加明确的客户群价格

转到产品>>价格标签

您将看到群组价格选项在您的案例中选择您的群组为批发组添加价格,然后为一般用户添加您的其他价格。

答案 1 :(得分:0)

好的,我就是这样做的。

我发现此扩展价格因素http://www.magentocommerce.com/magento-connect/price-factor.html将价格乘以您指定的任何数字。

然后从扩展文件/app/code/community/Psquared/PriceFactor/Model/Observer.php

我添加了一些代码

$customer = $observer->getEvent()->getCustomer();
    //$customer_group_id=$customer->getCustomerGroupId();
    $customer_group_id = Mage::getSingleton('customer/session')->getCustomerGroupId(); 
if ($customer_group_id!=2)
{

    // code of the default if statements

}