Jump to content

Recommended Posts

Hallo Freunde des Prestashops,

 

so toll er auch ist, er bringt micht zum Verzweifeln. Ich habe tausende Prdoukte im Shop, kann aber die Preise nicht autoimatisch alle anpassen. Wenn ich über die Datenbank die Spalte "price" update, wird dies zwar in der DB übernommen, aber nicht im Shop. Das ist auch in der neuen Version so. Bitte, kann mir jemand helfen, weiß jemand wie ich alle Artikel auf einmal updaten kann? Nur diei Preise, sonst keine andere Spalte!

 

Danke

 

Stephan

Link to comment
Share on other sites

Hallo Stephan,

 

das Update der Preise direkt in der Datenbank funktioniert einwandfrei.

 

Ich vermute du warst in der falschen Tabelle. Den Preis gibt es zweimal:

XX_product : price

und

XX_product_shop : price

 

letzteren auch ändern!!!

 

Grüsse

Whiley

Link to comment
Share on other sites

mach ich immer so 

 

Preis ändern
UPDATE  `ps_product` SET  `price` =  '31.50' WHERE  `ps_product`.`id_category_default` =36 LIMIT 6
 
mit Limit kann man die Anzahl Datensätze Limitieren, du brauchst nur die kategorie und Preis zu ändern
 
Gewicht ändern
UPDATE  `ps_product` SET `weight` =  '0.04' WHERE  `ps_product`.`id_category_default` =36
 
Update 'Tabelle wählen' SET 'Spalte wählen' = 'neuer Wert' Wehre? abhängigkeit was muss noch in der Tabelle stehen damit geändert wird.
 
UPDATE  `ps_product` SET  `active` =  '0' WHERE  `ps_product`.`id_category_default` =31
UPDATE  `ps_product` SET  `date_add` =  '2012-05-12 21:32:16' WHERE  `ps_product`.`id_category_default` =7
 
Länder aktivieren / deaktivieren
UPDATE  `ps_country` SET  `active` =  '0'  WHERE  `ps_country`.`id_zone` =6
 
 
Einkaufspreis per Kategorie ändern
 
wholesale_price
 
UPDATE  `ps_product` SET  `wholesale_price` =  '13.40' WHERE  `ps_product`.`id_category_default` =2
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...