oncle Posted May 25, 2020 Share Posted May 25, 2020 Hola a todos, estoy usando esta variable en cartcontroller.php: // Cantidad mínima por producto if ((int)$this->id_product_attribute) $minimal_quantity = Attribute::getAttributeMinimalQty($this->id_product_attribute); else $minimal_quantity = $product->minimal_quantity; if ($this->qty % $minimal_quantity != 0) { $this->errors[] = Tools::displayError('Solo puede agregar este artículo a su carrito con una cantidad múltiple de ').' '.$minimal_quantity; } // fin Cantidad mínima por producto Me ha ido bien hasta que he dado de alta artículos con atributos, si el articulo con atributos tiene como mínimo de compra 2 o mas unidades no hay problema, pero cuando el articulo tiene por defecto la compra mínima 1, me da error. Hay que modificar algo de este comando? Hay que añadir algo mas? ahora lo tengo deshabilitado hasta no encontrar donde falla. Gracias de antemano. Link to comment Share on other sites More sharing options...
oncle Posted May 29, 2020 Author Share Posted May 29, 2020 Estoy intentando cambiar la condición ante la falta de respuestas, pero no lo consigo. He intentado que salte la condición cuando el articulo pedido sea = 1 porque es donde me falla. me podéis orientar? // Cantidad minima por producto if ((int)$this->id_product_attribute) $minimal_quantity = Attribute::getAttributeMinimalQty($this->id_product_attribute); $minimal_quantity = $product->minimal_quantity; if ($minimal_quantity <= 1) { return true;} else $minimal_quantity = $product->minimal_quantity; if ($this->qty % $minimal_quantity != 0); { $this->errors[] = Tools::displayError('Solo puede agregar este artículo a su carrito con una cantidad multiple de ').' '.$minimal_quantity; } // fin Cantidad minima por producto Gracias. Link to comment Share on other sites More sharing options...
Juanjomg Posted May 29, 2020 Share Posted May 29, 2020 Muy buenas. Mira si con esto se soluciona tu problema: // Cantidad mínima por producto if ((int)$this->id_product_attribute) $minimal_quantity = Attribute::getAttributeMinimalQty($this->id_product_attribute); else $minimal_quantity = $product->minimal_quantity; if (($minimal_quantity>1) && ($this->qty % $minimal_quantity != 0)) { $this->errors[] = Tools::displayError('Solo puede agregar este artículo a su carrito con una cantidad múltiple de ').' '.$minimal_quantity; } // fin Cantidad mínima por producto 1 Link to comment Share on other sites More sharing options...
oncle Posted May 30, 2020 Author Share Posted May 30, 2020 (edited) Hola Juanjomg, gracias por responder. Me sale perfecto! Mil gracias. Primero lo copié mal y no me salia, pero repasando el texto que me has enviado vi que lo hice mal, lo he modificado, y voila, perfecto. Gracias!! Edited May 30, 2020 by oncle (see edit history) Link to comment Share on other sites More sharing options...
Juanjomg Posted May 30, 2020 Share Posted May 30, 2020 Me alegro de que se solucione tu problema. 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