Php Magento总订单数量

Php Magento总订单数量,php,magento,orders,Php,Magento,Orders,在我的结账页面(Magento 1.7.0.2)上,我想显示我们已经向客户发送了多少个包裹 是否有人知道如何打印所有订单的数量(所有时间) 我希望有人能用一行代码解决这个问题。:) 谢谢你的建议 您可以使用下面的SQL查询获取所有订购数量: $read = Mage::getSingleton('core/resource')->getConnection('core_read'); $sql="SELECT sum(total_qty_ordered) total_ordered_qua

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

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

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


谢谢你的建议

您可以使用下面的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);

希望它能帮助你

是否要显示所有订购项目的数量?或订单总数??