Hello
I am experiencing an issue when creating new products in Django Oscar. It seems that for each product I create, a new separate category is also being created automatically. This behavior is not what I expected, as I would like to assign new products to existing categories instead of generating new ones.
Steps to Reproduce:
-
Navigate to the product creation POST API of admin api/admin/product.
-
Fill in the product object and hit POST API.
Upon saving, I notice that a new category is created alongside the product, rather than associating the product with the selected existing category.
Expected Behavior:l expect that when I create a new product and assign it to an existing category, the product should be linked to that category without creating a new one
Actual Behavior A new category is created every time a new product is added, which results in unnecessary clutter in the category management.
Thank you,
Shivam Mahajan
Hello
I am experiencing an issue when creating new products in Django Oscar. It seems that for each product I create, a new separate category is also being created automatically. This behavior is not what I expected, as I would like to assign new products to existing categories instead of generating new ones.
Steps to Reproduce:
Navigate to the product creation POST API of admin api/admin/product.
Fill in the product object and hit POST API.
Upon saving, I notice that a new category is created alongside the product, rather than associating the product with the selected existing category.
Expected Behavior:l expect that when I create a new product and assign it to an existing category, the product should be linked to that category without creating a new one
Actual Behavior A new category is created every time a new product is added, which results in unnecessary clutter in the category management.
Thank you,
Shivam Mahajan