私はこれを持っています:
$this->_productCollection = $layer->getProductCollection() ->addAttributeToSort('special_price', 'desc');
私は次のようなことをしたい:
$this->_productCollection = $layer->getProductCollection() ->addAttributeToSort('special_price*100/price', 'desc');
実際、プロモーション/セールのパーセンテージはデータベースに保存されていません。しかし、このパーセンテージで注文したい (Mage Core または SQL を使用)。そのようにすることはできますか、それとも php を使用する必要がありますか?
Select をカスタマイズしようとしましたが、うまくいきませんでした
ありがとう