feat(core-flows, order): add workflow to create change order actions (#8056)
what: - adds workflow to create change order actions
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
import { ChangeActionType } from "@medusajs/utils"
|
||||
import { OrderChangeEvent } from "../../../../types"
|
||||
import { ChangeActionType, calculateOrderChange } from "../../../../utils"
|
||||
import { calculateOrderChange } from "../../../../utils"
|
||||
|
||||
describe("Order Exchange - Actions", function () {
|
||||
const originalOrder = {
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
import { ChangeActionType } from "@medusajs/utils"
|
||||
import { OrderChangeEvent } from "../../../../types"
|
||||
import { ChangeActionType, calculateOrderChange } from "../../../../utils"
|
||||
import { calculateOrderChange } from "../../../../utils"
|
||||
|
||||
describe("Order Return - Actions", function () {
|
||||
const originalOrder = {
|
||||
|
||||
@@ -3,8 +3,7 @@ import {
|
||||
CreateOrderChangeActionDTO,
|
||||
OrderTypes,
|
||||
} from "@medusajs/types"
|
||||
import { promiseAll } from "@medusajs/utils"
|
||||
import { ChangeActionType } from "../../utils"
|
||||
import { ChangeActionType, promiseAll } from "@medusajs/utils"
|
||||
|
||||
async function createOrderChange(
|
||||
service,
|
||||
|
||||
@@ -3,8 +3,7 @@ import {
|
||||
CreateOrderChangeActionDTO,
|
||||
OrderTypes,
|
||||
} from "@medusajs/types"
|
||||
import { promiseAll } from "@medusajs/utils"
|
||||
import { ChangeActionType } from "../../utils"
|
||||
import { ChangeActionType, promiseAll } from "@medusajs/utils"
|
||||
|
||||
async function createOrderChange(
|
||||
service,
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { Context, OrderTypes } from "@medusajs/types"
|
||||
import { ChangeActionType } from "../../utils"
|
||||
import { ChangeActionType } from "@medusajs/utils"
|
||||
|
||||
export async function cancelFulfillment(
|
||||
this: any,
|
||||
|
||||
@@ -3,8 +3,7 @@ import {
|
||||
CreateOrderChangeActionDTO,
|
||||
OrderTypes,
|
||||
} from "@medusajs/types"
|
||||
import { promiseAll } from "@medusajs/utils"
|
||||
import { ChangeActionType } from "../../utils"
|
||||
import { ChangeActionType, promiseAll } from "@medusajs/utils"
|
||||
|
||||
async function createOrderChange(
|
||||
service,
|
||||
|
||||
@@ -4,6 +4,7 @@ import {
|
||||
OrderTypes,
|
||||
} from "@medusajs/types"
|
||||
import {
|
||||
ChangeActionType,
|
||||
ClaimType,
|
||||
ReturnStatus,
|
||||
getShippingMethodsTotals,
|
||||
@@ -12,7 +13,6 @@ import {
|
||||
} from "@medusajs/utils"
|
||||
import { ClaimItem, OrderClaim, Return, ReturnItem } from "@models"
|
||||
import { OrderChangeType } from "@types"
|
||||
import { ChangeActionType } from "../../utils"
|
||||
|
||||
function createClaimAndReturnEntities(em, data, order) {
|
||||
const claimReference = em.create(OrderClaim, {
|
||||
|
||||
@@ -4,6 +4,7 @@ import {
|
||||
OrderTypes,
|
||||
} from "@medusajs/types"
|
||||
import {
|
||||
ChangeActionType,
|
||||
ReturnStatus,
|
||||
getShippingMethodsTotals,
|
||||
isString,
|
||||
@@ -11,7 +12,6 @@ import {
|
||||
} from "@medusajs/utils"
|
||||
import { ExchangeItem, OrderExchange, Return, ReturnItem } from "@models"
|
||||
import { OrderChangeType } from "@types"
|
||||
import { ChangeActionType } from "../../utils"
|
||||
|
||||
function createExchangeAndReturnEntities(em, data, order) {
|
||||
const exchangeReference = em.create(OrderExchange, {
|
||||
|
||||
@@ -4,6 +4,7 @@ import {
|
||||
OrderTypes,
|
||||
} from "@medusajs/types"
|
||||
import {
|
||||
ChangeActionType,
|
||||
ReturnStatus,
|
||||
getShippingMethodsTotals,
|
||||
isDefined,
|
||||
@@ -12,7 +13,6 @@ import {
|
||||
} from "@medusajs/utils"
|
||||
import { Return, ReturnItem } from "@models"
|
||||
import { OrderChangeType } from "@types"
|
||||
import { ChangeActionType } from "../../utils"
|
||||
|
||||
function createReturnReference(em, data, order) {
|
||||
return em.create(Return, {
|
||||
|
||||
@@ -1,7 +1,11 @@
|
||||
import { Context, OrderTypes } from "@medusajs/types"
|
||||
import { MathBN, ReturnStatus, promiseAll } from "@medusajs/utils"
|
||||
import {
|
||||
ChangeActionType,
|
||||
MathBN,
|
||||
ReturnStatus,
|
||||
promiseAll,
|
||||
} from "@medusajs/utils"
|
||||
import { OrderChangeType } from "@types"
|
||||
import { ChangeActionType } from "../../utils"
|
||||
|
||||
function createReturnItems(data) {
|
||||
return data.items.map((item) => ({
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { Context, OrderTypes } from "@medusajs/types"
|
||||
import { ChangeActionType } from "../../utils"
|
||||
import { ChangeActionType } from "@medusajs/utils"
|
||||
|
||||
export async function registerFulfillment(
|
||||
this: any,
|
||||
|
||||
@@ -3,7 +3,7 @@ import {
|
||||
CreateOrderChangeActionDTO,
|
||||
OrderTypes,
|
||||
} from "@medusajs/types"
|
||||
import { ChangeActionType } from "../../utils"
|
||||
import { ChangeActionType } from "@medusajs/utils"
|
||||
|
||||
export async function registerShipment(
|
||||
this: any,
|
||||
|
||||
@@ -2233,6 +2233,7 @@ export default class OrderModuleService<
|
||||
includeActions: boolean,
|
||||
sharedContext?: Context
|
||||
): Promise<any> {
|
||||
orderChangeIds = deduplicate(orderChangeIds)
|
||||
const options = {
|
||||
select: [
|
||||
"id",
|
||||
|
||||
Reference in New Issue
Block a user