|
@@ -144,27 +144,34 @@ public class AdmEquipmentServiceImpl extends AbstractAdmBaseServiceImpl<AdmEquip
|
|
|
|
|
|
List<RelationDTO> relations = new ArrayList();
|
|
|
for(AdmEquipment vo:voList) {
|
|
|
-
|
|
|
- arrayNode.add(vo.getId());
|
|
|
-
|
|
|
- if(isDelete || StrUtil.isBlank(vo.getBuildingId())) {
|
|
|
+
|
|
|
+ if(isDelete || CollUtil.containsAll(vo.getNullList(), CollUtil.newHashSet("buildingId", "floorId"))) {
|
|
|
+ arrayNode.add(vo.getId());
|
|
|
+ continue;
|
|
|
+ }
|
|
|
+
|
|
|
+ if(StrUtil.isBlank(vo.getBuildingId())) {
|
|
|
continue;
|
|
|
}
|
|
|
+
|
|
|
+ arrayNode.add(vo.getId());
|
|
|
|
|
|
relations.add(RelationDTO.builder().graphCode(graphCode).relCode(buildingRelCode).objFrom(vo.getId()).objTo(vo.getBuildingId()).build());
|
|
|
- if(StrUtil.isBlank(vo.getFloorId())) {
|
|
|
+
|
|
|
+ if(StrUtil.isBlank(vo.getFloorId()) || CollUtil.contains(vo.getNullList(), "floorId")) {
|
|
|
continue;
|
|
|
}
|
|
|
|
|
|
relations.add(RelationDTO.builder().graphCode(graphCode).relCode(floorRelCode).objFrom(vo.getId()).objTo(vo.getFloorId()).build());
|
|
|
}
|
|
|
|
|
|
- relationService.doDelete(context, criteria);
|
|
|
+ if(arrayNode.size() > 0) {
|
|
|
+ relationService.doDelete(context, criteria);
|
|
|
+ }
|
|
|
|
|
|
- if(CollUtil.isEmpty(relations)) {
|
|
|
- return;
|
|
|
+ if(CollUtil.isNotEmpty(relations)) {
|
|
|
+ relationService.doSave(context, relations);
|
|
|
}
|
|
|
- relationService.doSave(context, relations);
|
|
|
}
|
|
|
|
|
|
@Override
|