我想问你一些有助于我解决问题的信息。 我的目的是从Magento数据库中获取每个订单中的特定产品数量(订单必须处于确切的定义状态)。我使用批处理/脚本与Magento分开但使用Mage:app。我不知道我是应该从模型开始(这似乎是合乎逻辑的方法,但在同一时间内很慢)或直接在数据库上工作(这更难)。
感谢您的任何建议。
此致
答案 0 :(得分:3)
查询数据库并不复杂:
SELECT *
FROM sales_flat_order o
LEFT JOIN sales_flat_order_item i ON o.entity_id = i.order_id
WHERE o.status IN ('pending', 'processing')
AND i.product_id = <YOUR_PRODUCT_ID>
结果中的 total_qty_ordered
字段将代表订购数量。
通过模型获取订购商品的数量也不重:
<?php
require_once('app/Mage.php');
umask(0);
Mage::app('default');
$core_resource = Mage::getSingleton('core/resource');
$orders = Mage::getResourceModel('sales/order_collection');
$orders->getSelect()->joinLeft(array('ordered_products' => $core_resource->getTableName('sales/order_item')), 'main_table.entity_id = ordered_products.order_id', array('ordered_products.*'));
$orders->addAttributeToSelect('*')
->addFieldToFilter('status', array('in' => array('pending', 'processing')))
->addAttributeToFilter('main_table.store_id', Mage::app()->getStore()->getId())
->addAttributeToFilter('ordered_products.product_id', array('eq' => '2'));
foreach($orders as $order) {
echo 'Order #' . $order->getId() . ': ' . $order->getData('total_qty_ordered') . '<br/>';
}
第一种方法可能更快,但第二种方法可能是Magneto-Upgrade-Safe。所以你决定使用哪种方法。