我需要显示具有团体价格的产品。 到目前为止我的是这个。
首先我加载产品系列。
<?php
$_productCollection=$this->getLoadedProductCollection();
$_collectionSize = $_productCollection->count();
?>
然后,我只检查两件事。如果用户已登录,则为客户组。
<?php if(Mage::getSingleton('customer/session')->isLoggedIn()){
// Get group Id
$groupId = Mage::getSingleton('customer/session')->getCustomerGroupId();
//Get customer Group name
$group = Mage::getModel('customer/group')->load($groupId);
$var_customer_group = $group->getCode();
$product = Mage::getModel('catalog/product')->load($productId);
}?>
<?php if ($var_customer_group == "Wholesale")
{ ?>
我用我的产品建立一个清单。
<ul>
<?php foreach ($_productCollection as $_product): ?>
<li>
</li>
<?php endforeach ?>
</ul>
<?php } ?>
如何查看$_productCollection
哪些产品具有团体价格。
任何帮助将不胜感激!
答案 0 :(得分:0)
我设法得到了我的要求。如果你开始在盒子外面思考,那实际上非常简单。 我将提供代码来帮助其他人解决同样的问题。
首先,添加产品集合。
<?php
$_productCollection=$this->getLoadedProductCollection();
$_collectionSize = $_productCollection->count();
?>
然后,
<?php foreach ($_productCollection as $_product): ?>
<?php $product_id = $_product->getId();
$arrayofproductsID = Mage::getModel('catalog/product')->load($product_id);
$groupPrices = $arrayofproductsID->getData('group_price');
?>
<?php if(($groupPrices[0][price])) { ?> <-- //Here happens the check if there is a group price.
<li> ... </li>
<?php } ?>
<?php endforeach ?>