根据采购单生成入库单

This commit is contained in:
砂糖
2025-07-19 15:19:00 +08:00
parent f4001e4bab
commit 3a0c9a7684
8 changed files with 621 additions and 14 deletions

24
klp-ui/src/utils/enums.js Normal file
View File

@@ -0,0 +1,24 @@
// 订单状态
export const EOrderStatus = {
NEW: 0,
PRODUCTIONING: 1,
FINISH: 2,
CANCEL: 3
}
// 采购计划状态
export const EPurchasePlanStatus = {
NEW: 0,
PRUCHASEING: 1,
FINISH: 2,
CANCEL: 3
}
// 采购明细状态
export const EPurchaseDetailStatus = {
NEW: 0,
ONWAY: 1,
ARRIVAL: 2,
REVIEW: 3,
FINISH: 4
}