Skip to content

Commit

Permalink
feat(medusa): Decorate OrderEdit LineItems with totals (#3108)
Browse files Browse the repository at this point in the history
  • Loading branch information
fPolic committed Feb 6, 2023
1 parent e22a383 commit 4d6e63d
Show file tree
Hide file tree
Showing 10 changed files with 291 additions and 132 deletions.
5 changes: 5 additions & 0 deletions .changeset/tame-items-eat.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@medusajs/medusa": patch
---

feat(medusa): decorate order edit line items with totals
Original file line number Diff line number Diff line change
@@ -0,0 +1,193 @@
const path = require("path")
const { IdMap } = require("medusa-test-utils")

const startServerWithEnvironment =
require("../../../../helpers/start-server-with-environment").default
const { useApi } = require("../../../../helpers/use-api")
const { useDb } = require("../../../../helpers/use-db")

const adminSeeder = require("../../../helpers/admin-seeder")

const {
simpleProductFactory,
simpleRegionFactory,
simpleCartFactory,
} = require("../../../factories")

jest.setTimeout(30000)

const adminReqConfig = {
headers: {
Authorization: "Bearer test_token",
},
}

describe("[MEDUSA_FF_TAX_INCLUSIVE_PRICING] /admin/order-edits", () => {
let medusaProcess
let dbConnection

beforeAll(async () => {
const cwd = path.resolve(path.join(__dirname, "..", "..", ".."))
const [process, connection] = await startServerWithEnvironment({
cwd,
env: { MEDUSA_FF_TAX_INCLUSIVE_PRICING: true },
})
dbConnection = connection
medusaProcess = process
})

afterAll(async () => {
const db = useDb()
await db.shutdown()

medusaProcess.kill()
})

describe("Items totals", () => {
let product1
const prodId1 = IdMap.getId("prodId1")
const lineItemId1 = IdMap.getId("line-item-1")

beforeEach(async () => {
await adminSeeder(dbConnection)

product1 = await simpleProductFactory(dbConnection, {
id: prodId1,
})
})

afterEach(async () => {
const db = useDb()
return await db.teardown()
})

it("decorates items with (tax-inclusive) totals", async () => {
const taxInclusiveRegion = await simpleRegionFactory(dbConnection, {
tax_rate: 25,
includes_tax: true,
})

const taxInclusiveCart = await simpleCartFactory(dbConnection, {
email: "adrien@test.com",
region: taxInclusiveRegion.id,
line_items: [
{
id: lineItemId1,
variant_id: product1.variants[0].id,
quantity: 2,
unit_price: 10000,
includes_tax: true,
},
],
})

const api = useApi()

await api.post(`/store/carts/${taxInclusiveCart.id}/payment-sessions`)

const completeRes = await api.post(
`/store/carts/${taxInclusiveCart.id}/complete`
)

const order = completeRes.data.data

const response = await api.post(
`/admin/order-edits/`,
{
order_id: order.id,
internal_note: "This is an internal note",
},
adminReqConfig
)

expect(response.status).toEqual(200)
expect(response.data.order_edit).toEqual(
expect.objectContaining({
items: expect.arrayContaining([
expect.objectContaining({
// 2x items | unit_price: 10000 (tax incl.) | 25% tax
original_item_id: lineItemId1,
subtotal: 2 * 8000,
discount_total: 0,
total: 2 * 10000,
unit_price: 10000,
original_total: 2 * 10000,
original_tax_total: 2 * 2000,
tax_total: 2 * 2000,
}),
]),
discount_total: 0,
gift_card_total: 0,
gift_card_tax_total: 0,
shipping_total: 0,
subtotal: 16000,
tax_total: 4000,
total: 20000,
difference_due: 0,
})
)
})

it("decorates items with (tax-exclusive) totals", async () => {
const taxInclusiveRegion = await simpleRegionFactory(dbConnection, {
tax_rate: 25,
})

const cart = await simpleCartFactory(dbConnection, {
email: "adrien@test.com",
region: taxInclusiveRegion.id,
line_items: [
{
id: lineItemId1,
variant_id: product1.variants[0].id,
quantity: 2,
unit_price: 10000,
},
],
})

const api = useApi()

await api.post(`/store/carts/${cart.id}/payment-sessions`)

const completeRes = await api.post(`/store/carts/${cart.id}/complete`)

const order = completeRes.data.data

const response = await api.post(
`/admin/order-edits/`,
{
order_id: order.id,
internal_note: "This is an internal note",
},
adminReqConfig
)

expect(response.status).toEqual(200)
expect(response.data.order_edit).toEqual(
expect.objectContaining({
items: expect.arrayContaining([
expect.objectContaining({
original_item_id: lineItemId1,
subtotal: 2 * 10000,
discount_total: 0,
unit_price: 10000,
total: 2 * 10000 + 2 * 2500,
original_total: 2 * 10000 + 2 * 2500,
original_tax_total: 2 * 2500,
tax_total: 2 * 2500,
}),
]),
discount_total: 0,
gift_card_total: 0,
gift_card_tax_total: 0,
shipping_total: 0,
subtotal: 20000,
tax_total: 5000,
total: 25000,
difference_due: 0,
})
)
})
})
})
Original file line number Diff line number Diff line change
@@ -1,27 +1,25 @@
const path = require("path")
const { OrderEditItemChangeType, OrderEdit } = require("@medusajs/medusa")
const { IdMap } = require("medusa-test-utils")

const startServerWithEnvironment =
require("../../../helpers/start-server-with-environment").default
const { useApi } = require("../../../helpers/use-api")
const { useDb, initDb } = require("../../../helpers/use-db")
const adminSeeder = require("../../helpers/admin-seeder")
const { useApi } = require("../../../../helpers/use-api")
const { useDb, initDb } = require("../../../../helpers/use-db")
const adminSeeder = require("../../../helpers/admin-seeder")
const {
simpleOrderEditFactory,
} = require("../../factories/simple-order-edit-factory")
const { IdMap } = require("medusa-test-utils")
} = require("../../../factories/simple-order-edit-factory")
const {
simpleOrderItemChangeFactory,
} = require("../../factories/simple-order-item-change-factory")
} = require("../../../factories/simple-order-item-change-factory")
const {
simpleLineItemFactory,
simpleProductFactory,
simpleOrderFactory,
simpleDiscountFactory,
simpleCartFactory,
simpleRegionFactory,
} = require("../../factories")
const { OrderEditItemChangeType, OrderEdit } = require("@medusajs/medusa")
const setupServer = require("../../../helpers/setup-server")
} = require("../../../factories")
const setupServer = require("../../../../helpers/setup-server")

