在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å varen samt resten af ordren</span><br>";
}
祝你好运, 的Jesper
答案 0 :(得分: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
}
}