feat: 在制品加业务序列号 + 追溯码改名为身份证

1. 在制品行: 显示 external_serial(业务序列号)
   优先 external_serial → 兜底 product_sn
   旧: 装配 A1B2C3D4  张三
   新: 装配 25022  张三

2. 留言板: 追溯码 → 身份证
   旧: 追溯码: 000000000000000D
   新: 身份证: 000000000000000D

3. 后端: WipTask 新增 external_serial 字段
   关联查询 Product.external_serial
This commit is contained in:
2026-08-12 14:23:23 +08:00
parent ff7c791d49
commit 079b65e761
3 changed files with 9 additions and 4 deletions

View File

@ -20,6 +20,7 @@ export interface WipTask {
task_name: string;
assignee: string;
product_sn: string;
external_serial: string | null;
status: string;
received_at: string;
duration_hours: number;