|
|
|
@ -99,7 +99,7 @@ public class SpsSyncDownloadService {
|
|
|
|
|
orderStatusEntity.setIdDatas(ConstantStatus.SYNC_SCAN_ORDER);
|
|
|
|
|
orderStatusEntity.setType(BasicProcessStatus.NEW_ALL_ORDER);
|
|
|
|
|
orderStatusEntity.setUpdateTime(new Date());
|
|
|
|
|
orderStatusEntity.setStatus(0);
|
|
|
|
|
orderStatusEntity.setStatus(BasicExportStatusEnum.WAIT_BUILT.getCode());
|
|
|
|
|
orderStatusEntity.setStartTime(new Date());
|
|
|
|
|
orderStatusEntity.setScheduleType(BasicProcessStatus.SCHEDULE_NORMAL);
|
|
|
|
|
basicExportService.insertExportStatus(orderStatusEntity);
|
|
|
|
@ -109,8 +109,16 @@ public class SpsSyncDownloadService {
|
|
|
|
|
|
|
|
|
|
// 创建国家库同步任务
|
|
|
|
|
public void syncDiProductsTask() {
|
|
|
|
|
BasicExportStatusEntity basicExportStatusEntity4 = basicExportService.findByData(ConstantStatus.SYNC_DI_PRODUCTS, 1);
|
|
|
|
|
if (basicExportStatusEntity4 == null) {
|
|
|
|
|
|
|
|
|
|
BasicExportStatusEntity exportStatus = basicExportService.getOne(Wrappers.lambdaQuery(BasicExportStatusEntity.class)
|
|
|
|
|
.eq(BasicExportStatusEntity::getType, BasicExportTypeEnum.COUNTRY_DI_DATA.getRemark())
|
|
|
|
|
.orderByDesc(BasicExportStatusEntity::getStartTime)
|
|
|
|
|
.last("limit 1")
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
//首次任务or上次任务结束
|
|
|
|
|
if (exportStatus == null || BasicExportStatusEnum.COMPLETED.getCode().equals(exportStatus.getStatus())) {
|
|
|
|
|
|
|
|
|
|
BaseResponse<SpSyncUdiResponse> baseResponse = syncUdi(getRequest(ConstantStatus.SYNC_DI_PRODUCTS));
|
|
|
|
|
SpSyncUdiResponse spSyncUdiResponse = baseResponse.getData();
|
|
|
|
|
if (CollUtil.isNotEmpty(spSyncUdiResponse.getProductInfoEntityList())
|
|
|
|
@ -183,7 +191,6 @@ public class SpsSyncDownloadService {
|
|
|
|
|
, x -> x.generateDocumentTypeDataFile(info, now, true));
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case COUNTRY_DI_DATA:
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -263,7 +270,7 @@ public class SpsSyncDownloadService {
|
|
|
|
|
throw new RuntimeException(errorMsg);
|
|
|
|
|
}
|
|
|
|
|
BasicExportStatusEntity exportStatus = basicExportService.getOne(Wrappers.lambdaQuery(BasicExportStatusEntity.class)
|
|
|
|
|
.eq(BasicExportStatusEntity::getType, BasicExportTypeEnum.BASIC_DATA.getRemark())
|
|
|
|
|
.eq(BasicExportStatusEntity::getType, exportEnum.getRemark())
|
|
|
|
|
.orderByDesc(BasicExportStatusEntity::getStartTime)
|
|
|
|
|
.last("limit 1")
|
|
|
|
|
);
|
|
|
|
@ -279,8 +286,8 @@ public class SpsSyncDownloadService {
|
|
|
|
|
exportStatus = BasicExportStatusEntity.builder()
|
|
|
|
|
.id(CustomUtil.getId())
|
|
|
|
|
.status(BasicExportStatusEnum.WAIT_TRIGGERED.getCode())
|
|
|
|
|
.idDatas(BasicExportTypeEnum.BASIC_DATA.getKey())
|
|
|
|
|
.type(BasicExportTypeEnum.BASIC_DATA.getRemark())
|
|
|
|
|
.idDatas(exportEnum.getKey())
|
|
|
|
|
.type(exportEnum.getRemark())
|
|
|
|
|
.scheduleType(0)
|
|
|
|
|
.updateTime(cn.hutool.core.date.DateUtil.date())
|
|
|
|
|
.startTime(now)
|
|
|
|
@ -315,7 +322,7 @@ public class SpsSyncDownloadService {
|
|
|
|
|
, map.get("oldDate"), now)
|
|
|
|
|
);
|
|
|
|
|
if (CollectionUtil.isNotEmpty(hospTypeList)) {
|
|
|
|
|
jsonMap.put(BasicExportStatusTimeEntity.class.getSimpleName(), hospTypeList);
|
|
|
|
|
jsonMap.put(BasicHospTypeEntity.class.getSimpleName(), hospTypeList);
|
|
|
|
|
}
|
|
|
|
|
List<UdiRelevanceEntity> udiRelevanceList = udiRelevanceService.list(Wrappers.lambdaQuery(UdiRelevanceEntity.class)
|
|
|
|
|
.le((boolean) map.get("isNew"), UdiRelevanceEntity::getUpdateTime, now)
|
|
|
|
@ -362,6 +369,7 @@ public class SpsSyncDownloadService {
|
|
|
|
|
totalTimeMap.put(BasicExportStatusTimeEnum.SUP_CERT, map);
|
|
|
|
|
List<SupCertEntity> supCertList = supCertService.list(Wrappers.lambdaQuery(SupCertEntity.class)
|
|
|
|
|
.le((boolean) map.get("isNew"), SupCertEntity::getUpdateTime, now)
|
|
|
|
|
.eq(SupCertEntity::getAuditStatus, ConstantStatus.AUDIT_PASS)
|
|
|
|
|
.between(!(boolean) map.get("isNew"), SupCertEntity::getUpdateTime
|
|
|
|
|
, map.get("oldDate"), now)
|
|
|
|
|
);
|
|
|
|
@ -378,6 +386,7 @@ public class SpsSyncDownloadService {
|
|
|
|
|
}
|
|
|
|
|
List<SupCompanyEntity> supCompanyList = supCompanyService.list(Wrappers.lambdaQuery(SupCompanyEntity.class)
|
|
|
|
|
.le((boolean) map.get("isNew"), SupCompanyEntity::getUpdateTime, now)
|
|
|
|
|
.eq(SupCompanyEntity::getAuditStatus, ConstantStatus.AUDIT_PASS)
|
|
|
|
|
.between(!(boolean) map.get("isNew"), SupCompanyEntity::getUpdateTime
|
|
|
|
|
, map.get("oldDate"), now)
|
|
|
|
|
);
|
|
|
|
@ -385,7 +394,7 @@ public class SpsSyncDownloadService {
|
|
|
|
|
jsonMap.put(SupCompanyEntity.class.getSimpleName(), supCompanyList);
|
|
|
|
|
}
|
|
|
|
|
List<SupManufacturerEntity> supManufacturerList = supManufacturerService.list(Wrappers.lambdaQuery(SupManufacturerEntity.class)
|
|
|
|
|
.le((boolean) map.get("isNew"), SupManufacturerEntity::getUpdateTime, now)
|
|
|
|
|
.eq(SupManufacturerEntity::getAuditStatus, ConstantStatus.AUDIT_PASS)
|
|
|
|
|
.between(!(boolean) map.get("isNew"), SupManufacturerEntity::getUpdateTime
|
|
|
|
|
, map.get("oldDate"), now)
|
|
|
|
|
);
|
|
|
|
@ -393,6 +402,7 @@ public class SpsSyncDownloadService {
|
|
|
|
|
jsonMap.put(SupManufacturerEntity.class.getSimpleName(), supManufacturerList);
|
|
|
|
|
}
|
|
|
|
|
List<SupProductEntity> supProductList = supProductService.list(Wrappers.lambdaQuery(SupProductEntity.class)
|
|
|
|
|
.eq(SupProductEntity::getAuditStatus, ConstantStatus.AUDIT_PASS)
|
|
|
|
|
.le((boolean) map.get("isNew"), SupProductEntity::getUpdateTime, now)
|
|
|
|
|
.between(!(boolean) map.get("isNew"), SupProductEntity::getUpdateTime
|
|
|
|
|
, map.get("oldDate"), now)
|
|
|
|
|