feat: 仓库管理

This commit is contained in:
砂糖
2025-09-17 15:59:03 +08:00
parent 0346e09dd3
commit 2bd09e2cf4
43 changed files with 5473 additions and 33 deletions

View File

@@ -1,10 +1,3 @@
export const EExpressType = {
SF: "SF",
ZTO: "ZTO",
BEST: "Best",
STO: "STO",
}
// 订单状态
export const EOrderStatus = {
NEW: 0,
@@ -13,3 +6,32 @@ export const EOrderStatus = {
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
}
// 物品类型枚举
export const ITEM_TYPE = {
RAW_MATERIAL: 'raw_material', // 原材料
PRODUCT: 'product' // 产品
};
export const EExpressType = {
SF: "SF",
ZTO: "ZTO",
BEST: "Best",
STO: "STO",
}