Commit 3c3aafa2 by 王军业

54665786

1 parent ef49ee42
...@@ -416,7 +416,8 @@ public class ContractServiceImpl implements ContractService { ...@@ -416,7 +416,8 @@ public class ContractServiceImpl implements ContractService {
for (ExportModel exportModel : list) { for (ExportModel exportModel : list) {
if(list_data != null && list_data.size() > 0) { if(list_data != null && list_data.size() > 0) {
for(Map _map:list_data) { for(Map _map:list_data) {
if (exportModel.getSalesperson_unid().equals(_map.get("user_unid"))) {
if (StringUtils.isNotBlank(exportModel.getSalesperson_unid()) && exportModel.getSalesperson_unid().equals(_map.get("user_unid"))) {
exportModel.setSalesperson_name((String) _map.get("name")); exportModel.setSalesperson_name((String) _map.get("name"));
} }
} }
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!