处理社保补缴手动填写异常
This commit is contained in:
parent
cb423962a2
commit
10a11dcca4
|
|
@ -485,8 +485,10 @@ public class SIRepairServiceImpl extends Service implements SIRepairService {
|
||||||
socialMap = socialMap.entrySet().stream().filter(e -> "9002".equals(e.getKey()))
|
socialMap = socialMap.entrySet().stream().filter(e -> "9002".equals(e.getKey()))
|
||||||
.collect(Collectors.toMap(Map.Entry::getKey, Map.Entry::getValue));
|
.collect(Collectors.toMap(Map.Entry::getKey, Map.Entry::getValue));
|
||||||
Map<String, String> socialComMap = JSON.parseObject(socialSchemePO.getSocialPaymentComBaseString(), new HashMap<String, String>().getClass());
|
Map<String, String> socialComMap = JSON.parseObject(socialSchemePO.getSocialPaymentComBaseString(), new HashMap<String, String>().getClass());
|
||||||
socialComMap = socialComMap.entrySet().stream().filter(e -> "9002".equals(e.getKey()))
|
if(socialComMap !=null){
|
||||||
.collect(Collectors.toMap(Map.Entry::getKey, Map.Entry::getValue));
|
socialComMap = socialComMap.entrySet().stream().filter(e -> "9002".equals(e.getKey()))
|
||||||
|
.collect(Collectors.toMap(Map.Entry::getKey, Map.Entry::getValue));
|
||||||
|
}
|
||||||
List<String> socialIds = new ArrayList<>();
|
List<String> socialIds = new ArrayList<>();
|
||||||
socialIds.addAll(socialMap == null ? Collections.emptyList() : socialMap.keySet());
|
socialIds.addAll(socialMap == null ? Collections.emptyList() : socialMap.keySet());
|
||||||
socialIds.addAll(socialComMap == null ? Collections.emptyList() : socialComMap.keySet());
|
socialIds.addAll(socialComMap == null ? Collections.emptyList() : socialComMap.keySet());
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue