magento 中每种产品的总销售额

发布于 2024-11-03 04:06:14 字数 29 浏览 1 评论 0原文

如何获得magento中每种产品的总销售额?

How to get the total sales of each product in magento?

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

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

发布评论

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

评论(1

盗琴音 2024-11-10 04:06:15

正如艾伦指出的那样,有多种不同的方法可以确定产品的销售资格。

但要开始使用,一个简单的方法是使用报告模块。

/** @var Mage_Report_Model_Mysql4_Product_Sold_Collection **/
$report = Mage::getResourceModel('report/product_sold_collection');

如果需要,您可以设置日期范围或其他条件。一旦你有了你的集合,只需迭代它,就像这样:

foreach ($report AS $product) {
    echo $product->getOrderedQty();
}

还有其他方法可以做到这一点,但这应该是一个起点。

As Alan pointed out there's a number of different ways to qualify sales for a product.

But to get you started an easy way is to use the reporting module.

/** @var Mage_Report_Model_Mysql4_Product_Sold_Collection **/
$report = Mage::getResourceModel('report/product_sold_collection');

You can set a date range or other criteria if you want. Once you have your collection just iterate over it, something like this:

foreach ($report AS $product) {
    echo $product->getOrderedQty();
}

There are other ways to do this too, but this should be a starting point.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文