Commit b035c2eb authored by hongguangwu's avatar hongguangwu

商险优化

parent 9665e947
...@@ -1572,7 +1572,10 @@ public class TInsuranceDetailServiceImpl extends ServiceImpl<TInsuranceDetailMap ...@@ -1572,7 +1572,10 @@ public class TInsuranceDetailServiceImpl extends ServiceImpl<TInsuranceDetailMap
* @return: void * @return: void
**/ **/
private void doFailInfo(List<TInsuranceDetail> sourceList, List<String> sourceIdCardList, List<String> replaceIdList, String toStatus) { private void doFailInfo(List<TInsuranceDetail> sourceList, List<String> sourceIdCardList, List<String> replaceIdList, String toStatus) {
List<TInsuranceDetail> sourceEmpList = baseMapper.selectByIdCardList(sourceIdCardList, replaceIdList); List<TInsuranceDetail> sourceEmpList = null;
if (sourceIdCardList != null && !sourceIdCardList.isEmpty()) {
sourceEmpList = baseMapper.selectByIdCardList(sourceIdCardList, replaceIdList);
}
if (sourceEmpList != null && !sourceEmpList.isEmpty()) { if (sourceEmpList != null && !sourceEmpList.isEmpty()) {
// 项目档案状态 // 项目档案状态
Map<String , Integer> proStatusMap = new HashMap<>(); Map<String , Integer> proStatusMap = new HashMap<>();
......
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