作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试通过覆盖 Catalog/Product/List.php 使用当前产品集合检索畅销产品
<?php
if($this->getRequest()->getParam('best')==1){
$this->_productCollection->getSelect()
->joinLeft(array('items'=>'sales_flat_order_item'), "items.product_id = e.entity_id", array('count'=>'SUM(qty_ordered)'))
->group('e.entity_id');
$this->_productCollection->getSelect()->having('SUM(items.qty_ordered) > ?',0);
return $this->_productCollection;
}
?>
使用上面的代码我收到以下 SQL 错误,该错误是由于having子句引起的,我如何在上面的代码中使用 havinh 子句来避免结果行具有 qty_ordered<1
SQLSTATE[42S22]: Column not found: 1054 Unknown column 'items.qty_ordered' in 'having clause'
最佳答案
如果您只是想获得最畅销的产品
$storeId = Mage::app()->getStore()->getId();
$products = Mage::getResourceModel('reports/product_collection')
->addOrderedQty()
->addAttributeToSelect(array('name', 'price', 'small_image')) //edit to suit tastes
->setStoreId($storeId)
->addStoreFilter($storeId)
->setOrder('ordered_qty', 'desc'); //best sellers on top
Mage::getSingleton('catalog/product_status')->addVisibleFilterToCollection($products);
Mage::getSingleton('catalog/product_visibility')->addVisibleInCatalogFilterToCollection($products);
print_r($products->getData());
关于玛根托 : get best selling products based on the current product collection,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13258371/
我是一名优秀的程序员,十分优秀!