Magento 1.4 - 获取最畅销产品的数量

发布于 2024-10-02 03:22:01 字数 157 浏览 2 评论 0原文

我可以使用什么 php/magento 代码来获取最畅销的产品并显示该产品的名称。

例如,假设我已售出 10 个 Foos、20 个 Bars 和 50 个 Bazes。我想知道如何查询 Magento 系统并让它说“Bazes”是高销量产品(有 50 个)。

感谢您

What is the php/magento code I can use to get the best selling products and display that name of the product.

For example, say I've sold 10 Foos, 20 Bars and 50 Bazes. I want to know how to query the Magento system and have it say "Bazes" are the high selling products (with 50).

Thanks you

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

岁月无声 2024-10-09 03:22:01

报告有点奇怪,因为它们是使用没有父模型的集合来实现的。尝试以下操作

$c = Mage::getResourceModel('sales/report_bestsellers_collection');         
foreach($c as $item)
{
    var_dump($item->getData());
}

Reports are a little weird, as they're implemented using collections that don't have a parent model. Try the following

$c = Mage::getResourceModel('sales/report_bestsellers_collection');         
foreach($c as $item)
{
    var_dump($item->getData());
}
是伱的 2024-10-09 03:22:01

Magento 管理员已经有了这个。

  • 转到菜单“报告”>“报告”产品展示>畅销书。
  • 将“起始”日期设为过去的某个时间,例如 1 月 1 日。
  • 将“截止”日期定为今天或将来的某个时间。
  • 将“显示依据”更改为“年份”,然后单击“刷新”。

Magento admin already has this.

  • Go to the menu Reports > Products > Bestsellers.
  • Make the "From" date sometime in the past, like January 1st.
  • Make the "To" date today or sometime in the future.
  • Change "Show by" to "Year" and click Refresh.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文