prak Posted April 9, 2017 Share Posted April 9, 2017 Hello, I want to create all possible combinations of a product at once, programmatically. I can see this function addAttributeCombinationMultiple in the product.php class to add them to the product but I do not know how to create all the possible combinations. Any help would be greatly appreciated! Link to comment Share on other sites More sharing options...
selectshop.at Posted April 9, 2017 Share Posted April 9, 2017 You should add your products by csv import (with Prestashop native import function, or other tool like the Presta Store Manager). With StoreManager you can add products AND combinations at once. With Prestashop native import function, only in steps. http://doc.prestashop.com/display/PS16/CSV+Import+Parameters - same for PS 1.7. Link to comment Share on other sites More sharing options...
prak Posted April 9, 2017 Author Share Posted April 9, 2017 Thanks for the reply selectshop.at but I want to accomplish this programmatically through my module. I want to create a controller which will generate all possible combinations for a product, instead of generating them one by one like the default product combination generator. Is there no way to do this? Link to comment Share on other sites More sharing options...
DataKick Posted April 19, 2017 Share Posted April 19, 2017 Thanks for the reply selectshop.at but I want to accomplish this programmatically through my module. I want to create a controller which will generate all possible combinations for a product, instead of generating them one by one like the default product combination generator. Is there no way to do this? well, you can get all combinations by using cartesian product between your attributes. Be aware that this may produce very big dataset, depending on cardinality of your attributes. 1 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