Files
klp-oa/klp-admin/src/main/resources/db/migration/V4__newSql.sql
Joshi e91b981923 feat(workflow): 实现自定义选择下一个处理人功能
- 在前端增加提示信息,指导用户指定下一个任务的处理人
- 在后端增加逻辑,处理用户选择的下一个处理人
- 修改数据库,增加采购计划详情编号字段- 优化采购计划详情查询条件,支持按详情编号查询
2025-08-22 10:31:24 +08:00

7 lines
208 B
SQL

alter table wms_purchase_plan_detail
modify plan_id bigint null comment '采购计划ID';
alter table wms_purchase_plan_detail
add detail_code varchar(64) null comment '详情编码' after plan_id;