Wiseman WMS 核心业务流程架构
graph TD
classDef erpStyle fill:#f5f5f5,stroke:#333,stroke-width:2px;
classDef wmsStyle fill:#fffdf2,stroke:#d4a017,stroke-width:1px;
classDef outboundStyle fill:#e6f3ff,stroke:#0066cc,stroke-width:1px;
classDef internalStyle fill:#f9f9f9,stroke:#ccc;
ERP[[ERP 系统]]:::erpStyle
subgraph WMS [WMS 核心功能执行域]
subgraph Inbound_Process [入库管理]
I1[ASN/收货单] --> I2[到货清点确认]
I2 --> I3{上架策略引擎}
I3 --> I4[生成上架任务]
I4 --> I5[容器入位确认]
end
subgraph Outbound_Process [出库管理模块]
O1[订单池/分配锁定] --> O2[生成拣选任务]
O2 --> O3[库区/动线分解]
O3 --> O4_Judge{拣选模式判定}
O4_Judge -- "量少" --> O5_A[正向拣选: 取货到订单托盘]
O4_Judge -- "量多" --> O5_B["逆向拣选: 留货/库存托盘转订单托盘"]
O4_Judge -- "全部" --> O5_C["整托拣选: 库存托盘转订单托盘"]
O5_A --> O6[余货容器回库]
O5_B --> O6
O5_C --> O7[复核/上线]
O6 --> O7
O7 --> O8[出库确认]
end
subgraph CD_Process [越库/直拨]
C1[越库单匹配] --> C2[收货区拨付]
C2 --> C3[越库分货]
C3 --> C4[余货转入库]
end
subgraph Internal_Process [库内作业]
M1["盘点: 下架-盘核-上架"]
M3["移库: 自动高架移动"]
M5["理货: 合托整理"]
end
end
class WMS wmsStyle;
class Outbound_Process outboundStyle;
class Inbound_Process,CD_Process,Internal_Process outboundStyle;
ERP -- 推送单据/指令 --> I1
ERP -- 推送单据/指令 --> O1
ERP -- 推送指令 --> C1
I2 -- 实收回传 --> ERP
O8 -- 出库完成确认 --> ERP
C3 -- 越库结果回传 --> ERP