Magento คูปองหลายใบบนรถเข็น


9

ฉันทำงานเป็นเวลา 2 วันในการสมัครคูปองหลายใบบนตะกร้าฉันรู้ว่ามีโมดูลที่พร้อมให้บริการ แต่ฉันไม่ต้องการใช้ ฉันต้องการรหัสที่กำหนดเองเพื่อให้ฉันสามารถใช้รหัสคูปองมากกว่า 1 ใบในการสั่งซื้อครั้งเดียว

กรุณาช่วย. ฉันเหนื่อยมากหลังจากทำงานในสิ่งเดียวกัน ป้อนคำอธิบายรูปภาพที่นี่



Btw คำถามของคุณคล้ายกับคำถามที่ฉันเพิ่งเชื่อมโยงข้างต้นซึ่งมาจากปี 2013
Tim Hallman

@Tim ~ ​​ฉันไม่คิดว่าเป็นวิธีที่ดีที่สุดเนื่องจากมันเกี่ยวข้องกับการเพิ่มคอลัมน์ลงในตารางการขายโดยตรงโดยไม่ผ่านวิธีการทั่วไปของ Magento ตอนนี้ฉันได้ลองเล่นกับมันแล้วและด้วย 2 rewrites และโค้ดไม่กี่บรรทัดก็สามารถทำได้อย่างง่ายดาย คำตอบในลิงก์นั้นอนุญาตให้เพิ่ม 2 รหัสเท่านั้น ไม่โพสต์คำตอบเล็กน้อย
Shaughn

@Shaughn กรุณาโพสต์รหัสของคุณ
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_DiscountถึงNamespace_Module_Rewrite_SalesRule_Model_Quote_Discount

ประการที่สองคือตัวควบคุมที่โอเวอร์โหลด 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

ฉันได้ทดสอบกับส่วนลดจำนวนคงที่และใช้งานได้ตามที่คาดหวังไว้เช่นกัน

และอย่างที่ฉันพูดคุณอาจต้องเพิ่มการตรวจสอบเพิ่มเติมอาจเป็นของที่ซ้ำกัน แต่นี่คือที่ที่คุณจะเริ่ม สำหรับส่วนหน้าคุณสามารถเพิ่มตรรกะแยกรหัสได้ตามที่คุณต้องการ


นอกจากนี้ลืมที่จะพูดถึงคุณจะต้องแทนที่ Namespace / Module ด้วยชื่อโมดูลจริงของคุณอย่างแน่นอน
Shaughn

หลังจากแก้ไขคำตอบนี้ตอนนี้มันทำงานเหมือนภาพหน้าจอด้านบนแล้วฉันจะยกเลิกคูปองเฉพาะหลังจากใช้คูปองหลายใบได้อย่างไร
Zaheerabbas

ขอบคุณ Shaughn ที่ให้คำตอบมันใช้ได้กับฉันใน magento 1.9 แต่ฉันไม่สามารถทำให้มันทำงานได้ในเวอร์ชั่น 1.8 มันแสดงอะไรในเบราว์เซอร์และโยนขนาดหน่วยความจำหมดข้อผิดพลาดใน apache error.log (ไม่ใช่ magento error / system.log )
Haris

สวัสดี Saddam ปัญหาหน่วยความจำน่าจะเป็นหนึ่งในหลาย ๆ ปัญหา แต่สิ่งที่คุณสามารถทำได้คือห่อโค้ดในบล็อก catch catch และบันทึกข้อผิดพลาดที่ครอบตัดขึ้นนอกจากนี้ตรวจสอบการตั้งค่าหน่วยความจำสูงสุดใน php และตรวจสอบให้แน่ใจว่าคุณมีหน่วยความจำเพียงพอ ใช้ได้ ก่อนถึงลูปคุณสามารถนับรหัสคูปองและตรวจสอบว่ามีกี่อย่างที่ฉันสงสัยว่ามีบางอย่างที่โหลดลงในหน่วยความจำ
Shaughn

1
เพื่อป้องกันการใช้รหัสคูปองเดียวกันหลายครั้งอย่างง่ายดายคุณสามารถใช้ array_unique $ couponArray = array_unique (explode (',', $ couponCode));
Julian
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.