Come rimuovere il vecchio prodotto carrello dopo il login del cliente


8

Il cliente visita il sito Web e aggiunge il prodotto,

quindi accesso cliente.

se il cliente ha già articoli carrello, i suoi vecchi articoli rimossi, vengono visualizzati solo gli articoli appena aggiunti

Esempio:

Il cliente ha già 5 prodotti nel carrello> Visita il sito> aggiungi nuovi 2 prodotti nel carrello> accedi account cliente> mostra il carrello aggiungi di recente 2 prodotti (i vecchi prodotti del carrello vengono rimossi)

Ogni suggerimento sarà apprezzato.

Risposte:


7

usa questo evento sales_quote_merge_before

mettilo in 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> 

mettilo in 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; 
} 

Fai riferimento a questo link


ho ricevuto la risposta dal link. grazie @surya
VijayS91,

3

Ti suggerisco di agganciarti all'evento chiamato sales_quote_merge_beforee svuotare uno del carrello (ad esempio quello esistente).
Questo evento viene attivato dopo l'accesso e primasales_quote_collect_totals_before


sei riuscito a ottenere ciò che volevi in ​​questo modo? o non interviene proprio dove vorresti.
Julien Lachal,
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.