私は実際に3つの可能な値「Frühjahr/Sommer」、「Herbst/Winter」、「」(空)を持つカスタム製品属性を持っています。
この値で製品コレクションを事前定義された順序で並べ替えたいと考えています。
これは交互です。空の値は常に最後にある必要がありますが、さらに値が来る可能性があるため、事前に定義された固定の順序である必要があります。
次の MySQL ORDER BY FIELD (saison、"Frühjahr/Sommer"、"Herbst/Winter"、"") を実行する必要があります。
問題は、Magento でこのコマンドを実行する方法がわからないことです。「->setOrder」メソッドは知っていますが、DESC や ASC を使用する代わりに固定順序をコミットする必要があります。
私はstackoverflowとgoogleでよく検索しますが、これまでのところ答えがありません.
あなたが私を助けてくれることを願っています
ありがとう
[magalter の回答に応答して編集]
残念ながら、私は以前に試しましたがうまくいきません:
$this->_collection->getSelect()->order(new Zend_Db_Expr("FIELD(season, 'Frühjahr/Sommer','Herbst/Winter','')"));
結果は「リクエストの処理中にエラーが発生しました。
$this->_collection->getSelect();
戻る:
SELECT `e`.*, `cat_index`.`position` AS `cat_index_position`, `price_index`.`price`, `price_index`.`tax_class_id`, `price_index`.`final_price`, IF(price_index.tier_price IS NOT NULL, LEAST(price_index.min_price, price_index.tier_price), price_index.min_price) AS `minimal_price`, `price_index`.`min_price`, `price_index`.`max_price`, `price_index`.`tier_price` FROM `catalog_product_entity` AS `e` INNER JOIN `catalog_category_product_index` AS `cat_index` ON cat_index.product_id=e.entity_id AND cat_index.store_id=1 AND cat_index.visibility IN(2, 4) AND cat_index.category_id='124' INNER JOIN `catalog_product_index_price` AS `price_index` ON price_index.entity_id = e.entity_id AND price_index.website_id = '1' AND price_index.customer_group_id = 0 ORDER BY FIELD(season, 'Frühjahr/Sommer','Herbst/Winter','')
この sql-statement を phpMyAdmin で実行すると、次のエラー メッセージが表示されます。
「季節」で注文する場合 DESC
$this->_collection->setOrder('season', 'DESC');
それは動作します...そして、次のSQLステートメントを生成します
SELECT `e`.*, `cat_index`.`position` AS `cat_index_position`, `price_index`.`price`, `price_index`.`tax_class_id`, `price_index`.`final_price`, IF(price_index.tier_price IS NOT NULL, LEAST(price_index.min_price, price_index.tier_price), price_index.min_price) AS `minimal_price`, `price_index`.`min_price`, `price_index`.`max_price`, `price_index`.`tier_price`, IF(season_option_value_t2.value_id IS NULL, season_option_value_t1.value, season_option_value_t2.value) AS `season` FROM `catalog_product_entity` AS `e` INNER JOIN `catalog_category_product_index` AS `cat_index` ON cat_index.product_id=e.entity_id AND cat_index.store_id=1 AND cat_index.visibility IN(2, 4) AND cat_index.category_id='124' INNER JOIN `catalog_product_index_price` AS `price_index` ON price_index.entity_id = e.entity_id AND price_index.website_id = '1' AND price_index.customer_group_id = 0 LEFT JOIN `catalog_product_entity_int` AS `season_t1` ON e.entity_id=season_t1.entity_id AND season_t1.attribute_id='180' AND season_t1.store_id=0 LEFT JOIN `catalog_product_entity_int` AS `season_t2` ON e.entity_id=season_t2.entity_id AND season_t2.attribute_id='180' AND season_t2.store_id='1' LEFT JOIN `eav_attribute_option_value` AS `season_option_value_t1` ON season_option_value_t1.option_id=IF(season_t2.value_id > 0, season_t2.value, season_t1.value) AND season_option_value_t1.store_id=0 LEFT JOIN `eav_attribute_option_value` AS `season_option_value_t2` ON season_option_value_t2.option_id=IF(season_t2.value_id > 0, season_t2.value, season_t1.value) AND season_option_value_t2.store_id=1 ORDER BY `season` DESC
しかし、これはDESCによる注文であり、私が欲しいような事前定義された順序ではなく、使用できません。
私が必要とするのは、上記のSQLステートメントです
ORDER BY FIELD(season, 'Frühjahr/Sommer','Herbst/Winter','')
代わりは
ORDER BY `season` DESC
別のアイデア???