lin 4 years ago
parent
commit
ee3b5202e7

+ 12 - 0
smart-city-platform/src/main/java/com/bz/smart_city/service/impl/BuildingServiceImpl.java

@@ -1288,6 +1288,18 @@ public class BuildingServiceImpl implements BuildingService {
                             } else {
                                 //添加建筑
                                 Community communityNew = new Community();
+                                //获取小区最大值,然后加1
+                                String code = "001";
+                                List<Community> communities = communityMapper.getMaxCodeBySiteId(loginUser.getSiteId());
+                                if(communities.size()==1)
+                                {
+                                    if (communities.get(0) != null) {
+                                        code =String.format("%03d",Integer.valueOf(communities.get(0).getCode()));
+                                    }else {
+                                        code = String.format("%03d",Integer.valueOf("1"));
+                                    }
+
+                                }
                                 communityNew.setSiteId(loginUser.getSiteId());
                                 communityNew.setName(communityName);
                                 communityNew.setProvince((int) cellValueProvince.getNumberValue());

+ 13 - 0
smart-city-platform/src/main/java/com/bz/smart_city/service/importfile/AsyncTaskImportService.java

@@ -794,6 +794,19 @@ public class AsyncTaskImportService {
                             } else {
                                 //添加小区
                                 Community communityNew = new Community();
+                                //获取小区最大值,然后加1
+                                String code = "001";
+                                List<Community> communities = communityMapper.getMaxCodeBySiteId(record.getSiteId());
+                                if(communities.size()==1)
+                                {
+                                    if (communities.get(0) != null) {
+                                        code =String.format("%03d",Integer.valueOf(communities.get(0).getCode()));
+                                    }else {
+                                        code = String.format("%03d",Integer.valueOf("1"));
+                                    }
+
+                                }
+                                communityNew.setCode(code);
                                 communityNew.setSiteId(record.getSiteId());
                                 communityNew.setName(communityName);
                                 communityNew.setProvince((int) cellValueProvince.getNumberValue());