質問

I need to get the collection using custom product Ids but it should sort the collection based on the sequence product Ids given

Here is what I am doing now, but it is not sorting in sequence

$collection->addAttributeToFilter('entity_id', array('in' => $productIdsarray));

Any help would be appreciated

役に立ちましたか?

解決

You just need to add order along with your addAttributeToFilter

$collection->addAttributeToFilter('entity_id', array('in' => $productIdsarray ));
$collection->getSelect()->order(new \Zend_Db_Expr("FIELD(e.entity_id, ".implode(",",$productIdsarray).")"));

他のヒント

You have to add addAttributeToSort() to your collection

addAttributeToSort('entity_id')

Code May be Like

$collection->addAttributeToFilter('entity_id', array('in' => $productIdsarray));
$collection->addAttributeToSort('entity_id');
ライセンス: CC-BY-SA帰属
所属していません magento.stackexchange
scroll top