Lolles Wollshop Posted February 20, 2018 Share Posted February 20, 2018 Hallo, ich brauche ein gutes Modul zur Lagerverwaltung. Hauptsächlich geht es mir um die Inventur. Also dass ich eine Liste zB nach Hersteller, Produkt etc. mit Preisen, Mengen exportieren kann um meine Inventur zu machen. Ich habe die gratis Version von ERP Illiconpresta, da können aber nur 10 Datensätze exportiert werden. Die Kaufversion scheint nicht mehr gültig zu sein und eine Antwort habe ich auf meine 3 Versuche nie erhalten. Wichtig: Das Modul muss Mac kompatibel sein. (Nicht mit Bootcamp oder ähnlichem). Ich habe Prestashop Version 1.5.6.1 (gerne auch Möglichkeiten anzeigen für neuere Versionen da ich über ein Update nachdenke). Besten Dank erstmal für jede Hilfe. Link to comment Share on other sites More sharing options...
Shad86 Posted February 20, 2018 Share Posted February 20, 2018 Guck mal ob du damit weiter kommst wenn du das hier in den SQL Manager packst: SELECT p.id_product, p.active AS Aktiv, p.id_category_default AS Standard_Kategorie, p.minimal_quantity AS Minimum_Stk, p.maximal_quantity AS Maximum_Stk, pl.name, GROUP_CONCAT(DISTINCT(cl.name) SEPARATOR ",") as categories, p.price AS Preis, p.id_tax_rules_group, p.wholesale_price, p.reference AS Artikelnummer, p.supplier_reference, p.id_supplier, p.id_manufacturer, p.width AS Breite, p.height AS Höhe, p.depth AS Tiefe, p.upc, p.ecotax, p.weight AS Gewicht, p.quantity AS Stk, pl.description_short AS Kurzbeschreibung, pl.description AS Beschreibung, p.available_for_order AS Bestellbar, pl.meta_title, pl.meta_keywords, pl.meta_description, pl.link_rewrite, pl.available_now, pl.available_later, p.available_for_order, p.date_add, p.show_price AS Preis_sichtbar, p.online_only, p.condition, p.id_shop_default FROM ps_product p LEFT JOIN ps_product_lang pl ON (p.id_product = pl.id_product) LEFT JOIN ps_category_product cp ON (p.id_product = cp.id_product) LEFT JOIN ps_category_lang cl ON (cp.id_category = cl.id_category) LEFT JOIN ps_category c ON (cp.id_category = c.id_category) LEFT JOIN ps_product_tag pt ON (p.id_product = pt.id_product) WHERE pl.id_lang = 1 AND cl.id_lang = 1 AND p.id_shop_default = 1 AND c.id_shop_default = 1 GROUP BY p.id_product 1 Link to comment Share on other sites More sharing options...
Lolles Wollshop Posted February 20, 2018 Author Share Posted February 20, 2018 Lieben Dank dir! 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