|
@@ -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("关联成功")
|