bikyline Posted January 2, 2014 Share Posted January 2, 2014 Gibts eine funktion in Prestashop dort man Bestandsliste ausdrucken kann ? oder ein (kostenloses) Modul dafür ? Link to comment Share on other sites More sharing options...
Whiley Posted January 5, 2014 Share Posted January 5, 2014 Du kannst das mit einer SQL-Abfrage machen. Im BO -->Erweiterte Einstellungen-->SQL-Manager dort auf NEU klicken, Namen deiner Wahl vergeben, und diesen Code einfügen: SELECT distinct pp.reference Artikelnummer, pl.name Produktname, p.quantity Menge, pl.description_short KurzbezeichnungFROM ps_stock_available pLEFT JOIN ps_product pp ON (p.id_product = pp.id_product)LEFT JOIN ps_stock ps ON (p.id_product_attribute = ps.id_product_attribute)LEFT JOIN ps_product_lang pl ON (p.id_product = pl.id_product)LEFT JOIN ps_product_attribute_combination pac ON (p.id_product_attribute = pac.id_product_attribute)LEFT JOIN ps_product_attribute pa ON (p.id_product_attribute = pa.id_product_attribute)LEFT JOIN ps_attribute_lang al ON (pac.id_attribute = al.id_attribute)WHERE p.id_product_attribute = 0order by Produktname, Artikelnummer Speichern und ausführen. Falls du beim Anlegen der mysql-Datenbank nicht den default-table prefix "ps_" genommen hast, musst du das naturlich in der Abfrage auch ändern. Ansonsten nach Geschmack anpassen. Grüsse Whiley Link to comment Share on other sites More sharing options...
bikyline Posted January 5, 2014 Author Share Posted January 5, 2014 Danke dir ich teste es aus. leider kann ich kein PHP. Link to comment Share on other sites More sharing options...
bikyline Posted January 5, 2014 Author Share Posted January 5, 2014 wie rufe ich die per mausklick ab ? Link to comment Share on other sites More sharing options...
Whiley Posted January 5, 2014 Share Posted January 5, 2014 Wenn du das so wie oben beschrieben eingefügt und gespeichert hast, hast du doch hinter der SQL_Abfrage 4 kleine Symbole, über das zweite kannst du dir das Ergebnis am Bildschirm anschauen, und über das erste kannst du dir eine csv- Datei mit den Ergebnissen herunterladen, die kannst du dann z.B. in Excel anschauen. Link to comment Share on other sites More sharing options...
bikyline Posted January 5, 2014 Author Share Posted January 5, 2014 auf diesen grünen pfeil nach oben ? Link to comment Share on other sites More sharing options...
Whiley Posted January 5, 2014 Share Posted January 5, 2014 Also, zum Anschauen den mit der Lupe. Link to comment Share on other sites More sharing options...
bikyline Posted January 5, 2014 Author Share Posted January 5, 2014 das funkt bei mir nicht Link to comment Share on other sites More sharing options...
bikyline Posted January 5, 2014 Author Share Posted January 5, 2014 hab fehler gefunden. danke es klappt Link to comment Share on other sites More sharing options...
Whiley Posted January 5, 2014 Share Posted January 5, 2014 Prima, freut mich, dass es klappt. Grüsse Whiley Link to comment Share on other sites More sharing options...
bikyline Posted January 8, 2014 Author Share Posted January 8, 2014 kann man es auch anzeigen lasse in spalte daneben Einkaufspreis mit MWST und verkaufspreis mit MWST ? 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