fix 80720 未符合项-查看
This commit is contained in:
+9
-4
@@ -247,10 +247,15 @@ public class ProcessProjectNotMetService extends ServiceImpl<ProcessProjectNotMe
|
||||
lawsEvaluationNotMetService.update(wrapper);
|
||||
//如果通过,更新未符合项列表的流程编号
|
||||
if (pass){
|
||||
LambdaUpdateWrapper<LawsEvaluationNotMet> wrapper1 = new LambdaUpdateWrapper<>();
|
||||
wrapper1.set(LawsEvaluationNotMet::getPrcNum, processAll.getPrcNum());
|
||||
wrapper1.in(LawsEvaluationNotMet::getId,projectNotMetIdList);
|
||||
lawsEvaluationNotMetService.update(wrapper1);
|
||||
for (ProcessProjectNotMetLink processProjectNotMetLink : processProjectNotMetLinks) {
|
||||
LambdaUpdateWrapper<LawsEvaluationNotMet> wrapper1 = new LambdaUpdateWrapper<>();
|
||||
wrapper1.set(LawsEvaluationNotMet::getPrcNum, processAll.getPrcNum());
|
||||
wrapper1.set(LawsEvaluationNotMet::getFileId, processProjectNotMetLink.getFileId());
|
||||
wrapper1.set(LawsEvaluationNotMet::getDescription, processProjectNotMetLink.getDescription());
|
||||
wrapper1.in(LawsEvaluationNotMet::getId,processProjectNotMetLink.getProjectNotMetId());
|
||||
lawsEvaluationNotMetService.update(wrapper1);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+12
@@ -137,6 +137,18 @@ public class LawsEvaluationNotMet implements Serializable {
|
||||
@ApiModelProperty(value = "所属流程")
|
||||
private String prcNum;
|
||||
|
||||
/**
|
||||
* 依据描述
|
||||
*/
|
||||
@ApiModelProperty(value = "依据描述")
|
||||
private String description;
|
||||
|
||||
/**
|
||||
* 佐证材料
|
||||
*/
|
||||
@ApiModelProperty(value = "佐证材料")
|
||||
private String fileId;
|
||||
|
||||
/**预计整改完成日期范围*/
|
||||
@TableField(exist = false)
|
||||
@ApiModelProperty(value = "预计整改完成日期范围")
|
||||
|
||||
Reference in New Issue
Block a user