medyczny Posted July 20, 2020 Share Posted July 20, 2020 Czy ktoś z Was ma może kod SQL dzięki któremu wyeksportuje wszystkie kombinacje i atrybuty produktów w takim formacie abym mógł je później zaimportować na innym komputerze ? Link to comment Share on other sites More sharing options...
endriu107 Posted July 20, 2020 Share Posted July 20, 2020 To jest dział dla deweloperów, pokaż jakie masz własne zapytanie sql wtedy ktoś może Ci podpowiedzieć jak je zmodyfikować, natomiast jeśli nie posiadasz wiedzy na ten temat przeniose wątek do działu wsparcia. Link to comment Share on other sites More sharing options...
medyczny Posted July 20, 2020 Author Share Posted July 20, 2020 (edited) Moje zapytanie jakie mam to SELECT p.id_product 'Product ID', pl.name 'Product name', p.wholesale_price 'Cost price', GROUP_CONCAT(DISTINCT(al.name) SEPARATOR ", ") AS 'Product Variants', s.quantity 'Remaining pieces' FROM ps_product p LEFT JOIN ps_product_lang pl ON ( p.id_product = pl.id_product AND pl.id_lang = 1 ) LEFT JOIN ps_product_attribute pa ON (p.id_product = pa.id_product) LEFT JOIN ps_stock_available s ON ( p.id_product = s.id_product AND( ( pa.id_product_attribute IS NULL AND s.id_product_attribute = 0 ) OR( s.id_product_attribute = pa.id_product_attribute ) ) ) LEFT JOIN ps_product_attribute_combination pac ON ( pac.id_product_attribute = pa.id_product_attribute ) LEFT JOIN ps_attribute_lang al ON ( al.id_attribute = pac.id_attribute AND al.id_lang = 1 ) GROUP BY p.id_product, pac.id_product_attribute ORDER BY p.id_product Jednak nie jest on w takiej formie w której mógłbym ją zaimportować później do presty. Proszę o pomoc w edycji tego kodu Edited July 20, 2020 by medyczny (see edit history) Link to comment Share on other sites More sharing options...
PrestaServicePro Posted July 20, 2020 Share Posted July 20, 2020 Dlaczego nie próbowałeś użyć (domyślnej opcji PS) funkcji eksportu / importu csv? Myślę, że może ci to pomóc. Link to comment Share on other sites More sharing options...
medyczny Posted July 20, 2020 Author Share Posted July 20, 2020 Ponieważ w standardowym ekporcie produktów, który umożliwia presta jest tylko możliwość wyeskportowania produktów bez kombinacji Link to comment Share on other sites More sharing options...
PrestaServicePro Posted July 20, 2020 Share Posted July 20, 2020 Mój błąd, pomieszałem zawartość z płatnymi / bezpłatnymi opcjami. Za pomocą zapytania SQL, jaki typ chcesz wyeksportować wynik? Link to comment Share on other sites More sharing options...
PrestaServicePro Posted July 20, 2020 Share Posted July 20, 2020 Których dokładnie pól potrzebujesz? Strona produktowa PS jest ogromna. Jest dużo danych. Jeśli chcesz nawet wyeksportować tylko produkt, kombinację i atrybuty, musisz wyeksportować również inne powiązane dane. Link to comment Share on other sites More sharing options...
medyczny Posted July 20, 2020 Author Share Posted July 20, 2020 Identyfikator Produktu (ID) Atrybut (Nazwa:Typ:Pozycja)* Wartość (Wartość:Pozycja)* Wpływ na cenę ilość Link to comment Share on other sites More sharing options...
PrestaServicePro Posted July 20, 2020 Share Posted July 20, 2020 Okej, zrozumiałem cię. Spróbuję podać kilka rozwiązań. Link to comment Share on other sites More sharing options...
medyczny Posted July 21, 2020 Author Share Posted July 21, 2020 PrestaServicePro Dzięki. Czekam na wiadomość od Ciebie 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