fix 80818 未符合项-导出 导出内容需更改
fix 80612 未符合项-实际整改完成时间没有回显数据
This commit is contained in:
+2
@@ -1,6 +1,7 @@
|
||||
package com.jero.modules.activiti.process.projectnotmet.service;
|
||||
|
||||
import cn.hutool.core.collection.CollStreamUtil;
|
||||
import cn.hutool.core.date.DateUtil;
|
||||
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
||||
import com.baomidou.mybatisplus.core.conditions.update.LambdaUpdateWrapper;
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
@@ -293,6 +294,7 @@ public class ProcessProjectNotMetService extends ServiceImpl<ProcessProjectNotMe
|
||||
//更新未符合项列表状态
|
||||
LambdaUpdateWrapper<LawsEvaluationNotMet> wrapper = new LambdaUpdateWrapper<>();
|
||||
wrapper.set(LawsEvaluationNotMet::getState, UNDER_APPROVAL);
|
||||
wrapper.set(LawsEvaluationNotMet::getRealityTime, DateUtil.date());
|
||||
wrapper.in(LawsEvaluationNotMet::getId,projectNotMetIdList);
|
||||
lawsEvaluationNotMetService.update(wrapper);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user