Magento仅限产品选择属性?

时间:2011-09-12 13:30:28

标签: magento attributes product

您好我正在开发一个外部应用程序,它会显示magento商店中的所有订购商品。

显示已订购产品属性的查询是:

   select group_concat(distinct(b.value) separator '<br/>') from catalog_product_entity_varchar a , eav_attribute_option_value b  , eav_attribute c 
    where a.value = b.option_id
    and c.attribute_id =  a.attribute_id
    and c.is_user_defined = 1
    and a.entity_id = PRODUCT_ID

这是针对类型为VARCHAR的属性,我使用相同的查询来获取int和text的属性。我只是将表名从catalog_product_entity_varchar更改为catalog_product_entity_int和catalog_product_entity_text。

我遇到的问题是我获取所有产品属性,制造商,供应商......并且由于我们有很多商店,我不想用额外的sql where子句检索所有附加属性!< / p>

任何只获取选定属性的解决方案?

1 个答案:

答案 0 :(得分:0)

下面将使用PHP获取集合。您只需更改您选择的属性即可。通过添加 - &gt; addOrderedQty,它允许获取有序数量的能力。现在我知道您正在使用外部应用程序。我发布这个的原因是你可以将Mage.php加载到你的应用程序中并直接使用它,或者你可以运行一次并在数据库中查看查询,然后使用该查询来完成你想要的。

$visibility = array( 
                      Mage_Catalog_Model_Product_Visibility::VISIBILITY_BOTH, 
                      Mage_Catalog_Model_Product_Visibility::VISIBILITY_IN_CATALOG 
                  ); 

$_productCollection = Mage::getResourceModel('reports/product_collection') 
                              ->addAttributeToSelect('*') 
                              ->addOrderedQty() 
                              ->addAttributeToFilter('visibility', $visibility) 
                              ->setOrder('ordered_qty', 'desc');