Commit 6b8980a9 authored by 18310373984@163.com's avatar 18310373984@163.com

生成分配记录根据失能人员姓名查询,增加trim去掉空格查询

parent 5ac8926d
......@@ -93,7 +93,7 @@ public class ReTaskServiceImpl extends ServiceImpl<TaskMapper, ChAprTask> implem
if (applyStatus.equals(Short.valueOf("2"))) {
//修改失能人员信息,首次申请只需新建
List<ChDisableInfo> disableInfoList = disableInfoMapper.selectList(new LambdaQueryWrapper<ChDisableInfo>()
.eq(ChDisableInfo::getRealName, chDisableApply.getRealName())
.eq(ChDisableInfo::getRealName, chDisableApply.getRealName().trim())//失能申请姓名空格trim()
.eq(ChDisableInfo::getCertiCode, chDisableApply.getCertiCode()));
if (disableInfoList.size() != 0) {
ChDisableInfo chDisableInfo = disableInfoList.get(0);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment