Magento Multiple优惠券适用于购物车


9

我已经花了2天的时间在购物车上应用多个优惠券,我知道有一些可用的模块。但是我不想使用它。我想要一些自定义代码,以便我可以在单个订单中应用多个1个优惠券代码。

请帮忙。在完成相同的工作后,我感到非常疲倦。 在此处输入图片说明



顺便说一句,您的问题与我上面链接的问题非常相似,该问题来自2013
。– Tim Hallman 2015年

@Tim〜我认为这不是最好的方法,因为它涉及绕过Magento的常规方法将列直接添加到销售表中。我现在实际上已经在处理这个问题,并且通过2次重写和几行代码,可以轻松实现这一点。另外,该链接中的答案仅允许添加2个代码。生病了一点答案
肖恩,2015年

@Shaughn请发布您的代码。
Zaheerabbas

可以给我一个示例zip,或者更具体的目录,请谢谢
-alexmalara

Answers:


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_DiscountNamespace_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

我已经测试了固定金额的折扣,并且效果也不错。

就像我说的那样,您可能需要添加其他检查,可能要检查重复项,但这是您将要开始的地方。对于前端,您可以添加一些逻辑拆分代码,但是可以按自己的喜好保留原样。


还忘了提,你显然需要与实际的模块名称,等等,用以代替命名空间/模块
Shaughn

编辑此答案后,现在就像上面的截图一样工作。现在应用多个优惠券后如何取消特定的优惠券。
Zaheerabbas

感谢Shaughn的回答,它在magento 1.9上对我有用,但是在1.8版本上我无法使用,它在浏览器中不显示任何内容,并在apache error.log中抛出内存大小耗尽错误(不是magento error / system.log) )
哈里斯(Haris

嗨,萨达姆,内存问题可能是许多问题之一,但是您可以做的是将代码包装在try catch块中并记录出现的所有错误。还要检查php中的最大内存设置,并确保您有足够的内存可用。就在循环之前,您可以计算优惠券代码并检查有多少,因为我怀疑其中有一些已加载到内存中。
Shaughn

1
为了轻松防止多次使用相同的优惠券代码,您可以使用array_unique $ couponArray = array_unique(explode(',',$ couponCode));
朱利安
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.