// @generated — do not edit import { defineLifecycle } from "@tailor-platform/erp-kit/core"; export const salesOrderLifecycle = defineLifecycle({ submit: { from: ["DRAFT"], to: "SUBMITTED" }, reject: { from: ["SUBMITTED"], to: "DRAFT" }, confirm: { from: ["SUBMITTED"], to: "CONFIRMED" }, cancel: { from: ["CONFIRMED", "DRAFT", "SUBMITTED"], to: "CANCELLED" }, close: { from: ["CONFIRMED"], to: "CLOSED" }, }); export type SalesOrderStatus = typeof salesOrderLifecycle.states[number];