Magento:根据任何属性和组产品对购物车产品/物品进行分类

时间:2014-02-10 13:19:53

标签: magento sorting cart

我想在购物车页面中对任何属性(如)和产品明智的产品进行排序。 有人知道吗?请告诉我。

谢谢, HS

1 个答案:

答案 0 :(得分:1)

您可以在购物车模板中执行此类操作:

$cartItems = Mage::getModel('sales/quote_item')->getCollection()
   ->setQuote($this->getQuote())
   ->addFieldToSelect('name')
   ->addOrder('name', 'asc'); //change acc to your attribute

$items = array();
foreach ($cartItems as $item) {
if (!$item->isDeleted() && !$item->getParentItemId()) {
   $items[] = $item;
}