我花了很多小時來解決這個問題,但我沒有得到它:( 我需要一個特殊類別的所有訂購物品的選擇。我如何過濾收集例如categoryId'44'?Magento:如何按特定類別過濾集合(銷售/訂單)?
這裏我的代碼:
<?php
require_once '/home/web/public_html/app/Mage.php';
Mage::app();
//$_category = Mage::getModel('catalog/category')->load($category_id);
$salesCollection = Mage::getModel("sales/order")->getCollection();
echo $salesCollection->getSelect();
foreach ($salesCollection as $order) {
$items = $order->getAllItems();
... ?>
謝謝大家對我的幫助, 最好,裏克