KKamilos Posted February 12, 2015 Share Posted February 12, 2015 (edited) Czy istnieje możliwość ustawienia, aby klient mógł kupić np. maksymalnie 5 sztuk danego produktu w jednym zamówieniu (Prestashop 1.6)? Na razie znalazłem dwie płatne opcje: http://mypresta.eu/pl/moduly/skladanie-zamowien/maksymalna-ilosc-produktu.html oraz http://www.puecher.com/prestashop-maximum-order-quantity-for-prestashop-1-6/523/ Oczywiście wolałbym darmową alternatywę. Edited February 12, 2015 by KKamilos (see edit history) Link to comment Share on other sites More sharing options...
karola Posted July 5, 2016 Share Posted July 5, 2016 Hej! Udało Ci się jakoś rozwiązać ten problem? Link to comment Share on other sites More sharing options...
tonspeed Posted January 25, 2017 Share Posted January 25, 2017 (edited) przyłączam się do prośby, ktoś ogarnął to we własnym zakresie i może służyć poradą? Chodzi o to, aby ograniczyć w całym asortymencie, że klient może kupić nie więcej niż xx szt. jednego towaru na jednym zamówieniu. (presta 1.6) Edited January 25, 2017 by tonspeed (see edit history) Link to comment Share on other sites More sharing options...
tonspeed Posted January 25, 2017 Share Posted January 25, 2017 Dla wszystkich w potrzebie Zrobiłem to tak: W pliku CartController.php dodajecie: $max_qty = 10; if($qty_to_check > $max_qty && Tools::getValue('op','up') != "down"){ $this->errors[] = Tools::displayError('Zamawiana ilość jednego towaru może wynosić maksymalnie '.$max_qty.' szt.', false); return; } po tym kodzie (czyli wstawiacie np. w linii 246): if (Tools::getValue('op', 'up') == 'down') { $qty_to_check -= $this->qty; } else { $qty_to_check += $this->qty; } Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now