We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm running into a weird situation:
Now, when I add multiple items to my basket, that $25 discount is applied to every single item. This is the basket object I get back from BasketList:
BasketList
[ { "id": 18702320, "owner": "http://localhost:8000/api/users/252094/", "status": "Open", "lines_url": "http://localhost:8000/api/baskets/18702320/lines/", "lines": [ { "url": "http://localhost:8000/api/baskets/18702320/lines/3818082/", "product_id": 48, "product": "http://localhost:8000/api/products/48/", "quantity": 1, "attributes": [], "price_currency": "USD", "price_excl_tax": "374.00", "price_incl_tax": "374.00", "price_incl_tax_excl_discounts": "399.00", "price_excl_tax_excl_discounts": "399.00", "is_tax_known": true, "warning": null, "basket": "http://localhost:8000/api/baskets/18702320/", "stockrecord": "http://localhost:8000/api/products/48/stockrecords/46/", "date_created": "2023-08-07T14:44:35.202632Z", "date_updated": "2023-08-07T14:48:31.285793Z" }, { "url": "http://localhost:8000/api/baskets/18702320/lines/3818131/", "product_id": 6, "product": "http://localhost:8000/api/products/6/", "quantity": 1, "attributes": [], "price_currency": "USD", "price_excl_tax": "124.00", "price_incl_tax": "124.00", "price_incl_tax_excl_discounts": "149.00", "price_excl_tax_excl_discounts": "149.00", "is_tax_known": true, "warning": null, "basket": "http://localhost:8000/api/baskets/18702320/", "stockrecord": "http://localhost:8000/api/products/6/stockrecords/2/", "date_created": "2023-08-07T14:48:33.957707Z", "date_updated": "2023-08-07T14:48:33.957713Z" } ], "url": "http://localhost:8000/api/baskets/18702320/", "total_excl_tax": "498.00", "total_excl_tax_excl_discounts": "548.00", "total_incl_tax": "498.00", "total_incl_tax_excl_discounts": "548.00", "total_tax": "0.00", "currency": "USD", "voucher_discounts": [ { "description": null, "name": "$25 coupon", "amount": "50.00", "voucher": { "name": "Voucher Set - 300", "code": "2D8N-KFP3-ZXU5", "start_datetime": "2023-08-01T12:15:00Z", "end_datetime": "2023-12-31T14:15:00Z" } } ], "offer_discounts": [], "is_tax_known": true } ]
So you can see that a discount of $50 is applied to the basket, even though it shouldn't:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm running into a weird situation:
Now, when I add multiple items to my basket, that $25 discount is applied to every single item. This is the basket object I get back from
BasketList
:So you can see that a discount of $50 is applied to the basket, even though it shouldn't:
The text was updated successfully, but these errors were encountered: