|
|
|
@ -139,7 +139,7 @@ public class DlAllDataService {
|
|
|
|
|
}
|
|
|
|
|
if (basicExportStatusEntity.getFromType() == 0) {
|
|
|
|
|
BasicExportStatusEntity basicExportStatusEntity1 = basicExportStatusEntities.get(0);
|
|
|
|
|
basicExportStatusEntity1.setStatus(1);
|
|
|
|
|
basicExportStatusEntity1.setStatus(4);
|
|
|
|
|
spGetHttp.postUpdateBasicStatus(basicExportStatusEntity1);
|
|
|
|
|
spGetHttp.updateLastTime("AutoDownloadAllData", DateUtil.formatDate(System.currentTimeMillis(), "yyyy-MM-dd HH:mm:ss"));
|
|
|
|
|
} else {
|
|
|
|
@ -225,15 +225,13 @@ public class DlAllDataService {
|
|
|
|
|
}
|
|
|
|
|
if (basicExportStatusEntity.getFromType() == 0) {
|
|
|
|
|
BasicExportStatusEntity basicExportStatusEntity1 = basicExportStatusEntities.get(0);
|
|
|
|
|
basicExportStatusEntity1.setStatus(1);
|
|
|
|
|
basicExportStatusEntity1.setStatus(4);
|
|
|
|
|
spGetHttp.postUpdateBasicStatus(basicExportStatusEntity1);
|
|
|
|
|
spGetHttp.updateLastTime("AutoDownloadOrder", DateUtil.formatDate(System.currentTimeMillis(), "yyyy-MM-dd HH:mm:ss"));
|
|
|
|
|
} else {
|
|
|
|
|
spGetHttp.postDeleteBasicStatus(basicExportStatusEntity.getId());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
@ -302,87 +300,6 @@ public class DlAllDataService {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void dllNewAllBusType() {
|
|
|
|
|
log.info("下载所有单据类型---");
|
|
|
|
|
BasicExportStatusRequest basicExportStatusRequest = new BasicExportStatusRequest();
|
|
|
|
|
basicExportStatusRequest.setIdDatas("AutoDownloadBusType");
|
|
|
|
|
basicExportStatusRequest.setStatus(0);
|
|
|
|
|
basicExportStatusRequest.setType(BasicProcessStatus.NEW_ALL_BUS);
|
|
|
|
|
basicExportStatusRequest.setScheduleType(BasicProcessStatus.SCHEDULE_NORMAL);
|
|
|
|
|
BaseResponse<List<BasicExportStatusEntity>> basicStatuss = spGetHttp.getBasicStatus(basicExportStatusRequest);
|
|
|
|
|
if (CollUtil.isNotEmpty(basicStatuss.getData())) {
|
|
|
|
|
List<BasicExportStatusEntity> basicExportStatusEntities = basicStatuss.getData();
|
|
|
|
|
SystemParamConfigEntity systemParamConfigEntity = systemParamConfigService.selectByParamKey("sync_upstream_enable");
|
|
|
|
|
if (systemParamConfigEntity.getParamValue().equals("1")) {
|
|
|
|
|
SystemParamConfigEntity downstream = systemParamConfigService.selectByParamKey("sync_downstream_enable");
|
|
|
|
|
for (BasicExportStatusEntity basicExportStatusEntity : basicExportStatusEntities) {
|
|
|
|
|
BaseResponse<SpsSyncBusResponse> baseResponse = null;
|
|
|
|
|
SpsSyncDataRequest spsSyncDataRequest = new SpsSyncDataRequest();
|
|
|
|
|
if (basicExportStatusEntity.getFromType() == 0) {
|
|
|
|
|
BaseResponse<String> response = spGetHttp.getLastUpdateTime("AutoDownloadBusType");
|
|
|
|
|
String lastUpdateTime = response.getData();
|
|
|
|
|
spsSyncDataRequest.setLastUpdateTime(lastUpdateTime);
|
|
|
|
|
baseResponse = spGetHttp.getAllBus(spsSyncDataRequest);
|
|
|
|
|
} else {
|
|
|
|
|
spsSyncDataRequest.setId(basicExportStatusEntity.getId());
|
|
|
|
|
baseResponse = spGetHttp.getAllBus(spsSyncDataRequest);
|
|
|
|
|
}
|
|
|
|
|
if (baseResponse.getCode() == 20000) {
|
|
|
|
|
SpsSyncBusResponse syncOrderResponse = baseResponse.getData();
|
|
|
|
|
if (syncOrderResponse != null &&
|
|
|
|
|
(CollUtil.isNotEmpty(syncOrderResponse.getBussinessTypeEntities())
|
|
|
|
|
|| CollUtil.isNotEmpty(syncOrderResponse.getBussinessOriginTypeEntities())
|
|
|
|
|
|| CollUtil.isNotEmpty(syncOrderResponse.getBussinessLocalTypeEntities())
|
|
|
|
|
|| CollUtil.isNotEmpty(syncOrderResponse.getEntrustReceEntities()))
|
|
|
|
|
) {
|
|
|
|
|
String key = gennerOrderUtils.getBusType();
|
|
|
|
|
BasicExportStatusEntity myEntity = new BasicExportStatusEntity();
|
|
|
|
|
myEntity.setId(key);
|
|
|
|
|
myEntity.setTaskId(syncOrderResponse.getTaskId());
|
|
|
|
|
myEntity.setStatus(0);
|
|
|
|
|
myEntity.setUpdateTime(new Date());
|
|
|
|
|
myEntity.setStartTime(DateUtil.getDateTime());
|
|
|
|
|
myEntity.setTransportType(BasicProcessStatus.INTERFACE_TYPE);
|
|
|
|
|
myEntity.setType(BasicProcessStatus.NEW_ALL_BUS);
|
|
|
|
|
myEntity.setIdDatas(ConstantStatus.SYNC_BUS_TYPE);
|
|
|
|
|
myEntity.setRemark(syncOrderResponse.toString());
|
|
|
|
|
basicExportService.insertExportStatus(myEntity);
|
|
|
|
|
if (downstream.getParamValue().equals("1")) {
|
|
|
|
|
redisUtil.set(key, baseResponse.getData());
|
|
|
|
|
myEntity.setStatus(Constant.SYNC_STATUS_WAIT_DL);
|
|
|
|
|
myEntity.setTransportType(BasicProcessStatus.INTERFACE_TYPE);
|
|
|
|
|
basicExportService.updateExportStatus(myEntity);
|
|
|
|
|
} else {
|
|
|
|
|
String path = getPath();
|
|
|
|
|
String fileName = path + FileConstant.upWaitCopy_products + key + ".LowerIn";
|
|
|
|
|
String datas = JSON.toJSONString(baseResponse.getData());
|
|
|
|
|
FileUtils.SaveFileAs(datas, fileName);
|
|
|
|
|
myEntity.setStatus(Constant.SYNC_STATUS_SUCCESS);
|
|
|
|
|
myEntity.setEndTime(DateUtil.getDateTime());
|
|
|
|
|
myEntity.setTransportType(BasicProcessStatus.FILE_TYPE);
|
|
|
|
|
myEntity.setCacheFilePath(fileName);
|
|
|
|
|
basicExportService.updateExportStatus(myEntity);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (basicExportStatusEntity.getFromType() == 0) {
|
|
|
|
|
BasicExportStatusEntity basicExportStatusEntity1 = basicExportStatusEntities.get(0);
|
|
|
|
|
basicExportStatusEntity1.setStatus(1);
|
|
|
|
|
spGetHttp.postUpdateBasicStatus(basicExportStatusEntity1);
|
|
|
|
|
spGetHttp.updateLastTime("AutoDownloadBusType", DateUtil.formatDate(System.currentTimeMillis(), "yyyy-MM-dd HH:mm:ss"));
|
|
|
|
|
} else {
|
|
|
|
|
spGetHttp.postDeleteBasicStatus(basicExportStatusEntity.getId());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
log.info("下载所有单据类型---结束");
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void dlScheduleStatus() {
|
|
|
|
|
|
|
|
|
@ -427,7 +344,6 @@ public class DlAllDataService {
|
|
|
|
|
SystemParamConfigEntity downstream = systemParamConfigService.selectByParamKey("sync_downstream_enable");
|
|
|
|
|
for (BasicExportStatusEntity basicExportStatusEntity : basicExportStatusEntities) {
|
|
|
|
|
if (basicExportStatusEntity.getFromType() == 0) {
|
|
|
|
|
|
|
|
|
|
BaseResponse<String> response = spGetHttp.getLastUpdateTime("AutoDownloadDiProducts");
|
|
|
|
|
String lastUpdateTime = response.getData();
|
|
|
|
|
if (lastUpdateTime.equals("1949-01-01 00:00:00")) {
|
|
|
|
@ -455,11 +371,17 @@ public class DlAllDataService {
|
|
|
|
|
myEntity.setRemark("国家库DI信息:" + spSyncUdiResponse.getProductInfoEntityList().size() + " 条");
|
|
|
|
|
basicExportService.insertExportStatus(myEntity);
|
|
|
|
|
if (downstream.getParamValue().equals("1")) {
|
|
|
|
|
// String datas = JSON.toJSON(spSyncUdiResponse).toString();
|
|
|
|
|
// redisUtil.set(key, datas);
|
|
|
|
|
String fileName = filePath + "upload/" + BasicProcessStatus.NEW_ALL_UDIS + "-" + key + ".udi";
|
|
|
|
|
String datas = JSON.toJSON(spSyncUdiResponse).toString();
|
|
|
|
|
redisUtil.set(key, datas);
|
|
|
|
|
FileUtils.SaveFileAs(datas, fileName);
|
|
|
|
|
|
|
|
|
|
//记录下载日志
|
|
|
|
|
myEntity.setCacheFilePath(fileName);
|
|
|
|
|
myEntity.setStatus(Constant.SYNC_STATUS_WAIT_DL);
|
|
|
|
|
myEntity.setTransportType(BasicProcessStatus.INTERFACE_TYPE);
|
|
|
|
|
myEntity.setCacheFilePath(fileName);
|
|
|
|
|
basicExportService.updateExportStatus(myEntity);
|
|
|
|
|
} else {
|
|
|
|
|
String path = getPath();
|
|
|
|
@ -508,8 +430,11 @@ public class DlAllDataService {
|
|
|
|
|
myEntity.setRemark("医疗器械注册人信息:{} " + spSyncUdiResponse.getUdiCompanyEntities().size() + " 条");
|
|
|
|
|
basicExportService.insertExportStatus(myEntity);
|
|
|
|
|
if (downstream.getParamValue().equals("1")) {
|
|
|
|
|
// String datas = JSON.toJSON(spSyncUdiResponse).toString();
|
|
|
|
|
// redisUtil.set(key, datas);
|
|
|
|
|
String fileName = filePath + "upload/" + BasicProcessStatus.NEW_ALL_UDIS + "-" + key + ".udi";
|
|
|
|
|
String datas = JSON.toJSON(spSyncUdiResponse).toString();
|
|
|
|
|
redisUtil.set(key, datas);
|
|
|
|
|
FileUtils.SaveFileAs(datas, fileName);
|
|
|
|
|
myEntity.setStatus(Constant.SYNC_STATUS_WAIT_DL);
|
|
|
|
|
myEntity.setTransportType(BasicProcessStatus.INTERFACE_TYPE);
|
|
|
|
|
basicExportService.updateExportStatus(myEntity);
|
|
|
|
@ -537,7 +462,7 @@ public class DlAllDataService {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
BasicExportStatusEntity basicExportStatusEntity1 = basicExportStatusEntities.get(0);
|
|
|
|
|
basicExportStatusEntity1.setStatus(1);
|
|
|
|
|
basicExportStatusEntity1.setStatus(4);
|
|
|
|
|
spGetHttp.postUpdateBasicStatus(basicExportStatusEntity1);
|
|
|
|
|
spGetHttp.updateLastTime("AutoDownloadDiProducts", DateUtil.formatDate(System.currentTimeMillis(), "yyyy-MM-dd HH:mm:ss"));
|
|
|
|
|
|
|
|
|
|