AdmEquipmentController.java 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755
  1. package com.persagy.proxy.object.controller;
  2. import cn.hutool.core.collection.CollUtil;
  3. import cn.hutool.core.collection.CollectionUtil;
  4. import cn.hutool.core.date.DateUtil;
  5. import cn.hutool.core.map.MapUtil;
  6. import cn.hutool.core.util.IdUtil;
  7. import cn.hutool.core.util.StrUtil;
  8. import com.alibaba.fastjson.JSONObject;
  9. import com.fasterxml.jackson.databind.ObjectMapper;
  10. import com.fasterxml.jackson.databind.node.JsonNodeFactory;
  11. import com.fasterxml.jackson.databind.node.ObjectNode;
  12. import com.google.common.collect.Sets;
  13. import com.persagy.dmp.basic.model.QueryCriteria;
  14. import com.persagy.dmp.basic.utils.JsonNodeUtils;
  15. import com.persagy.dmp.common.context.AppContext;
  16. import com.persagy.dmp.common.exception.BusinessException;
  17. import com.persagy.dmp.common.helper.SpringHelper;
  18. import com.persagy.dmp.common.model.entity.BaseEntity;
  19. import com.persagy.dmp.define.client.DigitalDefineFacade;
  20. import com.persagy.dmp.define.entity.ObjectInfoDefine;
  21. import com.persagy.dmp.define.entity.ObjectTypeDefine;
  22. import com.persagy.dmp.digital.client.DigitalObjectFacade;
  23. import com.persagy.dmp.digital.entity.ObjectDigital;
  24. import com.persagy.proxy.adm.constant.AdmCommonConstant;
  25. import com.persagy.proxy.adm.constant.AdmDictCategoryEnum;
  26. import com.persagy.proxy.adm.constant.AdmRelationTypeEnum;
  27. import com.persagy.proxy.adm.request.AdmCreateRequest;
  28. import com.persagy.proxy.adm.request.AdmQueryCriteria;
  29. import com.persagy.proxy.adm.request.AdmResponse;
  30. import com.persagy.proxy.adm.service.IAdmRelationService;
  31. import com.persagy.proxy.adm.utils.AdmContextUtil;
  32. import com.persagy.proxy.adm.utils.AdmExcelUtil;
  33. import com.persagy.proxy.adm.utils.ObjectNameUtil;
  34. import com.persagy.proxy.common.entity.RelationDTO;
  35. import com.persagy.proxy.dictionary.model.AdmDict;
  36. import com.persagy.proxy.dictionary.model.AdmObjectType;
  37. import com.persagy.proxy.dictionary.service.IAdmDictService;
  38. import com.persagy.proxy.object.model.AdmEquipment;
  39. import com.persagy.proxy.object.service.IAdmEquipmentService;
  40. import com.persagy.proxy.report.service.IRelationReportService;
  41. import lombok.extern.slf4j.Slf4j;
  42. import org.apache.poi.ss.usermodel.CellType;
  43. import org.apache.poi.ss.usermodel.FillPatternType;
  44. import org.apache.poi.xssf.usermodel.*;
  45. import org.springframework.beans.factory.annotation.Autowired;
  46. import org.springframework.web.bind.annotation.*;
  47. import org.springframework.web.multipart.MultipartFile;
  48. import javax.servlet.http.HttpServletRequest;
  49. import javax.servlet.http.HttpServletResponse;
  50. import java.awt.*;
  51. import java.io.FileOutputStream;
  52. import java.io.IOException;
  53. import java.util.List;
  54. import java.util.*;
  55. /**
  56. * Adm 楼层 API
  57. * @author lvxy
  58. * @date 2021/8/16
  59. */
  60. @Slf4j
  61. @RestController
  62. @RequestMapping("/object/equip")
  63. public class AdmEquipmentController {
  64. @Autowired
  65. private IAdmEquipmentService service;
  66. @Autowired
  67. private IAdmRelationService relationService;
  68. @Autowired
  69. private IRelationReportService relationReportService;
  70. @Autowired
  71. private IAdmDictService dictService;
  72. /**
  73. * 统计
  74. *
  75. * @param request
  76. * @return
  77. * @throws Exception
  78. */
  79. @PostMapping("/count")
  80. public AdmResponse count(@RequestBody AdmQueryCriteria request) throws Exception {
  81. request.setName(AdmEquipment.OBJ_TYPE);
  82. request.setOnlyCount(true);
  83. return service.doQuery(AdmContextUtil.toDmpContext(), request, AdmEquipment.class);
  84. }
  85. /**
  86. * 创建
  87. * @param createRequest
  88. * @return
  89. * @throws Exception
  90. */
  91. @PostMapping("/create")
  92. public AdmResponse create(@RequestBody AdmCreateRequest<AdmEquipment> createRequest) throws Exception {
  93. List<AdmEquipment> vos = CollUtil.newArrayList(createRequest.getContent());
  94. if(CollUtil.isEmpty(vos)){
  95. return AdmResponse.success();
  96. }
  97. // 查询所有设备类型
  98. AdmDict dictCond = AdmDict.builder().type(AdmDictCategoryEnum.EQUIPMENT.getValue()).build();
  99. AdmResponse dictResponse = dictService.queryCategory(AdmContextUtil.toDmpContext(), dictCond, AdmObjectType.class);
  100. List<AdmObjectType> dicts = (List<AdmObjectType>) dictResponse.getContent();
  101. // 转换为Map,key为编码后4位。用于适配旧类型编码
  102. Map<String, AdmObjectType> shortDictMap = new HashMap<>();
  103. Map<String, AdmObjectType> fullDictMap = new HashMap<>();
  104. for(int i = 0,j = CollUtil.size(dicts);i < j;i++) {
  105. AdmObjectType dict = dicts.get(i);
  106. shortDictMap.put(StrUtil.subSufByLength(dict.getCode(), 4), dict);
  107. fullDictMap.put(dict.getCode(), dict);
  108. }
  109. // 设备属性调整
  110. vos.stream().forEach(equipment -> {
  111. // 如果不是Eq开头,则重新生成ID
  112. if(StrUtil.startWith(equipment.getId(), "Eq")) {
  113. equipment.setId("Eq"+ IdUtil.simpleUUID());
  114. }
  115. // 类型编码适配
  116. String classCode = equipment.getClassCode();
  117. // 如果编码为空,或在4位、6位里都不存在,则报错
  118. if(StrUtil.isBlank(classCode) ||
  119. (shortDictMap.get(classCode) == null && fullDictMap.get(classCode) == null)) {
  120. throw new BusinessException(StrUtil.format("没有找到对象类型【{}】!", equipment.getClassCode()));
  121. }
  122. // 如果少于6位,则需要适配新编码
  123. if(classCode.length() < 6) {
  124. AdmObjectType dict = MapUtil.get(shortDictMap, classCode, AdmObjectType.class);
  125. equipment.setClassCode(dict.getCode());
  126. }
  127. // 如果名称为空,则提供默认名称
  128. if (StrUtil.isEmpty(equipment.getName())){
  129. AdmObjectType dict = MapUtil.get(fullDictMap, equipment.getClassCode(), AdmObjectType.class);
  130. String preName = dict == null ? "设备" : dict.getName();
  131. equipment.setName(ObjectNameUtil.objectName(preName + "-"));
  132. }
  133. });
  134. vos = service.doInsert(AdmContextUtil.toDmpContext(), AdmEquipment.class, vos);
  135. return AdmResponse.success(vos);
  136. }
  137. /**
  138. * 根据ID删除
  139. * @param vos
  140. * @return
  141. * @throws Exception
  142. */
  143. @PostMapping("/delete")
  144. public AdmResponse delete( @RequestBody List<AdmEquipment> vos) throws Exception {
  145. // 组装上下文条件
  146. service.doDelete(AdmContextUtil.toDmpContext(), vos);
  147. return AdmResponse.success();
  148. }
  149. /**
  150. * 更新
  151. * @param createRequest
  152. * @return
  153. * @throws Exception
  154. */
  155. @PostMapping("/update")
  156. public AdmResponse update(@RequestBody AdmCreateRequest<AdmEquipment> createRequest) throws Exception {
  157. List<AdmEquipment> vos = CollUtil.newArrayList(createRequest.getContent());
  158. //vos = service.doUpdateEuip(AdmContextUtil.toDmpContext(), AdmEquipment.class, vos);
  159. //针对设备更新时,所有更新的字段都放到信息点中的情况特殊处理
  160. if(CollUtil.isNotEmpty(vos)){
  161. Map<String, AdmEquipment> admEquipmentMap = CollUtil.fieldValueMap(vos, BaseEntity.PROP_ID);
  162. AdmRelationTypeEnum typeEnum = AdmRelationTypeEnum.EQ2BD;
  163. String graphCode = typeEnum.getGraphCode();
  164. QueryCriteria criteria = new QueryCriteria();
  165. ObjectNode node = JsonNodeFactory.instance.objectNode();
  166. node.put("graphCode", graphCode);
  167. admEquipmentMap.keySet().stream().forEach(equipId -> {
  168. node.put("relCode", "Eq2Bd");
  169. node.put("objFrom", equipId);
  170. criteria.setCriteria(node);
  171. relationService.doDelete(AdmContextUtil.toDmpContext(), criteria);
  172. node.put("relCode", "Eq2Fl");
  173. node.put("objFrom", equipId);
  174. criteria.setCriteria(node);
  175. relationService.doDelete(AdmContextUtil.toDmpContext(), criteria);
  176. });
  177. List<RelationDTO> relationDTOList = new ArrayList<>(vos.size());
  178. admEquipmentMap.keySet().stream().forEach(equipId -> {
  179. if(StrUtil.isNotEmpty(admEquipmentMap.get(equipId).getBuildingId())){
  180. RelationDTO relationbd = new RelationDTO(null, graphCode, "Eq2Bd", null, equipId, admEquipmentMap.get(equipId).getBuildingId());
  181. relationDTOList.add(relationbd);
  182. }
  183. if(StrUtil.isNotEmpty(admEquipmentMap.get(equipId).getFloorId())) {
  184. RelationDTO relationfl = new RelationDTO(null, graphCode, "Eq2Fl", null, equipId, admEquipmentMap.get(equipId).getFloorId());
  185. relationDTOList.add(relationfl);
  186. }
  187. });
  188. if(CollUtil.isNotEmpty(relationDTOList)){
  189. relationService.doSave(AdmContextUtil.toDmpContext(), relationDTOList);
  190. }
  191. //处理设备更新特殊数据
  192. List<AdmEquipment> equipmentList = new ArrayList<>(vos.size());
  193. vos.stream().forEach(equipment -> {
  194. if(CollUtil.isNotEmpty(equipment.getInfos())){
  195. AdmEquipment admEquipment = new AdmEquipment();
  196. admEquipment.setId(equipment.getId());
  197. admEquipment.setInfos(equipment.getInfos());
  198. ObjectNode objectNode = JsonNodeUtils.toObjectNode(admEquipment, "infos", null);
  199. AdmEquipment admEquipmentNew = JsonNodeUtils.toEntity(objectNode, AdmEquipment.class, "infos");
  200. if(CollUtil.isNotEmpty(equipment.getNullList())){
  201. admEquipmentNew.setNullList(equipment.getNullList());
  202. }
  203. if(StrUtil.isNotEmpty(equipment.getFloorId())){
  204. admEquipmentNew.setFloorId(equipment.getFloorId());
  205. }
  206. if(StrUtil.isNotEmpty(equipment.getBuildingId())){
  207. admEquipmentNew.setBuildingId(equipment.getBuildingId());
  208. }
  209. equipmentList.add(admEquipmentNew);
  210. }
  211. });
  212. vos = equipmentList;
  213. }
  214. vos = service.doUpdate(AdmContextUtil.toDmpContext(), AdmEquipment.class, vos);
  215. return AdmResponse.success(vos);
  216. }
  217. /**
  218. * 查询
  219. *
  220. * @param request
  221. * @return
  222. * @throws Exception
  223. */
  224. @PostMapping("/query")
  225. public AdmResponse query(@RequestBody AdmQueryCriteria request) throws Exception {
  226. // 组装上下文条件
  227. request.setName(AdmEquipment.OBJ_TYPE);
  228. return service.doQuery(AdmContextUtil.toDmpContext(), request, AdmEquipment.class);
  229. }
  230. /**
  231. * 设备绑定的动态信息点或静态信息点
  232. * @param admEquipment
  233. * @return
  234. * @throws Exception
  235. */
  236. @GetMapping("/export")
  237. public AdmResponse exportInfos(@RequestBody AdmCreateRequest<AdmEquipment> admEquipment) throws Exception {
  238. List<AdmEquipment> vos = CollUtil.newArrayList(admEquipment.getContent());
  239. vos = service.doUpdate(AdmContextUtil.toDmpContext(), AdmEquipment.class, vos);
  240. return AdmResponse.success(vos);
  241. }
  242. /**
  243. * 根据项目id查询所有的设备和部件
  244. *
  245. * @param request
  246. * @return
  247. * @throws Exception
  248. */
  249. @GetMapping("/query-equip")
  250. public AdmResponse queryEquip(@RequestBody AdmQueryCriteria request) throws Exception {
  251. //request.setName("equipment");
  252. if(StrUtil.isNotEmpty(request.getFilters())){
  253. request.setFilters(String.join(";",request.getFilters(),"objType in ['equipment','component']"));
  254. }else{
  255. request.setFilters("objType in ['equipment','component']");
  256. }
  257. return service.doQuery(AdmContextUtil.toDmpContext(), request, AdmEquipment.class);
  258. }
  259. /**
  260. * 批量创建设备同时创建资产、创建设备和系统的关系
  261. * @param admEquipment
  262. * @return
  263. * @throws Exception
  264. */
  265. @PostMapping("/creat-equip-pro")
  266. public AdmResponse createExt(@RequestBody AdmCreateRequest<AdmEquipment> admEquipment) throws Exception {
  267. List<AdmEquipment> vos = admEquipment.getContent();
  268. if(CollUtil.isEmpty(vos)){
  269. return AdmResponse.success();
  270. }
  271. //创建设备
  272. vos.stream().forEach(equipment -> {
  273. if (StrUtil.isEmpty(equipment.getName())){
  274. equipment.setName(ObjectNameUtil.objectName("设备-"));
  275. }
  276. });
  277. List<AdmEquipment> reVos = new ArrayList<>(vos.size());
  278. List<RelationDTO> relationDTOS = new ArrayList<>(16);
  279. vos.stream().forEach(admEq -> {
  280. //创建设备
  281. List<AdmEquipment> vosR = service.doInsert(AdmContextUtil.toDmpContext(), AdmEquipment.class, CollUtil.newArrayList(admEq));
  282. //TODO 创建资产
  283. //添加设备和系统、建筑、楼层的关系
  284. if(CollUtil.isNotEmpty(vosR)){
  285. String equipId = vosR.get(0).getId();
  286. if(StrUtil.isNotEmpty(equipId)){
  287. if(CollUtil.isNotEmpty(admEq.getLinkSystem())){
  288. admEq.getLinkSystem().stream().forEach(admSystem -> {
  289. relationDTOS.add(new RelationDTO(null, "MechSubset", "Sy2Eq", null , admSystem.getId(), equipId));
  290. });
  291. }
  292. if(StrUtil.isNotEmpty(admEq.getBuildingId())){
  293. relationDTOS.add(new RelationDTO(null, "MechInArch", "Eq2Bd", null , equipId, admEq.getBuildingId()));
  294. }
  295. if(StrUtil.isNotEmpty(admEq.getFloorId())){
  296. relationDTOS.add(new RelationDTO(null, "MechInArch", "Eq2Fl", null , equipId, admEq.getFloorId()));
  297. }
  298. }
  299. }
  300. reVos.addAll(vosR);
  301. });
  302. relationService.doSave(AdmContextUtil.toDmpContext(),relationDTOS);
  303. return AdmResponse.success(reVos);
  304. }
  305. /**
  306. * 设备上传excel识别静态信息点
  307. *
  308. * @param file
  309. * @param request
  310. * @param response
  311. */
  312. @RequestMapping("/import")
  313. public AdmResponse importFile(@RequestParam("file") MultipartFile file, HttpServletRequest request, HttpServletResponse response) {
  314. if (file == null) {
  315. return AdmResponse.failure("未选择文件");
  316. }
  317. String path = AdmCommonConstant.SERVER_ROOT_PATH + AdmExcelUtil.TEMP_UPLOAD_PAHT;
  318. int failurNum = 0;
  319. int successCount = 0;
  320. String failure = null;
  321. String primaryKey = null;
  322. String classCodeCloumn = null;
  323. XSSFWorkbook workbook = null;
  324. FileOutputStream fileOutputStream = null;
  325. String groupCode = AppContext.getContext().getGroupCode();
  326. String projectId = AppContext.getContext().getProjectId();
  327. try {
  328. workbook = new XSSFWorkbook(file.getInputStream());
  329. XSSFSheet sheet = workbook.getSheetAt(0); // 第一个sheet
  330. XSSFRow row1 = sheet.getRow(1);
  331. if (row1 == null) {
  332. AdmExcelUtil.writeFile2Local(workbook, projectId, path, file.getOriginalFilename());
  333. return AdmExcelUtil.getImportFailResult("数据不存在", "2", 0, ++failurNum);
  334. }
  335. /** 获取识别码 */
  336. XSSFCell markCell = row1.getCell(0);
  337. if (markCell == null) {
  338. AdmExcelUtil.writeFile2Local(workbook, projectId, path, file.getOriginalFilename());
  339. return AdmExcelUtil.getImportFailResult("未填写识别码", "2", 0, ++failurNum);
  340. }
  341. primaryKey = markCell.getStringCellValue().trim(); // 识别码
  342. boolean containsKey = AdmCommonConstant.codeColMap.containsKey(primaryKey);
  343. if (!containsKey) {
  344. AdmExcelUtil.writeFile2Local(workbook, projectId, path, file.getOriginalFilename());
  345. return AdmExcelUtil.getImportFailResult("未找到识别码", "2", 0, ++failurNum);
  346. }
  347. primaryKey = AdmCommonConstant.codeColMap.get(primaryKey);
  348. /** 获取类型 */
  349. XSSFCell cell = row1.getCell(1);
  350. if (cell == null) {
  351. AdmExcelUtil.writeFile2Local(workbook, projectId, path, file.getOriginalFilename());
  352. return AdmExcelUtil.getImportFailResult("未填写设备类型", "2", 0, ++failurNum);
  353. }
  354. classCodeCloumn = cell.getStringCellValue().trim();
  355. if (!"ClassCode".equals(classCodeCloumn)) {
  356. AdmExcelUtil.writeFile2Local(workbook, projectId, path, file.getOriginalFilename());
  357. return AdmExcelUtil.getImportFailResult("缺少设备类型(ClassCode)", "2", 0, ++failurNum);
  358. }
  359. // 存取所有的信息点
  360. Map<Integer, String> infoMap = new HashMap<Integer, String>();
  361. short lastCellNum = row1.getLastCellNum();
  362. for (int i = 1; i <= lastCellNum; i++) {
  363. XSSFCell xssfCell = row1.getCell(i);
  364. if (xssfCell != null && xssfCell.getStringCellValue() != null) {
  365. infoMap.put(i, xssfCell.getStringCellValue().trim());
  366. }
  367. }
  368. // 录入数据获取
  369. int lastRowNum = sheet.getLastRowNum();
  370. boolean isClassCode = "classCode".equals(primaryKey);
  371. for (int i = 2; i <= lastRowNum; i++) {
  372. XSSFRow xssfRow = sheet.getRow(i);
  373. if (xssfRow == null) {
  374. continue;
  375. }
  376. String value = null;
  377. String classCode = null;
  378. ObjectNode equipment = null;
  379. List<ObjectNode> equipmentList = null;
  380. Map<String, Object> tempMap = new HashMap<String, Object>();
  381. lastCellNum = xssfRow.getLastCellNum();
  382. for (int j = 0; j <= lastCellNum; j++) {
  383. cell = xssfRow.getCell(j);
  384. if (cell == null || StrUtil.isBlank(cell.getRawValue())) {
  385. xssfRow.createCell(j);
  386. if (j == 0) {
  387. this.setColor(workbook, 252, 255, 77, xssfRow.getCell(j));
  388. } else {
  389. this.setColor(workbook, 77, 178, 255, xssfRow.getCell(j));
  390. }
  391. continue;
  392. }
  393. if (j == 0) {
  394. cell.setCellType(CellType.STRING);
  395. value = cell.getStringCellValue().trim();
  396. String codeType = isClassCode ? xssfRow.getCell(0).toString().trim() : xssfRow.getCell(1).toString().trim();
  397. // 获取类型定义
  398. ObjectTypeDefine define = this.getObjectTypeDefine(groupCode, projectId, codeType);
  399. if (define == null) {
  400. this.setColor(workbook, 56, 94, 15, cell);
  401. continue;
  402. }
  403. classCode = define.getCode();
  404. equipmentList = isClassCode ? this.getEquipmentList(groupCode, projectId, null, null, classCode)
  405. : this.getEquipmentList(groupCode, projectId, primaryKey, value, classCode);
  406. if (CollectionUtil.isEmpty(equipmentList)) {
  407. failurNum++;
  408. this.setColor(workbook, 153, 225, 77, cell);
  409. continue;
  410. }
  411. if (isClassCode) {
  412. equipment = equipmentList.get(0);
  413. } else {
  414. if (equipmentList.size() > 1) {
  415. failurNum++;
  416. this.setColor(workbook, 249, 203, 77, cell);
  417. } else {
  418. equipment = equipmentList.get(0);
  419. }
  420. }
  421. continue;
  422. }
  423. // 剩余列数据处理
  424. if (j != 1 && equipment != null && infoMap.containsKey(j)) {
  425. // 获取设备类的信息点
  426. List<ObjectInfoDefine> funidList = this.relationReportService.queryFunidList(groupCode, projectId, Sets.newHashSet(classCode), infoMap.get(j), "STATIC");
  427. if (CollectionUtil.isEmpty(funidList)) {
  428. failurNum++;
  429. this.setColor(workbook, 77, 178, 255, cell);
  430. continue;
  431. }
  432. ObjectInfoDefine define = funidList.get(0);
  433. if ("STRING".equalsIgnoreCase(define.getDataType())) {
  434. tempMap.put(define.getCode(), cell.getStringCellValue().trim());
  435. } else if ("INTEGER".equalsIgnoreCase(define.getDataType())) {
  436. try {
  437. if (!CellType.NUMERIC.equals(cell.getCellTypeEnum()) || StrUtil.isBlank(cell.getRawValue())) {
  438. failurNum++;
  439. this.setColor(workbook, 155, 227, 255, cell);
  440. continue;
  441. }
  442. cell.setCellType(CellType.STRING);
  443. tempMap.put(define.getCode(), cell.getStringCellValue().trim());
  444. } catch (Exception e) {
  445. failurNum++;
  446. this.setColor(workbook, 155, 227, 255, cell);
  447. continue;
  448. }
  449. } else if ("ENUM".equalsIgnoreCase(define.getDataType())) {
  450. if (CellType.NUMERIC.equals(cell.getCellTypeEnum()) && StrUtil.isNotBlank(cell.getRawValue())) {
  451. cell.setCellType(CellType.STRING);
  452. tempMap.put(define.getCode(), cell.getStringCellValue().trim());
  453. } else if (CellType.STRING.equals(cell.getCellTypeEnum()) && StrUtil.isNotBlank(cell.getRawValue())) {
  454. tempMap.put(define.getCode(), cell.getStringCellValue().trim());
  455. } else {
  456. failurNum++;
  457. this.setColor(workbook, 155, 227, 255, cell);
  458. continue;
  459. }
  460. } else if ("DATETIME".equalsIgnoreCase(define.getDataType())) {
  461. try {
  462. cell.setCellType(CellType.STRING);
  463. String trim = cell.getStringCellValue().trim();
  464. tempMap.put(define.getCode(), DateUtil.parseByPatterns(trim, "yyyyMMdd"));
  465. } catch (Exception e) {
  466. failurNum++;
  467. this.setColor(workbook, 155, 227, 255, cell);
  468. continue;
  469. }
  470. } else if ("DOUBLE".equalsIgnoreCase(define.getDataType())) {
  471. try {
  472. cell.setCellType(CellType.STRING);
  473. String trim = cell.getStringCellValue().trim();
  474. tempMap.put(define.getCode(), Double.parseDouble(trim));
  475. } catch (Exception e) {
  476. failurNum++;
  477. this.setColor(workbook, 155, 227, 255, cell);
  478. continue;
  479. }
  480. } else if ("BOOLEAN".equalsIgnoreCase(define.getDataType())) {
  481. cell.setCellType(CellType.STRING);
  482. String trim = cell.getStringCellValue() == null ? null : cell.getStringCellValue().trim();
  483. if ("1".equals(trim) || "0".equals(trim)) {
  484. tempMap.put(define.getCode(), Double.parseDouble(trim));
  485. } else {
  486. failurNum++;
  487. this.setColor(workbook, 155, 227, 255, cell);
  488. continue;
  489. }
  490. } else {
  491. failurNum++;
  492. this.setColor(workbook, 204, 99, 233, cell);
  493. continue;
  494. }
  495. }
  496. }
  497. if (isClassCode) {
  498. if (CollectionUtil.isNotEmpty(equipmentList) && tempMap.size() > 0) {
  499. for (ObjectNode equipNode : equipmentList) {
  500. int success = this.updateEquipInfo(tempMap, groupCode, projectId, equipNode.get("id").asText());
  501. if (success == 0) {
  502. failurNum++;
  503. } else {
  504. successCount++;
  505. }
  506. }
  507. }
  508. } else {
  509. if (StrUtil.isNotBlank(value) && equipment != null && tempMap.size() > 0) {
  510. int success = this.updateEquipInfo(tempMap, groupCode, projectId, equipment.get("id").asText());
  511. if (success == 0) {
  512. failurNum++;
  513. } else {
  514. successCount++;
  515. }
  516. }
  517. }
  518. }
  519. // 写入错误报告对比值颜色
  520. this.wirteReport(workbook, sheet);
  521. // 返回正确结果
  522. String fileName = AdmExcelUtil.writeFile2Local(workbook, projectId, path, file.getOriginalFilename());
  523. return AdmExcelUtil.getImportSuccessResult(fileName, successCount, failurNum);
  524. } catch (Exception e) {
  525. log.error("台账信息导入失败", e);
  526. failure = e.getMessage();
  527. } finally {
  528. if (fileOutputStream != null) {
  529. try {
  530. fileOutputStream.flush();
  531. fileOutputStream.close();
  532. } catch (IOException e) {}
  533. }
  534. if (workbook != null) {
  535. try {
  536. workbook.close();
  537. } catch (IOException e) {}
  538. }
  539. }
  540. return AdmResponse.failure(failure);
  541. }
  542. /**
  543. * 更新设备信息
  544. *
  545. * @param tempMap
  546. * @param groupCode
  547. * @param projectId
  548. * @param equipId
  549. * @return
  550. */
  551. private int updateEquipInfo(Map<String, Object> tempMap, String groupCode, String projectId, String equipId) {
  552. ObjectMapper objectMapper = SpringHelper.getBean(ObjectMapper.class);
  553. Set<String> keySet = tempMap.keySet();
  554. ObjectNode updateEquip = objectMapper.createObjectNode();
  555. for (String key : keySet) {
  556. Object obj = tempMap.get(key);
  557. updateEquip.put("id", equipId);
  558. if (obj instanceof Date) {
  559. updateEquip.putPOJO(key, obj);
  560. } else {
  561. updateEquip.put(key, obj.toString());
  562. }
  563. }
  564. ObjectDigital updateOne = DigitalObjectFacade.updateOne(groupCode, projectId, AdmCommonConstant.APP_ID, AdmCommonConstant.USER_ID, updateEquip);
  565. return updateOne == null ? 0 : 1;
  566. }
  567. /**
  568. * 获取类型定义
  569. *
  570. * @param code
  571. * @return
  572. */
  573. private ObjectTypeDefine getObjectTypeDefine(String groupCode, String projectId, String code) {
  574. QueryCriteria queryCriteria = new QueryCriteria();
  575. ObjectMapper objectMapper = SpringHelper.getBean(ObjectMapper.class);
  576. ObjectNode condition = objectMapper.createObjectNode();
  577. JSONObject arrays = new JSONObject();
  578. arrays.put("$ne", "system");
  579. condition.putPOJO("parentCode", arrays);
  580. condition.put("code", code);
  581. queryCriteria.setCriteria(condition);
  582. List<ObjectTypeDefine> objectType = DigitalDefineFacade.queryObjectType(groupCode, projectId, AdmCommonConstant.APP_ID, AdmCommonConstant.USER_ID, queryCriteria);
  583. return CollectionUtil.isEmpty(objectType) ? null : objectType.get(0);
  584. }
  585. /**
  586. * 获取设备
  587. *
  588. * @param groupCode
  589. * @param projectId
  590. * @param primaryKey
  591. * @param code
  592. * @param classCode
  593. * @return
  594. */
  595. private List<ObjectNode> getEquipmentList(String groupCode, String projectId, String primaryKey, String code, String classCode) {
  596. QueryCriteria queryCriteria = new QueryCriteria();
  597. ObjectMapper objectMapper = SpringHelper.getBean(ObjectMapper.class);
  598. ObjectNode condition = objectMapper.createObjectNode();
  599. if (StrUtil.isAllNotBlank(primaryKey, code)) {
  600. condition.put(primaryKey, code);
  601. }
  602. condition.put("classCode", classCode);
  603. queryCriteria.setCriteria(condition);
  604. List<ObjectNode> objectNodes = DigitalObjectFacade.query(groupCode, projectId, AdmCommonConstant.APP_ID, AdmCommonConstant.USER_ID, queryCriteria);
  605. return objectNodes;
  606. }
  607. /**
  608. * 设置填充色
  609. *
  610. * @param workbook
  611. * @param r
  612. * @param g
  613. * @param b
  614. * @param cell
  615. */
  616. private void setColor(XSSFWorkbook workbook, int r, int g, int b, XSSFCell cell) {
  617. XSSFCellStyle createCellStyle = workbook.createCellStyle();
  618. createCellStyle.setFillPattern(FillPatternType.SOLID_FOREGROUND);
  619. createCellStyle.setFillForegroundColor(new XSSFColor(new Color(r, g, b)));
  620. cell.setCellStyle(createCellStyle);
  621. }
  622. /**
  623. * 写入错误报告对比值颜色
  624. *
  625. * @param workbook
  626. * @param sheet
  627. */
  628. private void wirteReport(XSSFWorkbook workbook, XSSFSheet sheet) {
  629. XSSFRow row = sheet.getRow(1);
  630. short column = (short) (row.getLastCellNum() + 2);
  631. XSSFRow row4 = sheet.getRow(4);
  632. if (row4 == null) {
  633. row4 = sheet.createRow(4);
  634. }
  635. XSSFCell createCell = row4.createCell(column);
  636. createCell.setCellValue("导入失败,识别码超出范围( 本地编码,本地名称,数字化交付码 )");
  637. createCell = row4.createCell(column + 1);
  638. this.setColor(workbook,233,99,99,createCell);
  639. XSSFRow row5 = sheet.getRow(5);
  640. if (row5 == null) {
  641. row5 = sheet.createRow(5);
  642. }
  643. createCell = row5.createCell(column);
  644. createCell.setCellValue("导入失败,识别码为空");
  645. createCell = row5.createCell(column + 1);
  646. this.setColor(workbook,252,147,77,createCell);
  647. XSSFRow row6 = sheet.getRow(6);
  648. if (row6 == null) {
  649. row6 = sheet.createRow(6);
  650. }
  651. createCell = row6.createCell(column);
  652. createCell.setCellValue("导入失败,多个实例");
  653. createCell = row6.createCell(column + 1);
  654. this.setColor(workbook,249,203,77,createCell);
  655. XSSFRow row7 = sheet.getRow(7);
  656. if (row7 == null) {
  657. row7 = sheet.createRow(7);
  658. }
  659. createCell = row7.createCell(column);
  660. createCell.setCellValue("导入失败,设备不存在");
  661. createCell = row7.createCell(column + 1);
  662. this.setColor(workbook,153,225,77,createCell);
  663. XSSFRow row8 = sheet.getRow(8);
  664. if (row8 == null) {
  665. row8 = sheet.createRow(8);
  666. }
  667. createCell = row8.createCell(column);
  668. createCell.setCellValue("导入失败,识别码值为空");
  669. createCell = row8.createCell(column + 1);
  670. this.setColor(workbook,252,255,77,createCell);
  671. XSSFRow row9 = sheet.getRow(9);
  672. if (row9 == null) {
  673. row9 = sheet.createRow(9);
  674. }
  675. createCell = row9.createCell(column);
  676. createCell.setCellValue("导入失败,输入类型与字典定义不一致");
  677. createCell = row9.createCell(column + 1);
  678. this.setColor(workbook,155,227,255,createCell);
  679. XSSFRow row10 = sheet.getRow(10);
  680. if (row10 == null) {
  681. row10 = sheet.createRow(10);
  682. }
  683. createCell = row10.createCell(column);
  684. createCell.setCellValue("导入失败,未支持的输入类型");
  685. createCell = row10.createCell(column + 1);
  686. this.setColor(workbook,204,99,233,createCell);
  687. XSSFRow row11 = sheet.getRow(11);
  688. if (row11 == null) {
  689. row11 = sheet.createRow(11);
  690. }
  691. createCell = row11.createCell(column);
  692. createCell.setCellValue("导入失败,信息点不存在");
  693. createCell = row11.createCell(column + 1);
  694. this.setColor(workbook,77,178,255,createCell);
  695. XSSFRow row12 = sheet.getRow(12);
  696. if (row12 == null) {
  697. row12 = sheet.createRow(12);
  698. }
  699. createCell = row12.createCell(column);
  700. createCell.setCellValue("导入失败,设备类型不在字典定义中");
  701. createCell = row12.createCell(column + 1);
  702. this.setColor(workbook,56,94,15,createCell);
  703. }
  704. }