gzoztra Posted July 29, 2012 Share Posted July 29, 2012 help me ! im going crazy how can i see the quantity not for all the combinations together in total but for each one in separte so i could track of each and every size of product i have ? any idea ? thanks, im going crazy here for exemple if you didnt understood it i got 1.0 parfum 1.7 and 3.4 in combination but when i see in catalog the quantity it shows me everything together i need them separtly to show me that .. :wacko: Link to comment Share on other sites More sharing options...
tomerg3 Posted July 29, 2012 Share Posted July 29, 2012 you can see it in the combination tab of the product editor. Link to comment Share on other sites More sharing options...
gzoztra Posted July 29, 2012 Author Share Posted July 29, 2012 (edited) you can see it in the combination tab of the product editor. thanks for the reply, i can only see it one by one like that, i was looking for something to show me : All items in a list, with quantity per each combination like this : Amor Amor by Cacharel 1.7 oz - 5 2.2 - 2 3.0 - 9 3.4 - 4 bvlgari 1.0 - 6 1.7 - 7 3.4 - 5 i was looking to gather it all together instead of going one by one by one... i got about 1000 different products, with 2-3 combinations each,and each one is with a different quantity..so i was looking for a list where i could see like how i wrote.. any idea ? Edited July 29, 2012 by gzoztra (see edit history) Link to comment Share on other sites More sharing options...
tomerg3 Posted July 29, 2012 Share Posted July 29, 2012 You can create a SQL query that will show those results. The info is stored in the DB ps_product_attribute table Link to comment Share on other sites More sharing options...
gzoztra Posted July 29, 2012 Author Share Posted July 29, 2012 You can create a SQL query that will show those results. The info is stored in the DB ps_product_attribute table i tried to google how to do it and came across a few articles but even the Dummies one was a problem for me, any video guide or place you can recommend that might and help me ? any modules for it ? thanks for the fast response btw.. appreciate it Link to comment Share on other sites More sharing options...
tomerg3 Posted July 29, 2012 Share Posted July 29, 2012 It really depends on what information you want from that table. You can start with running this in phpMyAdmin SELECT * FROM ps_product_attribute And then select only the columns you want. 1 Link to comment Share on other sites More sharing options...
gzoztra Posted July 29, 2012 Author Share Posted July 29, 2012 It really depends on what information you want from that table. You can start with running this in phpMyAdmin SELECT * FROM ps_product_attribute And then select only the columns you want. is there a way to see the product name on it instead of just the product id ? Link to comment Share on other sites More sharing options...
tomerg3 Posted July 29, 2012 Share Posted July 29, 2012 yes, add a a left join on the product table (on id_product) Link to comment Share on other sites More sharing options...
gzoztra Posted July 30, 2012 Author Share Posted July 30, 2012 yes, add a a left join on the product table (on id_product) i didn't understood what you directed me to do :S heres a screenshot Link to comment Share on other sites More sharing options...
gzoztra Posted August 1, 2012 Author Share Posted August 1, 2012 Bump...any clue ? Link to comment Share on other sites More sharing options...
tomerg3 Posted August 2, 2012 Share Posted August 2, 2012 Try SELECT pl.name, pa.id_product_attribute, pa.quantity FROM ps_product_attribute pa LEFT JOIN ps_product_lang pl ON pl.id_product = pa.id_product AND pl.id_lang = 1 Link to comment Share on other sites More sharing options...
gzoztra Posted August 16, 2012 Author Share Posted August 16, 2012 it didnt worked but even with all the attributes shown i cant see the name of the product, only the id # any idea ? 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