bztwn Posted July 5, 2012 Share Posted July 5, 2012 Bonjour, pour une grande partie de mes produits, je propose différentes déclinaisons (tailles). J'aimerai bien mettre en forme la liste déroulante permettant de choisir ces tailles en fonctions du stock correspondant: par exemple :texte en rouge si taille épuisée Il suffirait en théorie de rajouter un style="color: red;" dans la liste déroulante, contrôlé dynamiquement par un "if quantité combinaisons == 0" <select name="{$groupName}" id="group_{$id_attribute_group|intval}" onchange="javascript:findCombination();{if $colors|@count > 0}$('#resetImages').show('slow');{/if}"> {foreach from=$group.attributes key=id_attribute item=group_attribute} <option value="{$id_attribute|intval}"{if (isset($smarty.get.$groupName) && $smarty.get.$groupName|intval == $id_attribute) || $group.default == $id_attribute} selected="selected"{/if} title="{$group_attribute|escape:'htmlall':'UTF-8'}" >{$group_attribute|escape:'htmlall':'UTF-8'} </option> {/foreach} </select> Mon problème est que je ne sais justement pas comment récupérer la quantité en stock de la combinaison. Dans le product.php, il y a cette partie qui si j'ai bien compris permet de ne pas afficher les déclinaisons hors stock. Cela devrait donc être un bon point de départ. //wash attributes list (if some attributes are unavailables and if allowed to wash it) if (!Product::isAvailableWhenOutOfStock($product->out_of_stock) && Configuration::get('PS_DISP_UNAVAILABLE_ATTR') == 0) foreach ($groups AS &$group) foreach ($group['attributes_quantity'] AS $key => &$quantity) if (!$quantity) unset($group['attributes'][$key]); Quelqu'un a peut être une idée de comment récupérer cette variable? (prestashop 1.3.7) Merci d'avance 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