jomcdonald Posted September 7, 2016 Share Posted September 7, 2016 Bonjour, Je cherche une fonction php qui me permette d'afficher une valeur sur les pages produit et panier. J'ai un deuxième stock que je gère dans le backoffice, de ce coté là c'est ok mais j'aimerais l'afficher sur le front. Problème je n'arrive pas à afficher cela. Voici ce que j'ai tenté dans front/ProductController:public function StockSecondaire() { global $smarty; $quantite_secondaire = Db::getInstance()->getValue(' SELECT SUM(secondary_stock) FROM `'._DB_PREFIX_.'product_supplier` WHERE id_product='.(int)$id_product.' AND id_product_attribute='.(int)$id_product_attribute); $this->context->smarty->assign('stock_secondaire', $quantite_secondaire); } En tpl j'ai testé: {$quantite_secondaire} {$stock_secondaire} {$product->stock_secondaire} Tout cela sans succès. Si quelqu'un sait m'aider? Merci beaucoup. 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