Commit d4190cc9 authored by gaopengxuan's avatar gaopengxuan

双边抵消完善

parent 5d5fa4c6
......@@ -206,6 +206,10 @@ public class GroupSyncServiceimpl implements GroupSyncService {
List<GroupDataSyncModel> icpEntityList = entityIcpCodeMap.get(icpCode + "-" + entityCode);
// 过滤普通和反转后的客商02侧列表
List<GroupDataSyncModel> filteredList02 = filterEntityList(icpEntityList, plugSinde02,plugAccount);
// 如果两个集合都为空,跳出循环
if (filteredList01.isEmpty() && filteredList02.isEmpty()) {
continue; // 退出当前循环
}
if (plugAccount.equals("plug26")){
// 根据 c1 对 filteredList01 和 filteredList02 进行分组
Map<String, List<GroupDataSyncModel>> groupedByC1List01 = filteredList01.stream()
......
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