Magento总订单数量

时间:2013-10-20 10:36:31

标签: php magento orders

在我的结帐页面(Magento 1.7.0.2)上,我想展示我们已经向客户发送了多少包裹。

有没有人知道如何打印所有订单的数量(所有时间)

我希望有人能用一行代码来解决这个问题。 :)

谢谢你的建议!

1 个答案:

答案 0 :(得分:1)

您可以使用以下SQL查询获取所有订购数量:

$read = Mage::getSingleton('core/resource')->getConnection('core_read');
$sql="SELECT sum(total_qty_ordered) total_ordered_quantity FROM `sales_flat_order` where state!='canceled'";
$data = $read->fetchRow($sql);
echo round($data['total_ordered_quantity'],0);

希望它会对你有所帮助!