dev #2

Merged
dashixiong merged 349 commits from dev into main 2026-02-11 01:55:46 +00:00
260 changed files with 31375 additions and 1052 deletions
Showing only changes of commit 391ed354f8 - Show all commits

View File

@ -513,9 +513,10 @@ public class DDSDataProcessServiceImpl extends AbstractBatteryDataProcessor impl
return stackDeviceId;
}
}
stackDeviceId = list.get(0).getParentId();
if (stackDeviceId == null || stackDeviceId.isEmpty()) {
return stackDeviceId;
for (EmsDevicesSetting emsDevicesSetting : list) {
if (deviceId.equals(emsDevicesSetting.getDeviceId())) {
stackDeviceId = emsDevicesSetting.getParentId();
}
}
}
return stackDeviceId;