fix 80720 未符合项-查看

This commit is contained in:
lijiarao
2024-01-12 14:30:41 +08:00
parent c022a63c61
commit 986b585147
2 changed files with 21 additions and 4 deletions
@@ -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);
}
}
}
@@ -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 = "预计整改完成日期范围")