在我的结帐页面(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);
希望对您有所帮助!