valentindelarue Posted April 8, 2013 Share Posted April 8, 2013 (edited) Bonjour, Après beaucoup de recherche, je souhaiterais savoir s'il existe une fonctionnalité de prestashop pour mettre à jour uniquement les quantités de certain produits rapidement. Exemple : Sur le site le produit avec le code 1234 à 55 quantités Puis moi j'ai un fichier .csv avec l'article 1234 et avec 20 quantités. Est-ce que je peux intégrer ce fichier .csv ou une autre solution, pour que les quantités de mon produit soit à jour. PS : Je souhaite faire cette procédure pour environ 150 produit par jour. Merci beaucoup pour votre aide. Valentin DELARUE Edited April 8, 2013 by valentin159 (see edit history) Link to comment Share on other sites More sharing options...
Cide Posted April 8, 2013 Share Posted April 8, 2013 Hello, Je n'ais pas testé l'importation de .csv. Mais avec une requete sql qui modifie uniquement certains produits, c'est une solution. Link to comment Share on other sites More sharing options...
valentindelarue Posted April 8, 2013 Author Share Posted April 8, 2013 Merci pour ta réponse, j'ai regardé dans la base de données et je n'ai pas trouvé ou se localisait les articles ou encore les quantités. Tu peut m'aider ? Link to comment Share on other sites More sharing options...
Yoya Posted April 8, 2013 Share Posted April 8, 2013 Hello, Ca ne serait pas compliqué à coder cette fonctionnalité Cdlt Pierre Link to comment Share on other sites More sharing options...
valentindelarue Posted April 8, 2013 Author Share Posted April 8, 2013 (edited) Merci, mais je ne sais pas où sont stocké les quantités sur la base de données Edited April 8, 2013 by valentin159 (see edit history) Link to comment Share on other sites More sharing options...
Cide Posted April 8, 2013 Share Posted April 8, 2013 (edited) dans la table "ps_stock_available" l'id du produit est lié à la quantité. (quand on cherche on trouve... ) Edited April 8, 2013 by Cide (see edit history) Link to comment Share on other sites More sharing options...
Yoya Posted April 8, 2013 Share Posted April 8, 2013 Tu bosses sur quel version de PS Valentin ? Link to comment Share on other sites More sharing options...
Yoya Posted April 8, 2013 Share Posted April 8, 2013 (edited) Un bout de code qui marche sur une 1.2.x que je viens de faire : à toi de l'adapter à tes besoins. <?php include(dirname(__FILE__).'/config/config.inc.php'); if (($handle = fopen("test.csv", "r")) !== FALSE) { while (($data = fgetcsv($handle, 1000, ";")) !== FALSE) { $idProduct=$data[0]; $qty=$data[1]; $tmpProd=new Product($idProduct); if (!Validate::isLoadedObject($tmpProd)) { echo "error adding ".$qty.' quantities to product '.$idProduct.' (product does\'nt exist)<br/>'; } else { $sql = 'UPDATE `'._DB_PREFIX_.'product` SET `quantity` = `quantity`+'.intval($qty).' WHERE `id_product` = '.intval($idProduct); if (!Db::getInstance()->Execute($sql)) { echo "error adding ".$qty.' quantities to product '.$idProduct.'('.$sql.')<br/>'; } else { echo "OK : ".$qty.' quantities added to product '.$idProduct.'<br/>'; } } } fclose($handle); } Cdlt Pierre Edited April 8, 2013 by Yoya (see edit history) 1 Link to comment Share on other sites More sharing options...
valentindelarue Posted April 8, 2013 Author Share Posted April 8, 2013 Merci, Beaucoup pour votre aides. Et mille merci a toi Yoya <3 ^^ 1 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