django-shop-simplevariations
django-shop-simplevariations copied to clipboard
A Django SHOP application to handle simple product variations like different colors, sizes, as well as custom text
When I tried migrating a working setup from sqlite3 to PostgreSQL, I hit the following error: ``` IntegrityError at /cart/ insert or update on table "shop_simplevariations_cartitemoption" violates foreign key constraint...
I would like the default item_option_group value be a non-valid "Choose Size" (or similar). Currently, there doesn't appear to be a way to specify a non-valid option as the default...
This is just my expectation, because of the patterns established elsewhere in Django SHOP, so please let me know if I am interpreting this incorrectly. I don't see any code...
I have a simple product defined in my model along with a variation with a separate price but does not seem to adjust the price when I add the product...
As far as I can see simplevariations will not work when the user defined a custom model for the product via SHOP_PRODUCT_MODEL?
Hi I am trying to get simplevariations to work in a given environment which requires exactly one text option (an engraving) and when I tryed to add the same product...
Hello, I've been playing a little bit with the code. What I've done in this branch is to create a dinamic form called SimpleVariationsForm. The form takes the options and...
When I add to the cart I get this exception: ``` Exception Value: process_cart_item() takes exactly 2 arguments (3 given) env/lib/python2.7/site-packages/shop/models/defaults/bases.py in update modifier.process_cart_item(self, state) modifier: self: ``` Versions: -...
Hi there, thanks for this useful module. There is a feature, which is not covered by it: variations per product. Assume, you have an very individual product, like a handmade...