Jelajahi Sumber

******************WX *********************
解决上传其他标识无法上传

zhangweixin 4 tahun lalu
induk
melakukan
b4c3743ffc

+ 43 - 20
datacenter/src/main/kotlin/com/persagy/server/services/graphtype/RelationTypeProjectService.kt

@@ -104,6 +104,15 @@ object RelationTypeProjectService : RService<RelationTypeProject>(SMybatisDao(Re
         map["sp"] = "zone_space_base"
         map["sy"] = "general_system"
         map["tn"] = "tenant"
+        map["Bd"] = "building"
+        map["Eq"] = "equipment"
+        map["Fl"] = "floor"
+        map["Pe"] = "property"
+        map["Pj"] = "project"
+        map["Sh"] = "shaft"
+        map["Sp"] = "zone_space_base"
+        map["Sy"] = "general_system"
+        map["Tn"] = "tenant"
         map
     }
 
@@ -418,6 +427,8 @@ object RelationTypeProjectService : RService<RelationTypeProject>(SMybatisDao(Re
                         row.createCell(stateCol).setCellValue("匹配到多个从对象")
                         continue
                     }
+                    logger.debug("idCode1Colid=${id1List[0]}")
+                    logger.debug("idCode2Colid=${id2List[0]}")
                     row.createCell(id1Col).setCellValue(id1List[0])
                     row.createCell(id2Col).setCellValue(id2List[0])
                 }
@@ -469,6 +480,7 @@ object RelationTypeProjectService : RService<RelationTypeProject>(SMybatisDao(Re
                 excelImport.javaClass.getDeclaredMethod(cmd, String::class.java, String::class.java, String::class.java, String::class.java)
             } else if (cmd == "sp2sp"||cmd == "bd2sp"||cmd == "fl2sp"||cmd == "sh2sp"
                     ||cmd == "sp2bd"||cmd == "sp2fl"||cmd == "sp2sh"){
+                logger.debug("建筑和空间")
                  excelImport.javaClass.getDeclaredMethod(cmd, String::class.java, String::class.java, String::class.java, String::class.java, String::class.java)
             } else {
                 if(zoneType.isNullOrEmpty()) {
@@ -487,6 +499,8 @@ object RelationTypeProjectService : RService<RelationTypeProject>(SMybatisDao(Re
                 }
                 val id1 = row.getCell(id1Col).toString()
                 val id2 = row.getCell(id2Col).toString()
+                    logger.debug("id1= ${id1}")
+                    logger.debug("id2= ${id2}")
 //                    if (code.compareTo("对象ID", true) == 0) {
 //
 //                        row.createCell(id1Col).setCellValue(id1)
@@ -494,33 +508,41 @@ object RelationTypeProjectService : RService<RelationTypeProject>(SMybatisDao(Re
 //
 //                    } else  {
 
-                        val id1List = excelImport.findObjectId(projectId, codeTableMap[relType.substring(0, 2)]!!, codeColMap[code]!!, id1)
-                        val id2List = excelImport.findObjectId(projectId, codeTableMap[relType.substring(3, 5)]!!, codeColMap[code]!!, id2)
 
-                        if (id1List.count() < 1) {
-                            row.createCell(stateCol).setCellValue("未找到主对象")
-                            continue
-                        }
-                        if (id1List.count() > 1) {
-                            row.createCell(stateCol).setCellValue("匹配到多个主对象")
-                            continue
-                        }
-                        if (id2List.count() < 1) {
-                            row.createCell(stateCol).setCellValue("未找到从对象")
-                            continue
-                        }
-                        if (id2List.count() > 1) {
-                            row.createCell(stateCol).setCellValue("匹配到多个从对象")
-                            continue
-                        }
-                        row.createCell(id1Col).setCellValue(id1List[0])
-                        row.createCell(id2Col).setCellValue(id2List[0])
+//                        row.createCell(id1Col).setCellValue(id1List[0])
+//                        row.createCell(id2Col).setCellValue(id2List[0])
 //                    }
 
                 // 任意一个ID为空,则不能导入数据
                 if (id1.isEmpty() || id2.isEmpty()) {
                     continue
                 }
+                    logger.debug("建筑和空间6656565")
+                    val id1List = excelImport.findObjectId(projectId, codeTableMap[relType.substring(0, 2)]!!, "id", id1)
+                    val id2List = excelImport.findObjectId(projectId, codeTableMap[relType.substring(3, 5)]!!, "id", id2)
+
+                    if (id1List.count() < 1) {
+                        row.createCell(stateCol).setCellValue("未找到主对象")
+                        logger.debug("未找到主对象")
+                        continue
+                    }
+                    if (id1List.count() > 1) {
+                        row.createCell(stateCol).setCellValue("匹配到多个主对象")
+                        logger.debug("匹配到多个主对象")
+                        continue
+                    }
+                    if (id2List.count() < 1) {
+                        row.createCell(stateCol).setCellValue("未找到从对象")
+                        logger.debug("未找到从对象")
+                        continue
+                    }
+                    if (id2List.count() > 1) {
+                        row.createCell(stateCol).setCellValue("匹配到多个从对象")
+                        logger.debug("匹配到多个从对象")
+                        continue
+                    }
+
+                    logger.debug("建筑和空间333333333333333333333333333333333333")
                     if (cmd == "sp2sp"||cmd == "bd2sp"||cmd == "fl2sp"||cmd == "sh2sp"){
                         val space = spaceService.select(SFilter.eq("id", id2)).entity()
                         zoneType =  space!!.classCode
@@ -531,6 +553,7 @@ object RelationTypeProjectService : RService<RelationTypeProject>(SMybatisDao(Re
                     if(zoneType.isNullOrEmpty()) {
                         importMethod.invoke(excelImport, projectId, type, id1, id2)
                     } else {
+                        logger.debug("建筑和空间********************************************")
                         importMethod.invoke(excelImport, projectId, type, id1, id2, zoneType)
                     }
                     row.createCell(stateCol).setCellValue("关联成功")

+ 9 - 9
datacenter/src/main/resources/application-dev.yml

@@ -34,9 +34,9 @@ spring:
     type:                               com.alibaba.druid.pool.DruidDataSource
     driver-class-name:                  org.postgresql.Driver
 #    url:                                jdbc:postgresql://60.205.177.43:5432/datacenterlabsl
-    url:                                jdbc:postgresql://192.168.64.14:5432/datacenterlabsl
+#    url:                                jdbc:postgresql://192.168.64.14:5432/datacenterlabsl
 #    url:                                jdbc:postgresql://192.168.64.15:5432/datacenter
-#    url:                                jdbc:postgresql://39.102.40.239:5432/datacenter
+    url:                                jdbc:postgresql://39.102.40.239:5432/datacenter
     username:                           postgres
 #    password:                           persagy_2020qwe!@#
     password:                           cGVyc2FneV8yMDIwcXdlIUAj
@@ -47,13 +47,13 @@ spring:
       max-file-size:                   500MB        # 限制单个文件的最大值
 
     #配置rabbitMq 服务器
-  rabbitmq:
-    host: 192.168.64.15
-    port: 9936
-    username: admin
-    password: brzj123456
-    #虚拟host 可以不设置,使用 server 默认 host
-    virtual-host: /test
+#  rabbitmq:
+#    host: 192.168.64.15
+#    port: 9936
+#    username: admin
+#    password: brzj123456
+#    #虚拟host 可以不设置,使用 server 默认 host
+#    virtual-host: /test
 
 #  rabbitmq:
 #    host: 39.102.43.179