Skip to content
New issue

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

fix(medusa): Update line item adjustments upon cart discount removal #2751

Merged
merged 5 commits into from
Dec 12, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/young-jobs-wink.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@medusajs/medusa": patch
---

fix(medusa): Should update the adjustments upon cart discount removal
177 changes: 161 additions & 16 deletions integration-tests/api/__tests__/store/cart/cart.js
Original file line number Diff line number Diff line change
Expand Up @@ -520,6 +520,7 @@ describe("/store/carts", () => {

let discountCart
let discount

beforeEach(async () => {
discount = await simpleDiscountFactory(dbConnection, discountData, 100)
discountCart = await simpleCartFactory(
Expand Down Expand Up @@ -1042,6 +1043,86 @@ describe("/store/carts", () => {
expect(response.status).toEqual(200)
})

it("successfully removes adjustments upon update without discounts", async () => {
const discountData = {
code: "MEDUSA185DKK",
id: "medusa-185",
rule: {
allocation: "total",
type: "fixed",
value: 185,
},
regions: ["test-region"],
}

const cartId = "discount-cart"

const discount = await simpleDiscountFactory(dbConnection, discountData, 100)
const discountCart = await simpleCartFactory(
dbConnection,
{
id: cartId,
customer: "test-customer",
region: "test-region",
shipping_address: {
address_1: "next door",
first_name: "lebron",
last_name: "james",
country_code: "dk",
postal_code: "100",
},
shipping_methods: [
{
shipping_option: "test-option",
price: 1000,
},
],
},
100
)
await dbConnection.manager
.createQueryBuilder()
.relation(Cart, "discounts")
.of(discountCart)
.add(discount)

const api = useApi()

let response = await api
.post(
`/store/carts/${cartId}/line-items`,
{
quantity: 1,
variant_id: "test-variant-quantity",
},
)

expect(response.data.cart.items.length).toEqual(1)
expect(response.data.cart.items).toEqual(
expect.arrayContaining([
expect.objectContaining({
adjustments: [
expect.objectContaining({
amount: 185,
discount_id: "medusa-185",
}),
],
}),
])
)

response = await api
.post(
`/store/carts/${cartId}`,
{
discounts: [],
},
)

expect(response.data.cart.items.length).toEqual(1)
expect(response.data.cart.items[0].adjustments).toHaveLength(0)
})

it("successfully passes customer conditions with `not_in` operator and applies discount", async () => {
const api = useApi()

Expand Down Expand Up @@ -2035,17 +2116,23 @@ describe("/store/carts", () => {
})

describe("DELETE /store/carts/:id/discounts/:code", () => {
const discountData = {
code: "MEDUSA185DKK",
id: "medusa-185",
rule: {
allocation: "total",
type: "fixed",
value: 185,
},
regions: ["test-region"],
}

beforeEach(async () => {
try {
await cartSeeder(dbConnection)
await dbConnection.manager.query(
`INSERT INTO "cart_discounts" (cart_id, discount_id)
VALUES ('test-cart', 'free-shipping')`
)
} catch (err) {
console.log(err)
throw err
}
await cartSeeder(dbConnection)
await dbConnection.manager.query(
`INSERT INTO "cart_discounts" (cart_id, discount_id)
VALUES ('test-cart', 'free-shipping')`
)
})

afterEach(async () => {
Expand Down Expand Up @@ -2073,16 +2160,74 @@ describe("/store/carts", () => {
expect(response.data.cart.shipping_total).toBe(1000)
expect(response.status).toEqual(200)
})

it("removes line item adjustments upon discount deletion", async () => {
const cartId = "discount-cart"
const discount = await simpleDiscountFactory(dbConnection, discountData, 100)
const discountCart = await simpleCartFactory(
dbConnection,
{
id: cartId,
customer: "test-customer",
region: "test-region",
shipping_address: {
address_1: "next door",
first_name: "lebron",
last_name: "james",
country_code: "dk",
postal_code: "100",
},
shipping_methods: [
{
shipping_option: "test-option",
price: 1000,
},
],
},
100
)
await dbConnection.manager
.createQueryBuilder()
.relation(Cart, "discounts")
.of(discountCart)
.add(discount)

const api = useApi()

let response = await api
.post(
`/store/carts/${cartId}/line-items`,
{
quantity: 1,
variant_id: "test-variant-quantity",
},
)

expect(response.data.cart.items.length).toEqual(1)
expect(response.data.cart.items).toEqual(
expect.arrayContaining([
expect.objectContaining({
adjustments: [
expect.objectContaining({
amount: 185,
discount_id: "medusa-185",
}),
],
}),
])
)

response = await api
.delete(`/store/carts/${cartId}/discounts/${discountData.code}`)

expect(response.data.cart.items.length).toEqual(1)
expect(response.data.cart.items[0].adjustments).toHaveLength(0)
})
})

describe("get-cart with session customer", () => {
beforeEach(async () => {
try {
await cartSeeder(dbConnection)
} catch (err) {
console.log(err)
throw err
}
await cartSeeder(dbConnection)
})

afterEach(async () => {
Expand Down
10 changes: 10 additions & 0 deletions packages/medusa/src/services/__tests__/cart.js
Original file line number Diff line number Diff line change
Expand Up @@ -2281,6 +2281,10 @@ describe("CartService", () => {
await cartService.update(IdMap.getId("with-d"), {
discounts: [],
})

expect(LineItemAdjustmentServiceMock.delete).toHaveBeenCalledTimes(1)
expect(LineItemAdjustmentServiceMock.createAdjustments).toHaveBeenCalledTimes(1)

expect(eventBusService.emit).toHaveBeenCalledTimes(1)
expect(eventBusService.emit).toHaveBeenCalledWith(
"cart.updated",
Expand Down Expand Up @@ -2329,6 +2333,7 @@ describe("CartService", () => {
},
},
],
items: [],
region_id: IdMap.getId("good"),
})
},
Expand All @@ -2339,6 +2344,7 @@ describe("CartService", () => {
totalsService,
cartRepository,
eventBusService,
lineItemAdjustmentService: LineItemAdjustmentServiceMock,
taxProviderService: taxProviderServiceMock,
newTotalsService: newTotalsServiceMock,
featureFlagRouter: new FlagRouter({}),
Expand All @@ -2351,6 +2357,9 @@ describe("CartService", () => {
it("successfully removes discount", async () => {
await cartService.removeDiscount(IdMap.getId("fr-cart"), "1234")

expect(LineItemAdjustmentServiceMock.delete).toHaveBeenCalledTimes(1)
expect(LineItemAdjustmentServiceMock.createAdjustments).toHaveBeenCalledTimes(1)

expect(eventBusService.emit).toHaveBeenCalledTimes(1)
expect(eventBusService.emit).toHaveBeenCalledWith(
"cart.updated",
Expand All @@ -2361,6 +2370,7 @@ describe("CartService", () => {
expect(cartRepository.save).toHaveBeenCalledWith({
id: IdMap.getId("cart"),
region_id: IdMap.getId("good"),
items: [],
discounts: [
{
code: "FS1234",
Expand Down
11 changes: 9 additions & 2 deletions packages/medusa/src/services/cart.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1053,7 +1053,7 @@ class CartService extends TransactionBaseService {
}
}

if (isDefined(data.discounts)) {
if (isDefined(data.discounts) && data.discounts.length) {
const previousDiscounts = [...cart.discounts]
cart.discounts.length = 0

Expand Down Expand Up @@ -1081,6 +1081,9 @@ class CartService extends TransactionBaseService {
if (hasFreeShipping) {
await this.adjustFreeShipping_(cart, true)
}
} else if (isDefined(data.discounts) && !data.discounts.length) {
cart.discounts.length = 0
carlos-r-l-rodrigues marked this conversation as resolved.
Show resolved Hide resolved
await this.refreshAdjustments_(cart)
}

if ("gift_cards" in data) {
Expand Down Expand Up @@ -1411,6 +1414,8 @@ class CartService extends TransactionBaseService {
async (transactionManager: EntityManager) => {
const cart = await this.retrieve(cartId, {
relations: [
"items",
"region",
"discounts",
"discounts.rule",
"payment_sessions",
Expand All @@ -1435,7 +1440,9 @@ class CartService extends TransactionBaseService {
)
const updatedCart = await cartRepo.save(cart)

if (updatedCart.payment_sessions?.length) {
await this.refreshAdjustments_(updatedCart)

if (cart.payment_sessions?.length) {
await this.setPaymentSessions(cartId)
}

Expand Down