|
|
|
@ -80,6 +80,23 @@ public class BasicGenJsonService {
|
|
|
|
|
@Async
|
|
|
|
|
public void exportUdiInfoJson(String genKey, UdiInfoExportRequest udiInfoExportRequest) {
|
|
|
|
|
UdiInfoExportLogEntity udiInfoExportLogEntity = udiInfoExportLogService.selectByGenKey(genKey);
|
|
|
|
|
UdiRelevanceExportJsonResponse exportData = paresDataJson(udiInfoExportRequest);
|
|
|
|
|
File file = new File(udiInfoExportLogEntity.getFilePath());
|
|
|
|
|
if (!file.exists()) {
|
|
|
|
|
try {
|
|
|
|
|
file.createNewFile();
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
log.error("导出医疗器械信息异常", e);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
FileWriter writer = new FileWriter(file);
|
|
|
|
|
writer.write(JSONUtil.toJsonStr(exportData));
|
|
|
|
|
udiInfoExportLogEntity.setStatus(BasicProcessStatus.UDIINFO_IMPORT_SUCCESS);
|
|
|
|
|
udiInfoExportLogService.updateUdiInfoExportLog(udiInfoExportLogEntity);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public UdiRelevanceExportJsonResponse paresDataJson(UdiInfoExportRequest udiInfoExportRequest) {
|
|
|
|
|
UdiRelevanceExportJsonResponse exportData = new UdiRelevanceExportJsonResponse();
|
|
|
|
|
//选中导出
|
|
|
|
|
if (CollUtil.isNotEmpty(udiInfoExportRequest.getUuids())) {
|
|
|
|
@ -102,21 +119,8 @@ public class BasicGenJsonService {
|
|
|
|
|
parseUdiRelevanceResponses(exportData, data);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
File file = new File(udiInfoExportLogEntity.getFilePath());
|
|
|
|
|
if (!file.exists()) {
|
|
|
|
|
try {
|
|
|
|
|
file.createNewFile();
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
log.error("导出医疗器械信息异常", e);
|
|
|
|
|
return exportData;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
FileWriter writer = new FileWriter(file);
|
|
|
|
|
writer.write(JSONUtil.toJsonStr(exportData));
|
|
|
|
|
udiInfoExportLogEntity.setStatus(BasicProcessStatus.UDIINFO_IMPORT_SUCCESS);
|
|
|
|
|
udiInfoExportLogService.updateUdiInfoExportLog(udiInfoExportLogEntity);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 解析医疗器械信息查询结果,封装完整数据
|
|
|
|
|