Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
以下の要件でルールを作成したい:
商品A --- 特別価格なし --- クーポンコード利用可
商品B --- 特別価格 --- クーポンコード使用不可
商品 A + 商品 B ----- 商品 A は割引なし、商品 B は割引 ---- クーポンは商品 A のみに適用されます
ヒントをください。
ありがとう
app\code\core\Mage\Sales\Model\Quote\Address\Total
の割引.php
$items = $address->getAllItems();
あなたはすべてのアイテムを手に入れることができ、
foreach ($items as $item) {
ループ内で商品の状態を確認できます
その後、拡張機能で割引.php のこのモデルを書き換えることができます。