Jump to content
  • 0

Kody rabatowe


kurt34

Question

2 answers to this question

Recommended Posts

  • 0

Z tego co się orientuje najszybciej jest dodać warunek przy dodawaniu kodu rabatowego do koszyka w którym jest sprawdzana ilość kodów przypisanych już do tego koszyka.

Klasa CartCore w pliku classes/Cart.php, metoda addCartRule();

Jest tam zapytanie do bazy:

if (Db::getInstance()->getValue('SELECT id_cart_rule FROM '._DB_PREFIX_.'cart_cart_rule WHERE id_cart_rule = '.(int)$id_cart_rule.' AND id_cart = '.(int)$this->id)) {
    return false;
}

Wystarczy usunąć warunek id_cart_rule = '. (int)$id_cart_rule.' AND 

Co spowoduje, że skrypt przed dodaniem będzie sprawdzał czy jakakolwiek reguła jest już dodana do koszyka, a nie tylko ta sama.

  • Thanks 1
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...