fix: 全状态对齐 - 已出库(OUTBOUND)覆盖所有看板

- 看板产品流转 finished_cond 加'已出库',已出库归入已完结
- WIP 矩阵区分'已出库'维度
- MyTasksPage tab 加'已出库'
- 移动端 detail/WorkspaceArea STATUS_MAP 补 OUTBOUND
This commit is contained in:
2026-09-02 09:07:37 +08:00
parent ccc5a23a77
commit e194b97649
4 changed files with 10 additions and 6 deletions

View File

@ -16,6 +16,7 @@ const TABS = [
{ key: "WIP", label: "进行中" },
{ key: "COMPLETED", label: "已完成" },
{ key: "ARCHIVED", label: "已入库" },
{ key: "OUTBOUND", label: "已出库" },
] as const;
type TabKey = (typeof TABS)[number]["key"];