Không có chức năng sắp xếp theo
bởi vì getAllItems
đến từ array
đối tượng và theo tôiconcept you cannot sort this by field.
public function getAllItems()
{
$items = array();
foreach ($this->getItemsCollection() as $item) {
if (!$item->isDeleted()) {
$items[] = $item;
}
}
return $items;
}
Trong trường hợp này, bạn có thể sử dụng getItemsCollection().
sau đó sử dụng sắp xếp chức năng seOrder theo bất kỳ Trường nào
$items=$quote->getItemsCollection()->setOrder('updated_at', 'desc');
foreach ($items as $item) {
if (!$item->isDeleted()) {
//Do your code $item
}
}
Biên tập:
Viết lại lớp Mage_Sales_Model_Quote
Nó sẽ tốt hơn để viết lại lớp Mage_Sales_Model_Quote
. Trong cuộc gọi này magento là called getAllItems()
chức năng và g etItemsCollection() function
đáp ứng chính để có được tất cả các mục.
<global>
<models>
<magento65343>
<class>StackExchange_Magento65343_Model</class>
<resourceModel>magento65343_mysql4</resourceModel>
</magento65343>
<sales>
<rewrite>
<quote>StackExchange_Magento65343_Model_Sales_Quote</quote>
</rewrite>
</sales>
</models>
Viết lại lớp:
<?php
class StackExchange_Magento65343_Model_Sales_Quote extends Mage_Sales_Model_Quote
{
}
Sử dụng hàm setOrder () để Sắp xếp:
Hàm setOrder () sắp xếp bộ sưu tập mục theo các trường
<?php
class StackExchange_Magento65343_Model_Sales_Quote extends Mage_Sales_Model_Quote
{
public function getItemsCollection($useCache = true)
{
if ($this->hasItemsCollection()) {
return $this->getData('items_collection');
}
if (is_null($this->_items)) {
$this->_items = Mage::getModel('sales/quote_item')->getCollection()->setOrder('updated_at', 'desc');
$this->_items->setQuote($this);
}
return $this->_items;
}
}