PEPPE83 Posted October 16, 2012 Share Posted October 16, 2012 Ciao a tutti, è possibile aggiornare le quantità di magazzino su prestashop tramite l'import di un file CSV? Partendo dal presupposto che il file CSV ha 2 colonne ed in una l'ID del prodotto di PS. Se è fattibile mi spiegate come fare? Link to comment Share on other sites More sharing options...
Bumbe86 Posted February 14, 2013 Share Posted February 14, 2013 Anche io ho lo stesso problema importo il csv dei prodotti ma nel magazzino i prodotti non vengono aggiornati Link to comment Share on other sites More sharing options...
PEPPELT Posted April 24, 2013 Share Posted April 24, 2013 Come avete risolto????? Link to comment Share on other sites More sharing options...
LorenzoProdon Posted April 24, 2013 Share Posted April 24, 2013 (edited) Personalmente uso Filemaker, e ho creato una pagina php con questo codice che viene aperta per ogni prodotto in maniera automatica da una webview. Però lo script potrebbe adattarsi ad un pò tutte le situazioni, col supporto di un browser... <?php // Gli do due variabili, id prodotto e la quantità $id = $_GET['id']; $quantita = $_GET['quantita']; // Connessione al Database $host = 'localhost'; $user = 'admin'; $password = '12345'; $db = 'prestashop'; $conn = mysql_connect($host, $user, $password); mysql_select_db($db); // Aggiornamento quantità $query = "UPDATE `prestashop`.`ps_stock_available` SET `quantity` = '".$quantita."' WHERE `ps_product`.`id_product` = '".$id."';"; mysql_query($query); ?> Edited April 24, 2013 by LorenzoProdon (see edit history) 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