Przeglądaj źródła

1、术语关联映射

zhaops 3 lat temu
rodzic
commit
69bf2181a6

+ 3 - 1
cdssman-service/src/main/java/com/diagbot/facade/MappingConfigFacade.java

@@ -347,7 +347,9 @@ public class MappingConfigFacade extends MappingConfigServiceImpl {
         }
         RespDTO<List<MappingConfigWrapper>> respDTO = cdssClient.importExcel_remote(file, hospitalId, type, userId);
         if (RespDTOUtil.respIsOK(respDTO)) {
-            exportExcel(response, respDTO.data, type, "非标准词", 1);
+            if (ListUtil.isNotEmpty(respDTO.data)) {
+                exportExcel(response, respDTO.data, type, "非标准词", 1);
+            }
         } else {
             throw new CommonException(CommonErrorCode.SERVER_IS_ERROR, respDTO.msg);
         }