2

在 Magento 结帐/购物车中,我想检查是否将来自六个特定属性集的产品添加到 Magento 购物车中。

我已经创建了下面的函数来检查这些属性集名称的产品视图页面,但是我如何对结帐/购物车中的项目进行相同的检查?

$attribute_set = Mage::getModel('eav/entity_attribute_set')->load( $_product->getAttributeSetId() ); 
$attributeset_name = $attribute_set->getAttributeSetName();
if ($attributeset_name =="Sko" or $attributeset_name =="beklaedning" or $attributeset_name =="Banz_solhat" or $attributeset_name =="Soltoj" or $attributeset_name =="solhat" or $attributeset_name =="fodtoj") { 
    echo "<b>Fragt</b>: <span style='color:red'>Fri Fragt p&aring; varen samt resten af ordren</span><br>"; 
}

最好的问候,杰斯珀

4

1 回答 1

4
$attributeSetNames = array('Sko', 'beklaedning', 'Banz_solhat', 'Soltoj', 'solhat', 'fodtoj');

$quote = Mage::getSingleton('checkout/session')->getQuote();
$itemCollection = Mage::getModel('sales/quote_item')->getCollection();
$itemCollection->getSelect()
    ->joinLeft( 
        array('cp' => Mage::getSingleton('core/resource')->getTableName('catalog/product')), 
        'cp.entity_id = main_table.product_id', 
        array('cp.attribute_set_id'))
    ->joinLeft( 
        array('eas' => Mage::getSingleton('core/resource')->getTableName('eav/attribute_set')), 
        'cp.attribute_set_id = eas.attribute_set_id', 
        array('eas.attribute_set_name'))
;
$itemCollection->setQuote($quote);

foreach($itemCollection as $item) {
    if (in_array($item->getData('attribute_set_name'), $attributeSetNames)) {
       //... Match
    }
}

或者……

使用属性集 ID 而不是名称。这将避免任何潜在的措辞问题,并稍微清理代码......

$attributeSetIds = array(1, 2, 3, 4, 5, 6);

$quote = Mage::getSingleton('checkout/session')->getQuote();
$itemCollection = Mage::getModel('sales/quote_item')->getCollection();
$itemCollection->getSelect()
    ->joinLeft( 
        array('cp' => Mage::getSingleton('core/resource')->getTableName('catalog/product')), 
        'cp.entity_id = main_table.product_id', 
        array('cp.attribute_set_id'))
;
$itemCollection->setQuote($quote);

foreach($itemCollection as $item) {
    if (in_array($item->getData('attribute_set_id'), $attributeSetIds)) {
       //... Match
    }
}
于 2012-09-09T16:01:37.847 回答