Commit 9e2286d6 authored by fangxinjiang's avatar fangxinjiang

商险自动化限制:新增、批增、替换-fxj

parent c6549c13
...@@ -3081,7 +3081,7 @@ public class TInsuranceDetailServiceImpl extends ServiceImpl<TInsuranceDetailMap ...@@ -3081,7 +3081,7 @@ public class TInsuranceDetailServiceImpl extends ServiceImpl<TInsuranceDetailMap
departNos = paramList.stream().map(InsuranceAddParam::getDeptNo).collect(Collectors.toList()); departNos = paramList.stream().map(InsuranceAddParam::getDeptNo).collect(Collectors.toList());
} }
if (Common.isNotNull(departNos)){ if (Common.isNotNull(departNos)){
R<Map<String, String>> resR = archivesDaprUtil.getCustomerUserMap(departNos); R<Map<String, String>> resR = archivesDaprUtil.getInsuranceAutoSetMap(departNos);
if (Common.isNotNull(resR) && Common.isNotNull(resR.getData())){ if (Common.isNotNull(resR) && Common.isNotNull(resR.getData())){
insurAutoMap = resR.getData(); insurAutoMap = resR.getData();
}else { }else {
...@@ -3098,7 +3098,7 @@ public class TInsuranceDetailServiceImpl extends ServiceImpl<TInsuranceDetailMap ...@@ -3098,7 +3098,7 @@ public class TInsuranceDetailServiceImpl extends ServiceImpl<TInsuranceDetailMap
departNos = paramList.stream().map(InsuranceBatchParam::getDeptNo).collect(Collectors.toList()); departNos = paramList.stream().map(InsuranceBatchParam::getDeptNo).collect(Collectors.toList());
} }
if (Common.isNotNull(departNos)){ if (Common.isNotNull(departNos)){
R<Map<String, String>> resR = archivesDaprUtil.getCustomerUserMap(departNos); R<Map<String, String>> resR = archivesDaprUtil.getInsuranceAutoSetMap(departNos);
if (Common.isNotNull(resR) && Common.isNotNull(resR.getData())){ if (Common.isNotNull(resR) && Common.isNotNull(resR.getData())){
insurAutoMap = resR.getData(); insurAutoMap = resR.getData();
}else { }else {
...@@ -3114,7 +3114,7 @@ public class TInsuranceDetailServiceImpl extends ServiceImpl<TInsuranceDetailMap ...@@ -3114,7 +3114,7 @@ public class TInsuranceDetailServiceImpl extends ServiceImpl<TInsuranceDetailMap
departNos = paramList.stream().map(InsuranceReplaceParam::getReplaceDeptNo).collect(Collectors.toList()); departNos = paramList.stream().map(InsuranceReplaceParam::getReplaceDeptNo).collect(Collectors.toList());
} }
if (Common.isNotNull(departNos)){ if (Common.isNotNull(departNos)){
R<Map<String, String>> resR = archivesDaprUtil.getCustomerUserMap(departNos); R<Map<String, String>> resR = archivesDaprUtil.getInsuranceAutoSetMap(departNos);
if (Common.isNotNull(resR) && Common.isNotNull(resR.getData())){ if (Common.isNotNull(resR) && Common.isNotNull(resR.getData())){
insurAutoMap = resR.getData(); insurAutoMap = resR.getData();
}else { }else {
......
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