itshubinak Posted May 7, 2015 Share Posted May 7, 2015 Hi guys hope you are fine well i have having one issue i want to export all product stock with each product attribute wise stock quantity can you please tell me the query which i can use to extract my desired information as i have mentioned above its urgent kindly help me out .below is the query which i used and extract all the info with total qunatity but i want to have attribute wise quantity in it as well please modify it and helo me out SELECT p.id_product, p.active, pl.name, GROUP_CONCAT(DISTINCT(cl.name) SEPARATOR ",") as categories, p.price, p.id_tax_rules_group, p.wholesale_price, p.reference, p.supplier_reference, p.id_supplier, p.id_manufacturer, p.upc, p.ecotax, p.weight, p.quantity, pl.description_short, pl.description, 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, 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 waiting for you quick response 1 Link to comment Share on other sites More sharing options...
tuk66 Posted May 7, 2015 Share Posted May 7, 2015 Try to learn from StockAvailable::getQuantityAvailableByProduct method. Link to comment Share on other sites More sharing options...
Recommended Posts