お客様のログイン後に古いカート製品を削除する方法


8

顧客がウェブサイトにアクセスして製品を追加し、

次に、顧客のログイン。

顧客がすでにカートアイテムを持っている場合、その削除された古いアイテム、新しく追加されたアイテムのみが表示されます

例:

顧客はすでにカートに5つの製品を持っています>サイトにアクセス>カートに2つの製品を新しく追加>顧客アカウントにログイン>カートに2つの製品を新しく追加する(古いカートの製品は削除されます)

任意の提案をいただければ幸いです。

回答:


7

このイベントを使用しますsales_quote_merge_before

これをconfig.xmlに入れます

<events> 
   <sales_quote_merge_before><!--calling this event before merging the old cart with newly added cart items while login--> 
       <observers> 
            <ws_clearoldcartproducts_observer><!--unique identifier name for our observer--> 
                <type>singleton</type> 
                <class>Ws_Clearoldcartproducts_Model_Observer</class><!--Our observer class name--> 
                <method>loadCustomerQuote</method><!--Method to be called from our observer class--> 
            </ws_clearoldcartproducts_observer> 
        </observers> 
    </sales_quote_merge_before> 
</events> 

これをobserver.phpに入れてください

public function loadCustomerQuote() 
{ 
    $customerQuote = Mage::getModel('sales/quote') 
                        ->setStoreId(Mage::app()->getStore()->getId())
                        ->loadByCustomer(Mage::getSingleton('customer/session')->getCustomerId()
                    ); 
    if ($customerQuote->getId() && $this->getQuoteId() != $customerQuote->getId()) 
    { 
        // Removing old cart items of the customer. 
        foreach ($customerQuote->getAllItems() as $item) 
        { 
            $item->isDeleted(true); 
            if ($item->getHasChildren()) { 
                foreach ($item->getChildren() as $child) { 
                    $child->isDeleted(true); 
                } 
            } 
        } 
        $customerQuote->collectTotals()->save(); 
    } 
    else 
    { 
        $this->getQuote()->getBillingAddress(); 
        $this->getQuote()->getShippingAddress(); 
        $this->getQuote()->setCustomer(Mage::getSingleton('customer/session')->getCustomer()) ->setTotalsCollectedFlag(false) ->collectTotals() ->save();
    } 
    return $this; 
} 

このリンクを参照


リンクから回答を得ました。ありがとう@surya
VijayS91

3

呼び出されたイベントにフックしてsales_quote_merge_before、カートの1つを空にすることをお勧めします(たとえば、既存のもの)。
このイベントは、ログイン後、前にトリガーされますsales_quote_collect_totals_before


この方法で、望んだことを達成できましたか?またはそれはあなたがそれをしたい場所にまったく介入しません。
Julien Lachal、2014年
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.