feat(workflow): 实现自定义选择下一个处理人功能
- 在前端增加提示信息,指导用户指定下一个任务的处理人 - 在后端增加逻辑,处理用户选择的下一个处理人 - 修改数据库,增加采购计划详情编号字段- 优化采购计划详情查询条件,支持按详情编号查询
This commit is contained in:
@@ -73,4 +73,9 @@ public class WmsPurchasePlanDetail extends BaseEntity {
|
||||
*/
|
||||
private Long contractId;
|
||||
|
||||
/**
|
||||
* 详情编号
|
||||
*/
|
||||
private String detailCode;
|
||||
|
||||
}
|
||||
|
||||
@@ -75,5 +75,10 @@ public class WmsPurchasePlanDetailBo extends BaseEntity {
|
||||
*/
|
||||
private Long contractId;
|
||||
|
||||
/**
|
||||
* 详情编号
|
||||
*/
|
||||
private String detailCode;
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -111,4 +111,9 @@ public class WmsPurchasePlanDetailVo {
|
||||
* 合同编号
|
||||
*/
|
||||
private String contractNo;
|
||||
|
||||
/**
|
||||
* 详情编号
|
||||
*/
|
||||
private String detailCode;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user