feat(workflow): 实现自定义选择下一个处理人功能
- 在前端增加提示信息,指导用户指定下一个任务的处理人 - 在后端增加逻辑,处理用户选择的下一个处理人 - 修改数据库,增加采购计划详情编号字段- 优化采购计划详情查询条件,支持按详情编号查询
This commit is contained in:
6
klp-admin/src/main/resources/db/migration/V4__newSql.sql
Normal file
6
klp-admin/src/main/resources/db/migration/V4__newSql.sql
Normal file
@@ -0,0 +1,6 @@
|
||||
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;
|
||||
|
||||
Reference in New Issue
Block a user