Magentoマルチクーポンがカートに適用されます


9

私はカートに複数のクーポンを適用するために2日間働いています。そのために利用できるモジュールがあることを知っています。しかし、私はそれを使いたくない。1つの注文で複数のクーポンコードを適用できるように、カスタムコードが必要です。

助けてください。同じことに取り組んだ後、私はとても疲れています。 ここに画像の説明を入力してください



ところで、あなたの質問は2013年からで、私はちょうど上記のリンク1、と不気味に似ている
ティム・ホールマン

@Tim〜Magentoの従来のメソッドをバイパスして列をsalesテーブルに直接追加する必要があるため、これは最良の方法ではないと思います。私は実際にこれをいじってみました、そして2回の書き換えと数行のコードで、これは簡単に達成できます。また、そのリンクの回答では、2つのコードのみを追加できます。少し答えを投稿します
Shaughn、2015年

@Shaughn plsがコードを投稿します。
Zaheerabbas

私にzipの例を与えるか、より具体的なディレクトリにしてください。ありがとう
alexmalara

回答:


14

カスタムモジュールで、以下を追加しますconfig.xml

<models>
    <salesrule>
        <rewrite>
            <quote_discount>Namespace_Module_Rewrite_SalesRule_Model_Quote_Discount</quote_discount>
        </rewrite>
    </salesrule>
</models>
<frontend>
    <routers>
        <checkout>
            <args>
                <modules>
                    <Namespace_Module before="Mage_Checkout">Namespace_Module_Checkout</Namespace_Module>
                </modules>
            </args>
        </checkout>
    </routers>
</frontend>

最初はMage_SalesRule_Model_Quote_Discounttoの書き換えですNamespace_Module_Rewrite_SalesRule_Model_Quote_Discount

2つ目は過負荷のコントローラーです Mage_Checkout_CartController

次に、次のファイルapp/code/community/Namespace/Module/controllers/Checkout/CartController.php を追加して、次のコードを挿入します。

<?php

require_once 'Mage/Checkout/controllers/CartController.php';

class Namespace_Module_Checkout_CartController extends Mage_Checkout_CartController
{
    /**
     * Initialize coupon
     */
    public function couponPostAction()
    {
        /**
         * No reason continue with empty shopping cart
         */
        if (!$this->_getCart()->getQuote()->getItemsCount()) {
            $this->_goBack();
            return;
        }

        $couponCode = (string) $this->getRequest()->getParam('coupon_code');
        if ($this->getRequest()->getParam('remove') == 1) {
            $couponCode = '';
        }
        $oldCouponCode = $this->_getQuote()->getCouponCode();

        if (!strlen($couponCode) && !strlen($oldCouponCode)) {
            $this->_goBack();
            return;
        }

        try {
            $codeLength = strlen($couponCode);
            $isCodeLengthValid = $codeLength && $codeLength <= Mage_Checkout_Helper_Cart::COUPON_CODE_MAX_LENGTH;

            // Combine multiple coupons
            $couponFlag = true;

            if ($isCodeLengthValid) {
                $del = ',';

                if ($oldCouponCode) {

                    if ($oldCouponCode == $couponCode) {
                        $couponCode = $oldCouponCode;
                    } else {
                        $couponCode = $oldCouponCode . $del . $couponCode;
                    }
                }
            } else {
                $couponCode = '';
            }

            $this->_getQuote()->getShippingAddress()->setCollectShippingRates(true);
            $this->_getQuote()->setCouponCode($couponCode)
                ->collectTotals()
                ->save();

            if ($codeLength) {
                if ($isCodeLengthValid && $couponFlag) {
                    $this->_getSession()->addSuccess(
                        $this->__('Coupon code "%s" was applied.', Mage::helper('core')->escapeHtml($couponCode))
                    );
                } else {
                    $this->_getSession()->addError(
                        $this->__('Coupon code "%s" is not valid.', Mage::helper('core')->escapeHtml($couponCode))
                    );
                }
            } else {
                $this->_getSession()->addSuccess($this->__('Coupon code was canceled.'));
            }

        } catch (Mage_Core_Exception $e) {
            $this->_getSession()->addError($e->getMessage());
        } catch (Exception $e) {
            $this->_getSession()->addError($this->__('Cannot apply the coupon code.'));
            Mage::logException($e);
        }

        $this->_goBack();
    }
}

「、」で区切られたクーポンコードを組み合わせるセクションを追加したことに気づくでしょう。これは明らかにより洗練されている可能性があり、追加のチェックなどを追加する必要があるかもしれませんが、このコードはすぐに機能するはずです。

そして最後に、すべての魔法を行う部分を追加する必要があります。ファイルを追加app/code/community/Namespace/Module/Rewrite/SalesRule/Model/Quote/Discount.php

コンテンツを追加します。

<?php

