Jump to content

Consulta SQL para stock incluido combinaciones [RESUELTO]


Eusebio100

Recommended Posts

Tengo una consulta sql que encontré por ahí solo para las combinaciones y la idea era sacar un stock del total haciendo una consulta solo para los productos sin combinaciones.

Al final lo que he hecho es modificar la consulta que tenía incluyendo todos los productos y las combinaciones cada uno con su precio.

Lo pongo y modifico el título por si a alguien le puede interesar.

SELECT
     p.id_product 'ID product',
     p.reference 'Ref. producto',
     pa.reference 'Ref. combinación',
     pl.name 'Producto',                
     GROUP_CONCAT(DISTINCT(pal.name) SEPARATOR ", ") AS 'Combinación',
     p.wholesale_price 'Precio prod.',
     pa.wholesale_price 'Precio comb.',
     pq.quantity 'Stock'
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 pq ON (p.id_product = pq.id_product and ((pa.id_product_attribute is null and pq.id_product_attribute = 0) or (pq.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 pal ON (pal.id_attribute = pac.id_attribute and pal.id_lang=1)
WHERE pl.id_lang = 1 
GROUP BY p.id_product,pac.id_product_attribute
ORDER BY p.id_product

 

Link to comment
Share on other sites

  • Eusebio100 changed the title to Consulta SQL para stock incluido combinaciones [RESUELTO]

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...