Fix/pricing update fixes (#5275)

* fix for merging line items and quantity prices

* add changeset

* fix draft order unit_price calculation

* update test to reflect only quantity change

* fix unit tests

* update conditional
This commit is contained in:
Philip Korsholm
2023-10-03 11:20:49 +02:00
committed by GitHub
parent c5703a4765
commit 90e24c593f
9 changed files with 186 additions and 67 deletions

View File

@@ -950,6 +950,41 @@ describe("/admin/draft-orders", () => {
expect(updatedDraftOrder.data.draft_order.cart.subtotal).not.toEqual(0)
})
it("updates a line item on the draft order with quantity", async () => {
const api = useApi()
await api.post(
"/admin/draft-orders/test-draft-order/line-items/test-item",
{
unit_price: 1000,
},
adminReqConfig
)
const response = await api.post(
"/admin/draft-orders/test-draft-order/line-items/test-item",
{
quantity: 2,
},
adminReqConfig
)
expect(response.status).toEqual(200)
const updatedDraftOrder = await api.get(
`/admin/draft-orders/test-draft-order`,
adminReqConfig
)
const item = updatedDraftOrder.data.draft_order.cart.items[0]
expect(item.unit_price).toEqual(1000)
expect(item.quantity).toEqual(2)
expect(updatedDraftOrder.data.draft_order.cart.subtotal).not.toEqual(
undefined
)
expect(updatedDraftOrder.data.draft_order.cart.subtotal).not.toEqual(0)
})
it("removes the line item, if quantity is 0", async () => {
const api = useApi()