|
@@ -34,6 +34,7 @@ import com.persagy.mybatis.SMybatisDao
|
|
|
import com.persagy.server.Opt
|
|
|
import com.persagy.server.datacenter.models.entities.dictnew.DefFuncId
|
|
|
import com.persagy.server.datacenter.models.entities.graphtype.RelationTypeProject
|
|
|
+import com.persagy.server.datacenter.models.entities.graphtype.TabularStatistics
|
|
|
import com.persagy.server.datacenter.models.entities.graphtype.rel.RelZoneSpace
|
|
|
import com.persagy.server.datacenter.models.entities.objects.Equipment
|
|
|
import com.persagy.server.mappers.IRelationExcelExportMapper
|
|
@@ -46,6 +47,7 @@ import com.persagy.service.SPageContext
|
|
|
import com.persagy.service.models.enums.SResponseType
|
|
|
import com.persagy.service.models.requests.SUpdateRequest
|
|
|
import com.persagy.service.models.responses.SBaseResponse
|
|
|
+import com.persagy.service.models.responses.SQueryResponse
|
|
|
import com.persagy.service.utils.SSpringContextUtil
|
|
|
import org.apache.poi.ss.usermodel.CellType
|
|
|
import org.apache.poi.xssf.usermodel.XSSFSheet
|
|
@@ -161,16 +163,43 @@ object RelationTypeProjectService : RService<RelationTypeProject>(SMybatisDao(Re
|
|
|
""
|
|
|
}
|
|
|
// val projectId = SPageContext.getHeader("projectId")
|
|
|
- val file = File("/tmp/relation-$projectId-${relType}${zone}.xlsx")
|
|
|
+// val file = File("/tmp/relation-$projectId-${relType}${zone}.xlsx")
|
|
|
+// val workbook = if (file.exists()) {
|
|
|
+// XSSFWorkbook(file)
|
|
|
+// } else {
|
|
|
+// XSSFWorkbook(RelationTypeProjectService::class.java.classLoader.getResourceAsStream("excel/relation-template.xlsx"))
|
|
|
+// }
|
|
|
+// response.contentType = "application/octet-stream"
|
|
|
+// response.setHeader("Content-disposition", "attachment;filename=report-${relType}${zone}.xlsx")
|
|
|
+// response.flushBuffer()
|
|
|
+// workbook.write(response.outputStream)
|
|
|
+ logger.debug("path1 ************************************************************************************")
|
|
|
+ var path:String
|
|
|
+
|
|
|
+ val tomcat_path = System.getProperty("user.dir")
|
|
|
+
|
|
|
+ //获取tomcat中项目同级路径
|
|
|
+ val bin_path = tomcat_path.substring(tomcat_path.lastIndexOf("/") + 1, tomcat_path.length)
|
|
|
+ if ("bin" == bin_path) {
|
|
|
+ path = tomcat_path.substring(0, System.getProperty("user.dir").lastIndexOf("/")) + "/temp/"
|
|
|
+ } else {
|
|
|
+ path = "$tomcat_path/temp/"
|
|
|
+ }
|
|
|
+ val file = File(path+"$projectId-${relType}.xlsx")
|
|
|
+ logger.debug("path= ${file} ************************************************************************************")
|
|
|
val workbook = if (file.exists()) {
|
|
|
XSSFWorkbook(file)
|
|
|
} else {
|
|
|
XSSFWorkbook(RelationTypeProjectService::class.java.classLoader.getResourceAsStream("excel/relation-template.xlsx"))
|
|
|
}
|
|
|
+// val workbook =
|
|
|
+// XSSFWorkbook(file)
|
|
|
+
|
|
|
response.contentType = "application/octet-stream"
|
|
|
- response.setHeader("Content-disposition", "attachment;filename=report-${relType}${zone}.xlsx")
|
|
|
+ response.setHeader("Content-disposition", "attachment;filename=$projectId-${relType}.xlsx")
|
|
|
response.flushBuffer()
|
|
|
workbook.write(response.outputStream)
|
|
|
+
|
|
|
} // Function templateDownloads()
|
|
|
|
|
|
/**
|
|
@@ -326,13 +355,17 @@ object RelationTypeProjectService : RService<RelationTypeProject>(SMybatisDao(Re
|
|
|
* @param zoneType 业务空间类型
|
|
|
* @return 应答体
|
|
|
*/
|
|
|
- fun importExcel(file: MultipartFile, relType: String, zoneType: String? = null): SBaseResponse {
|
|
|
+ fun importExcel(file: MultipartFile, relType: String, zoneType: String? = null): SQueryResponse<TabularStatistics> {
|
|
|
+ val sQueryResponse = SQueryResponse<TabularStatistics>(SResponseType.success)
|
|
|
+ val tabularStatistics = TabularStatistics()
|
|
|
+ var successCount = 0
|
|
|
+ var failCount = 0
|
|
|
try {
|
|
|
if (file.isEmpty) {
|
|
|
throw Exception("未选择文件")
|
|
|
}
|
|
|
|
|
|
- val zone = if (zoneType != null) {
|
|
|
+ var zone = if (zoneType != null) {
|
|
|
"_${zoneType}"
|
|
|
} else {
|
|
|
""
|
|
@@ -358,17 +391,243 @@ object RelationTypeProjectService : RService<RelationTypeProject>(SMybatisDao(Re
|
|
|
logger.debug("识别编码:${code} ******************************************")
|
|
|
preExcelRelation(sheet, projectId!!, relType, code, zoneType)
|
|
|
|
|
|
- readExcelRelation(sheet, projectId, relType, zoneType,code)
|
|
|
+ val rowNum = rowStart
|
|
|
+ for (i in rowNum .. sheet.lastRowNum) {
|
|
|
+ try {
|
|
|
+ val row = sheet.getRow(i)
|
|
|
+ if (row?.getCell(idCode1Col) == null ||row.getCell(idCode2Col) == null){
|
|
|
+ continue
|
|
|
+ }
|
|
|
+ val idCode1ColValue = row.getCell(idCode1Col).toString()
|
|
|
+ val idCode2ColValue = row.getCell(idCode2Col).toString()
|
|
|
+ logger.debug("idCode1ColValue=${idCode1ColValue}")
|
|
|
+ logger.debug("idCode2ColValue=${idCode2ColValue}")
|
|
|
+
|
|
|
+ if (!idCode1ColValue.isEmpty() && !idCode2ColValue.isEmpty()) {
|
|
|
+// if (code.compareTo("对象ID", true) == 0) {
|
|
|
+// row.createCell(id1Col).setCellValue(idCode1ColValue)
|
|
|
+// row.createCell(id2Col).setCellValue(idCode2ColValue)
|
|
|
+// } else {
|
|
|
+ val id1List = excelImport.findObjectId(projectId!!, codeTableMap[relType.substring(0, 2)]!!, codeColMap[code]!!, idCode1ColValue)
|
|
|
+ val id2List = excelImport.findObjectId(projectId, codeTableMap[relType.substring(3, 5)]!!, codeColMap[code]!!, idCode2ColValue)
|
|
|
+
|
|
|
+ if (id1List.count() < 1) {
|
|
|
+ row.createCell(stateCol).setCellValue("未找到主对象")
|
|
|
+ failCount += 1
|
|
|
+ continue
|
|
|
+ }
|
|
|
+ if (id1List.count() > 1) {
|
|
|
+ row.createCell(stateCol).setCellValue("匹配到多个主对象")
|
|
|
+ failCount += 1
|
|
|
+ continue
|
|
|
+ }
|
|
|
+ if (id2List.count() < 1) {
|
|
|
+ row.createCell(stateCol).setCellValue("未找到从对象")
|
|
|
+ failCount += 1
|
|
|
+ continue
|
|
|
+ }
|
|
|
+ if (id2List.count() > 1) {
|
|
|
+ row.createCell(stateCol).setCellValue("匹配到多个从对象")
|
|
|
+ failCount += 1
|
|
|
+ continue
|
|
|
+ }
|
|
|
+ logger.debug("idCode1Colid=${id1List[0]}")
|
|
|
+ logger.debug("idCode2Colid=${id2List[0]}")
|
|
|
+ row.createCell(id1Col).setCellValue(id1List[0])
|
|
|
+ row.createCell(id2Col).setCellValue(id2List[0])
|
|
|
+
|
|
|
+ try {
|
|
|
+
|
|
|
+ val len = relType.indexOf("_")
|
|
|
+ var cmd = if (len > 0) {
|
|
|
+ relType.substring(0, len)
|
|
|
+ } else {
|
|
|
+ relType
|
|
|
+ }
|
|
|
+ val type = relType
|
|
|
+ val importMethod = if (relType == "eq2bd" || relType == "pe2bd") {
|
|
|
+ excelImport.javaClass.getDeclaredMethod("${relType}In", String::class.java, String::class.java, String::class.java, String::class.java)
|
|
|
+ } else if (relType == "eq2fl" || relType == "pe2fl") {
|
|
|
+ excelImport.javaClass.getDeclaredMethod("${relType}In", String::class.java, String::class.java, String::class.java, String::class.java)
|
|
|
+ } else if (relType == "sh2bd_ArchForArch") {
|
|
|
+ excelImport.javaClass.getDeclaredMethod("sh2bdfor", String::class.java, String::class.java, String::class.java, String::class.java)
|
|
|
+ } else if (relType == "sh2fl_ArchForArch"){
|
|
|
+ excelImport.javaClass.getDeclaredMethod("sh2flfor", String::class.java, String::class.java, String::class.java, String::class.java)
|
|
|
+ }else if (relType == "sh2sh_ArchForArch"){
|
|
|
+ excelImport.javaClass.getDeclaredMethod("sh2shfor", String::class.java, String::class.java, String::class.java, String::class.java)
|
|
|
+ }else if(relType =="eq2fl_for"){
|
|
|
+ excelImport.javaClass.getDeclaredMethod("eq2fl", String::class.java, String::class.java, String::class.java, String::class.java)
|
|
|
+ } else if (relType =="eq2bd_for") {
|
|
|
+ excelImport.javaClass.getDeclaredMethod("eq2bd", String::class.java, String::class.java, String::class.java, String::class.java)
|
|
|
+ } else if (relType == "sy2bd_for") {
|
|
|
+ excelImport.javaClass.getDeclaredMethod("sy2bdfor", String::class.java, String::class.java, String::class.java, String::class.java)
|
|
|
+ } else if ( relType == "sy2fl_for") {
|
|
|
+ excelImport.javaClass.getDeclaredMethod("sy2flfor", String::class.java, String::class.java, String::class.java, String::class.java)
|
|
|
+ } else if(relType == "sy2sh_for"){
|
|
|
+ cmd = "sy2shfor"
|
|
|
+ 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"||cmd == "eq2sp"){
|
|
|
+ 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()) {
|
|
|
+ excelImport.javaClass.getDeclaredMethod(cmd, String::class.java, String::class.java, String::class.java, String::class.java)
|
|
|
+ } else {
|
|
|
+ excelImport.javaClass.getDeclaredMethod(cmd, String::class.java, String::class.java, String::class.java, String::class.java, String::class.java)
|
|
|
+ }
|
|
|
+ }
|
|
|
+ val rowNum = rowStart
|
|
|
+// for (i in rowNum .. sheet.lastRowNum) {
|
|
|
+// val row = sheet.getRow(i)
|
|
|
+ try {
|
|
|
+ if (row == null||row.getCell(id1Col) == null||row.getCell(id2Col) == null){
|
|
|
+ sheet.getRow(0).createCell(stateCol).setCellValue("第$i 行数据为空")
|
|
|
+ continue
|
|
|
+ }
|
|
|
+ val id1 = row.getCell(id1Col).toString()
|
|
|
+ val id2 = row.getCell(id2Col).toString()
|
|
|
+ logger.debug("id1= ${id1}")
|
|
|
+ logger.debug("id2= ${id2}")
|
|
|
+
|
|
|
+ // 任意一个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"||cmd == "eq2sp"){
|
|
|
+ val space = spaceService.select(SFilter.eq("id", id2)).entity()
|
|
|
+ zone = space!!.classCode!!
|
|
|
+ }else if (cmd == "sp2bd"||cmd == "sp2fl"||cmd == "sp2sh") {
|
|
|
+ val space = spaceService.select(SFilter.eq("id", id1)).entity()
|
|
|
+ zone = space!!.classCode!!
|
|
|
+ }
|
|
|
+ logger.debug("cmd = ${cmd}********************************************")
|
|
|
+ try {
|
|
|
+ if(zoneType.isNullOrEmpty()) {
|
|
|
+ importMethod.invoke(excelImport, projectId, type, id1, id2)
|
|
|
+ } else {
|
|
|
+ logger.debug("建筑和空间********************************************")
|
|
|
+ importMethod.invoke(excelImport, projectId, type, id1, id2, zoneType)
|
|
|
+ }
|
|
|
+ } catch (e: Exception) {
|
|
|
+ e.printStackTrace()
|
|
|
+ }
|
|
|
+ successCount = successCount+1
|
|
|
+ row.createCell(stateCol).setCellValue("关联成功")
|
|
|
+ } catch (e: Exception) {
|
|
|
+ e.printStackTrace()
|
|
|
+ row.createCell(stateCol).setCellValue("关联失败")
|
|
|
+ }
|
|
|
+// }
|
|
|
+ } catch (e: Exception) {
|
|
|
+ e.printStackTrace()
|
|
|
+ }
|
|
|
+// }
|
|
|
+ }else {
|
|
|
+ // 主对象识别码为空,则不能导入数据
|
|
|
+ if (!idCode1ColValue.isEmpty() && idCode2ColValue.isEmpty()) {
|
|
|
+ row.createCell(stateCol).setCellValue("失败,从对象的识别编码为空")
|
|
|
+ failCount += 1
|
|
|
+ // result = false
|
|
|
+ continue
|
|
|
+ }
|
|
|
+ // 主对象识别码为空,则不能导入数据
|
|
|
+ if (idCode1ColValue.isEmpty() && !idCode2ColValue.isEmpty()) {
|
|
|
+ row.createCell(stateCol).setCellValue("失败,主对象的识别编码为空")
|
|
|
+ failCount += 1
|
|
|
+ // result = false
|
|
|
+ continue
|
|
|
+ }
|
|
|
+ }
|
|
|
+ } catch (e: Exception) {
|
|
|
+ e.printStackTrace()
|
|
|
+ // DO NOTHING
|
|
|
+ }
|
|
|
+ }
|
|
|
+// readExcelRelation(sheet, projectId, relType, zoneType,code)
|
|
|
+
|
|
|
+// val outFile = File("/tmp/relation-$projectId-${relType}${zone}.xlsx")
|
|
|
+// workbook.write(outFile.outputStream())
|
|
|
|
|
|
- val outFile = File("/tmp/relation-$projectId-${relType}${zone}.xlsx")
|
|
|
- workbook.write(outFile.outputStream())
|
|
|
- /** 发送消息 */
|
|
|
- rabbitMqService.sendRel(Opt.projectId!!, relType,"20","123","456")
|
|
|
+
|
|
|
+ // 时间
|
|
|
+// val date: String = LocalDateTime.now().format(DateTimeFormatter.ofPattern("yyyyMMddHHmmss"))
|
|
|
+ var path:String
|
|
|
+ // Tomcat 路径
|
|
|
+ val tomcat_path = System.getProperty("user.dir")
|
|
|
+ // 上传的文件名
|
|
|
+ val myFileName = file.originalFilename
|
|
|
+ // 重组文件名
|
|
|
+ val fileName = "$projectId-${relType}.xlsx"
|
|
|
+ //获取tomcat中项目同级路径
|
|
|
+ val bin_path = tomcat_path.substring(tomcat_path.lastIndexOf("/") + 1, tomcat_path.length)
|
|
|
+ if ("bin" == bin_path) {
|
|
|
+ path = tomcat_path.substring(0, System.getProperty("user.dir").lastIndexOf("/")) + "/temp/"
|
|
|
+ } else {
|
|
|
+ path = "$tomcat_path/temp/"
|
|
|
+ }
|
|
|
+ val fileDir = File(path)
|
|
|
+ //如果不存在 则创建
|
|
|
+ if (!fileDir.exists()) {
|
|
|
+ fileDir.mkdirs()
|
|
|
+ }
|
|
|
+ // 文件
|
|
|
+ val files = File(path,fileName)
|
|
|
+ // 文件流
|
|
|
+ val os: OutputStream = FileOutputStream(files)
|
|
|
+ // 写入
|
|
|
+ workbook.write(os)
|
|
|
+ os.flush()
|
|
|
+ os.close()
|
|
|
+ try {
|
|
|
+ /** 发送消息 */
|
|
|
+ rabbitMqService.sendRel(Opt.projectId!!, relType,"20","123","456")
|
|
|
+ } catch (e: Exception) {
|
|
|
+ e.printStackTrace()
|
|
|
+ }
|
|
|
} catch (e: Exception) {
|
|
|
e.printStackTrace()
|
|
|
- return SBaseResponse(SResponseType.failure, e.message!!)
|
|
|
+ return SQueryResponse(SResponseType.failure, e.message!!)
|
|
|
+ }
|
|
|
+ tabularStatistics.failCount = failCount
|
|
|
+ tabularStatistics.successCount = successCount
|
|
|
+ if (successCount>0&&failCount>0) {
|
|
|
+ tabularStatistics.state = "1"
|
|
|
+ }else if (successCount>0&&failCount==0) {
|
|
|
+ tabularStatistics.state = "0"
|
|
|
+ }else if (successCount == 0&&failCount>0) {
|
|
|
+ tabularStatistics.state = "2"
|
|
|
+ }else {
|
|
|
+ tabularStatistics.state = "2"
|
|
|
}
|
|
|
- return SBaseResponse(SResponseType.success)
|
|
|
+ sQueryResponse.content = arrayListOf(tabularStatistics)
|
|
|
+ return sQueryResponse
|
|
|
} // Fun importExcel()
|
|
|
/**
|
|
|
* 预处理Excel数据
|
|
@@ -395,43 +654,47 @@ object RelationTypeProjectService : RService<RelationTypeProject>(SMybatisDao(Re
|
|
|
val idCode2ColValue = row.getCell(idCode2Col).toString()
|
|
|
logger.debug("idCode1ColValue=${idCode1ColValue}")
|
|
|
logger.debug("idCode2ColValue=${idCode2ColValue}")
|
|
|
- // 主对象识别码为空,则不能导入数据
|
|
|
- if (idCode1ColValue.isEmpty() || idCode2ColValue.isEmpty()) {
|
|
|
- row.createCell(stateCol).setCellValue("失败,主对象or从对象的识别编码为空")
|
|
|
- // result = false
|
|
|
- continue
|
|
|
- }
|
|
|
|
|
|
- if (code.compareTo("对象ID", true) == 0) {
|
|
|
+ if (!idCode1ColValue.isEmpty() && !idCode2ColValue.isEmpty()) {
|
|
|
+ if (code.compareTo("对象ID", true) == 0) {
|
|
|
+ row.createCell(id1Col).setCellValue(idCode1ColValue)
|
|
|
+ row.createCell(id2Col).setCellValue(idCode2ColValue)
|
|
|
|
|
|
- row.createCell(id1Col).setCellValue(idCode1ColValue)
|
|
|
- row.createCell(id2Col).setCellValue(idCode2ColValue)
|
|
|
- } else {
|
|
|
+ } else {
|
|
|
|
|
|
- val id1List = excelImport.findObjectId(projectId, codeTableMap[relType.substring(0, 2)]!!, codeColMap[code]!!, idCode1ColValue)
|
|
|
- val id2List = excelImport.findObjectId(projectId, codeTableMap[relType.substring(3, 5)]!!, codeColMap[code]!!, idCode2ColValue)
|
|
|
+ val id1List = excelImport.findObjectId(projectId, codeTableMap[relType.substring(0, 2)]!!, codeColMap[code]!!, idCode1ColValue)
|
|
|
+ val id2List = excelImport.findObjectId(projectId, codeTableMap[relType.substring(3, 5)]!!, codeColMap[code]!!, idCode2ColValue)
|
|
|
|
|
|
- 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 (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
|
|
|
+ }
|
|
|
+ logger.debug("idCode1Colid=${id1List[0]}")
|
|
|
+ logger.debug("idCode2Colid=${id2List[0]}")
|
|
|
+ row.createCell(id1Col).setCellValue(id1List[0])
|
|
|
+ row.createCell(id2Col).setCellValue(id2List[0])
|
|
|
}
|
|
|
- if (id2List.count() > 1) {
|
|
|
- row.createCell(stateCol).setCellValue("匹配到多个从对象")
|
|
|
+ }else {
|
|
|
+ // 主对象识别码为空,则不能导入数据
|
|
|
+ if (idCode1ColValue.isEmpty() || idCode2ColValue.isEmpty()) {
|
|
|
+ row.createCell(stateCol).setCellValue("失败,主对象or从对象的识别编码为空")
|
|
|
+ // result = false
|
|
|
continue
|
|
|
}
|
|
|
- logger.debug("idCode1Colid=${id1List[0]}")
|
|
|
- logger.debug("idCode2Colid=${id2List[0]}")
|
|
|
- row.createCell(id1Col).setCellValue(id1List[0])
|
|
|
- row.createCell(id2Col).setCellValue(id2List[0])
|
|
|
}
|
|
|
+
|
|
|
} catch (e: Exception) {
|
|
|
e.printStackTrace()
|
|
|
// DO NOTHING
|
|
@@ -457,14 +720,7 @@ object RelationTypeProjectService : RService<RelationTypeProject>(SMybatisDao(Re
|
|
|
} else {
|
|
|
relType
|
|
|
}
|
|
|
-// val type = if (len > 0) {
|
|
|
-// relType.substring(len + 1)
|
|
|
-// } else {
|
|
|
-// ""
|
|
|
-// }
|
|
|
-
|
|
|
val type = relType
|
|
|
-
|
|
|
val importMethod = if (relType == "eq2bd" || relType == "pe2bd") {
|
|
|
excelImport.javaClass.getDeclaredMethod("${relType}In", String::class.java, String::class.java, String::class.java, String::class.java)
|
|
|
} else if (relType == "eq2fl" || relType == "pe2fl") {
|
|
@@ -509,17 +765,6 @@ object RelationTypeProjectService : RService<RelationTypeProject>(SMybatisDao(Re
|
|
|
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)
|
|
|
-// row.createCell(id2Col).setCellValue(id2)
|
|
|
-//
|
|
|
-// } else {
|
|
|
-
|
|
|
-
|
|
|
-// row.createCell(id1Col).setCellValue(id1List[0])
|
|
|
-// row.createCell(id2Col).setCellValue(id2List[0])
|
|
|
-// }
|
|
|
|
|
|
// 任意一个ID为空,则不能导入数据
|
|
|
if (id1.isEmpty() || id2.isEmpty()) {
|
|
@@ -559,11 +804,15 @@ object RelationTypeProjectService : RService<RelationTypeProject>(SMybatisDao(Re
|
|
|
zoneType = space!!.classCode
|
|
|
}
|
|
|
logger.debug("cmd = ${cmd}********************************************")
|
|
|
- if(zoneType.isNullOrEmpty()) {
|
|
|
- importMethod.invoke(excelImport, projectId, type, id1, id2)
|
|
|
- } else {
|
|
|
- logger.debug("建筑和空间********************************************")
|
|
|
- importMethod.invoke(excelImport, projectId, type, id1, id2, zoneType)
|
|
|
+ try {
|
|
|
+ if(zoneType.isNullOrEmpty()) {
|
|
|
+ importMethod.invoke(excelImport, projectId, type, id1, id2)
|
|
|
+ } else {
|
|
|
+ logger.debug("建筑和空间********************************************")
|
|
|
+ importMethod.invoke(excelImport, projectId, type, id1, id2, zoneType)
|
|
|
+ }
|
|
|
+ } catch (e: Exception) {
|
|
|
+ e.printStackTrace()
|
|
|
}
|
|
|
row.createCell(stateCol).setCellValue("关联成功")
|
|
|
} catch (e: Exception) {
|