ดูเหมือนว่าจะสั่งไม่ถูกต้องมีสิ่งใดที่ฉันทำผิดหรือเปล่า ข้อเสนอแนะ?
$componentQuantityCollection = Mage::getModel('catalog/product')->getCollection();
$componentQuantityCollection->joinField('qty',
'cataloginventory/stock_item',
'qty',
'product_id=entity_id',
'{{table}}.stock_id=1',
'left');
$componentQuantityCollection->addAttributeToFilter('sku', array('in' => $componentSkus))->setOrder('sku','ASC');
คอลเล็กชันอื่นที่ดูเหมือนจะไม่เรียงลำดับซึ่งแตกต่างจากคอลเล็กชันแรก:
$kitCollection = Mage::getModel('kitinventory/kitinventory')->getCollection()->addFieldToFilter('kit_sku', $sku)->setOrder('related_sku', 'DESC');