企标制修订 立项 导入bug

This commit is contained in:
yuezhihang
2022-03-31 17:25:14 +08:00
parent 61d6bff12b
commit adf4e92c94
@@ -69,7 +69,7 @@ public class IExportServiceImpl implements IExportService {
int i = 1;
for (importExcelDTO importExcelDTO : res) {
if (null != importExcelDTO.getWgLeader() && !"".equals(importExcelDTO.getWgLeader())) {
importExcelDTO.setWgLeaderName(tsUserMap.get(importExcelDTO.getWgLeader()));
importExcelDTO.setWgLeaderName(tsUserMap.get(importExcelDTO.getWgLeader())+"("+importExcelDTO.getWgLeader()+")");
if (null == tsUserMap.get(importExcelDTO.getWgLeader())) {
stringBuilder.append("" + i + "行第7列工作组组长填写不符合格式要求请检查;");
}
@@ -81,13 +81,13 @@ public class IExportServiceImpl implements IExportService {
}
}
if (null != importExcelDTO.getDrafter() && !"".equals(importExcelDTO.getDrafter())) {
importExcelDTO.setDrafterName(tsUserMap.get(importExcelDTO.getDrafter()));
importExcelDTO.setDrafterName(tsUserMap.get(importExcelDTO.getDrafter())+"("+importExcelDTO.getDrafter()+")");
if (null == tsUserMap.get(importExcelDTO.getDrafter())) {
stringBuilder.append("" + i + "行第5列起草人填写不符合格式要求请检查;");
}
}
if (null != importExcelDTO.getResPerson() && !"".equals(importExcelDTO.getResPerson())) {
importExcelDTO.setResPersonName(tsUserMap.get(importExcelDTO.getResPerson()));
importExcelDTO.setResPersonName(tsUserMap.get(importExcelDTO.getResPerson())+"("+importExcelDTO.getResPerson()+")");
if (null == tsUserMap.get(importExcelDTO.getResPerson())) {
stringBuilder.append("" + i + "行第6列评审责任人填写不符合格式要求请检查;");
}