Piotr Zabieglik
Piotr Zabieglik
https://github.com/saleor/saleor/issues/11274 I want to merge this change because I want to fetch minor version of Saleor as anonymous user. ```graphql type Shop { ... schemaVersion: String! } ``` # Impact...
https://github.com/saleor/saleor/issues/11277 I want to merge this change, because I want to make email authentication case insensitive. It should be possible to login under the same account using [[email protected]](mailto:[email protected]) and [[email protected]](mailto:[email protected])....
I want to merge this change because currently tests in order app are messy and need to be restructured. # Impact * [ ] New migrations * [ ] New/Updated...
### What I'm trying to achieve I want to add public information about Saleor's api version to `Shop` type. ### Describe a proposed solution ```graphql type Shop { ... schemaVersion:...
https://github.com/saleor/saleor/issues/10915 I want to merge this change because I want to assign attribute values by its ID. I also want to refactor `AttributeValueInput` so that each input type will have...
### What are you trying to achieve? https://saleorcommerce.slack.com/archives/C039MGJDWU8/p1665750963551539 The thing is python built-in `Enum` returns wrong `name` if two members, with different names, have the same value. Example: ``` class...
After implementing [this](https://github.com/saleor/saleor/issues/15224), field `PromotionRule.gifts` returns a list of `ProductVariant` IDs: ```graphql type PromotionRule implements Node @doc(category: "Discounts"){ ... gifts: [ID!] ... } ``` Would be good to return ProductVariant...
When we add shipping voucher to draft order, the discount is not applied. 1. The discount should decrease `Order.base_shipping_price` value. 2. Create `OrderDiscount` object 3. Embed the handler in `fetch_order_prices_if_expired`...
## Problem The `shippingChannelListing` is used to provide the price of the shipping. It is not needed as we already store the shipping_price in Order model. We should change the...
Bug: Order level discounts are not propagated to its lines, if tax calculations is based on plugins.
### What are you trying to achieve? If tax startegy == `TAX_APP` and `manager.get_taxes_for_order` doesn't return any data, order level discount (entire order vouchers and manual discounts) are not reflected...