class Namespace_Module_Rewrite_SalesRule_Model_Quote_Discount extends Mage_SalesRule_Model_Quote_Discount
{
    /**
     * Collect address discount amount
     *
     * @param   Mage_Sales_Model_Quote_Address $address
     * @return  Mage_SalesRule_Model_Quote_Discount
     */
    public function collect(Mage_Sales_Model_Quote_Address $address)
    {
        Mage_Sales_Model_Quote_Address_Total_Abstract::collect($address);
        $quote = $address->getQuote();
        $store = Mage::app()->getStore($quote->getStoreId());
        $this->_calculator->reset($address);

        $items = $this->_getAddressItems($address);
        if (!count($items)) {
            return $this;
        }

        $couponCode = $quote->getCouponCode();
        $couponArray = explode(',',$couponCode);

        foreach ($couponArray as $couponCode) {
            $this->_calculator->init($store->getWebsiteId(), $quote->getCustomerGroupId(), $couponCode);
            $this->_calculator->initTotals($items, $address);

            $eventArgs = array(
                'website_id'        => $store->getWebsiteId(),
                'customer_group_id' => $quote->getCustomerGroupId(),
                'coupon_code'       => $couponCode,
            );

            $address->setDiscountDescription(array());
            $items = $this->_calculator->sortItemsByPriority($items);
            foreach ($items as $item) {
                if ($item->getNoDiscount()) {
                    $item->setDiscountAmount(0);
                    $item->setBaseDiscountAmount(0);
                }
                else {
                    /**
                     * Child item discount we calculate for parent
                     */
                    if ($item->getParentItemId()) {
                        continue;
                    }

                    $eventArgs['item'] = $item;
                    Mage::dispatchEvent('sales_quote_address_discount_item', $eventArgs);

                    if ($item->getHasChildren() && $item->isChildrenCalculated()) {
                        foreach ($item->getChildren() as $child) {
                            $this->_calculator->process($child);
                            $eventArgs['item'] = $child;
                            Mage::dispatchEvent('sales_quote_address_discount_item', $eventArgs);

                            $this->_aggregateItemDiscount($child);
                        }
                    } else {
                        $this->_calculator->process($item);
                        $this->_aggregateItemDiscount($item);
                    }
                }
            }

            /**
             * process weee amount
             */
            if (Mage::helper('weee')->isEnabled() && Mage::helper('weee')->isDiscounted($store)) {
                $this->_calculator->processWeeeAmount($address, $items);
            }

            /**
             * Process shipping amount discount
             */
            $address->setShippingDiscountAmount(0);
            $address->setBaseShippingDiscountAmount(0);
            if ($address->getShippingAmount()) {
                $this->_calculator->processShippingAmount($address);
                $this->_addAmount(-$address->getShippingDiscountAmount());
                $this->_addBaseAmount(-$address->getBaseShippingDiscountAmount());
            }

            $this->_calculator->prepareDescription($address);
        }

        return $this;
    }
}

基本的に、これは、クーポンの破損、各クーポンコードのループ、見積もり合計の計算と更新を行います。

テストするために、2つのショッピングカートルールを設定しました。

  • テスト1-10%の製品価格割引-追加のルール処理の停止:いいえ
  • テスト2-10%の製品価格割引-さらなるルール処理の停止:いいえ

クーポンなし: クーポンなし

クーポンテスト1を追加しました。 クーポンテストを追加しました1

クーポンテスト2を追加 クーポンテストを追加しました1

私は定額割引でテストしましたが、これも期待どおりに機能します。

そして、私が言ったように、おそらく重複のために追加のチェックを追加する必要があるかもしれませんが、ここから始めます。フロントエンドの場合、コードを分割するロジックを追加できますが、好きなようにしたり、そのままにしたりできます。


また、言及するのを忘れて、あなたは明らかになど、あなたの実際のモジュール名と名前空間/モジュールを交換する必要があるだろう
Shaughn

この回答を編集すると、上記のスクリーンショットのように機能します。複数のクーポンを適用した後に特定のクーポンをキャンセルするにはどうすればよいですか。
Zaheerabbas、2015年

Shaughnの回答に感謝します。magento1.9では動作しましたが、ver 1.8では動作しませんでした。ブラウザに何も表示されず、apache error.log(magento error / system.logではありません) )
Haris

ちょっとサダム、メモリの問題はおそらく多くの問題の1つですが、あなたができることは、try catchブロックにコードをラップし、発生したエラーをログに記録することです。また、phpの最大メモリ設定を確認し、十分なメモリがあることを確認してください利用可能です。ループの直前に、クーポンコードをカウントして、メモリにロードされているものがあると思うので、その数を確認できます。
Shaughn、2015

1
同じクーポンコードの複数使用を簡単に防ぐには、array_unique $ couponArray = array_unique(explode( '、'、$ couponCode));を使用するだけです。
ジュリアン
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.