pubntrash Posted August 29, 2011 Share Posted August 29, 2011 Bonjour, $product.quantity_all_versions sortait des valeurs étranges d'où des articles "Epuisés" alors qu'ils étaient en stock. dans classes/Product.php, j'ai modifié $row['quantity_all_versions'] = $row['quantity']; $row['quantity'] = Product::getQuantity((int)$row['id_product'], $row['id_product_attribute'], isset($row['cache_is_pack']) ? $row['cache_is_pack'] : NULL); en $row['quantity_all_versions'] = Product::getQuantity((int)$row['id_product']); $row['quantity'] = Product::getQuantity((int)$row['id_product'], $row['id_product_attribute'], isset($row['cache_is_pack']) ? $row['cache_is_pack'] : NULL); Le problème est résolu. Est-ce un problème connu ? Pour info, j'ai migré d'une 1.2.4 à une 1.4.4 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