jest.setTimeout(30000)

Expand All @@ -37,11 +35,9 @@ describe("/admin/order-edits", () => {
const adminUserId = "admin_user"

beforeAll(async () => {
const cwd = path.resolve(path.join(__dirname, "..", ".."))
const cwd = path.resolve(path.join(__dirname, "..", "..", ".."))
dbConnection = await initDb({ cwd })
medusaProcess = await setupServer({
cwd,
})
medusaProcess = await setupServer({ cwd })
})

afterAll(async () => {
Expand Down Expand Up @@ -1167,6 +1163,7 @@ describe("/admin/order-edits", () => {
id: orderId1,
fulfillment_status: "fulfilled",
payment_status: "captured",
tax_rate: null,
region: {
id: "test-region",
name: "Test region",
Expand Down Expand Up @@ -2572,13 +2569,15 @@ describe("/admin/order-edits", () => {
]),
}),
]),
discount_total: 2000,
// rounding issue since we are allocating 1/3 of the discount to one item and 2/3 to the other item where both cost 10
// resulting in adjustment amounts like: 1333...
discount_total: 2001,
total: 1099,
gift_card_total: 0,
gift_card_tax_total: 0,
shipping_total: 0,
subtotal: 3000,
tax_total: 100,
total: 1100,
})
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { IdMap } from "medusa-test-utils"
import { request } from "../../../../../helpers/test-request"
import { orderEditServiceMock } from "../../../../../services/__mocks__/order-edit"


describe("GET /admin/order-edits/:id", () => {
describe("successfully requests an order edit confirmation", () => {
const orderEditId = IdMap.getId("testRequestOrder")
Expand Down Expand Up @@ -35,8 +34,6 @@ describe("GET /admin/order-edits/:id", () => {
orderEditId,
{ requestedBy: IdMap.getId("admin_user") }
)

expect(orderEditServiceMock.update).toHaveBeenCalledTimes(1)
})

it("returns updated orderEdit", () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export default async (req, res) => {
requestedBy: loggedInUser,
})

const total = await orderEditServiceTx.getTotals(orderEdit.id)
const total = await orderEditServiceTx.decorateTotals(orderEdit)

if (total.difference_due > 0) {
const order = await orderService
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,20 +79,25 @@ export default async (req: Request, res: Response) => {

const manager: EntityManager = req.scope.resolve("manager")

await manager.transaction(async (transactionManager) => {
await orderEditService
.withTransaction(transactionManager)
.updateLineItem(id, item_id, validatedBody)
})
const decoratedEdit = await manager.transaction(
async (transactionManager) => {
const orderEditTx = orderEditService.withTransaction(transactionManager)

let orderEdit = await orderEditService.retrieve(id, {
select: defaultOrderEditFields,
relations: defaultOrderEditRelations,
})
orderEdit = await orderEditService.decorateTotals(orderEdit)
await orderEditTx.updateLineItem(id, item_id, validatedBody)

const orderEdit = await orderEditTx.retrieve(id, {
select: defaultOrderEditFields,
relations: defaultOrderEditRelations,
})

await orderEditTx.decorateTotals(orderEdit)

return orderEdit
}
)

res.status(200).send({
order_edit: orderEdit,
order_edit: decoratedEdit,
})
}

Expand Down
12 changes: 0 additions & 12 deletions packages/medusa/src/services/__mocks__/order-edit.js
Original file line number Diff line number Diff line change
Expand Up @@ -117,18 +117,6 @@ export const orderEditServiceMock = {
declined_at: new Date(),
})
}),
getTotals: jest.fn().mockImplementation((id) => {
return Promise.resolve({
shipping_total: 10,
gift_card_total: 0,
gift_card_tax_total: 0,
discount_total: 0,
tax_total: 1,
subtotal: 2000,
difference_due: 1000,
total: 1000,
})
}),
delete: jest.fn().mockImplementation((_) => {
return Promise.resolve()
}),
Expand Down
7 changes: 5 additions & 2 deletions packages/medusa/src/services/__tests__/order-edit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,12 @@ import { OrderEditItemChangeType, OrderEditStatus } from "../../models"
import {
EventBusService,
LineItemService,
NewTotalsService,
OrderEditItemChangeService,
OrderEditService,
OrderService,
TaxProviderService,
TotalsService
TotalsService,
} from "../index"
import LineItemAdjustmentService from "../line-item-adjustment"
import { EventBusServiceMock } from "../__mocks__/event-bus"
Expand All @@ -17,6 +18,7 @@ import { OrderServiceMock } from "../__mocks__/order"
import { orderEditItemChangeServiceMock } from "../__mocks__/order-edit-item-change"
import { taxProviderServiceMock } from "../__mocks__/tax-provider"
import { TotalsServiceMock } from "../__mocks__/totals"
import NewTotalsServiceMock from "../__mocks__/new-totals"

const orderEditToUpdate = {
id: IdMap.getId("order-edit-to-update"),
Expand Down Expand Up @@ -188,6 +190,7 @@ describe("OrderEditService", () => {
orderService: OrderServiceMock as unknown as OrderService,
eventBusService: EventBusServiceMock as unknown as EventBusService,
totalsService: TotalsServiceMock as unknown as TotalsService,
newTotalsService: NewTotalsServiceMock as unknown as NewTotalsService,
lineItemService: lineItemServiceMock as unknown as LineItemService,
orderEditItemChangeService:
orderEditItemChangeServiceMock as unknown as OrderEditItemChangeService,
Expand Down Expand Up @@ -330,7 +333,7 @@ describe("OrderEditService", () => {
let result

beforeEach(async () => {
jest.spyOn(orderEditService, "getTotals").mockResolvedValue({
jest.spyOn(orderEditService, "decorateTotals").mockResolvedValue({
difference_due: 1500,
} as any)

Expand Down
Loading

0 comments on commit 4d6e63d

Please sign in to comment.