Skip to content

magento2.3

Auto Added by WPeMatico

Magento2.4.2: how to add sort order filter in order collection?

I’m trying to add sort order filter in my order collection as you can see in this piece of code $collection = $this->orderCollectionFactory->create() ->addAttributeToSelect(‘*’) ->addAttributeToFilter(‘created_at’, array(‘from’ => $from, ‘to’ => $to)) ->addAttributeToFilter(“consignment_status”, $orderStatus, “eq”) ->addAttributeToFilter(“status”, $statusToGet, “in”) ->setPageSize($this->_consignmentHelper->getGeneralPageSize()) ->setOrder(‘entity_id’, ‘DESC’)… Read More »Magento2.4.2: how to add sort order filter in order collection?