|
|
@ -47,7 +47,9 @@ import java.io.IOException;
|
|
|
|
import java.util.*;
|
|
|
|
import java.util.*;
|
|
|
|
import java.util.function.Function;
|
|
|
|
import java.util.function.Function;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import static com.glxp.api.constant.BasicProcessStatus.NEW_ALL_ORDER;
|
|
|
|
import static com.glxp.api.constant.BasicProcessStatus.NEW_ALL_UDIS;
|
|
|
|
import static com.glxp.api.constant.BasicProcessStatus.NEW_ALL_UDIS;
|
|
|
|
|
|
|
|
import static com.glxp.api.constant.Constant.SYNC_REMARK;
|
|
|
|
|
|
|
|
|
|
|
|
@Slf4j
|
|
|
|
@Slf4j
|
|
|
|
@Service
|
|
|
|
@Service
|
|
|
@ -88,10 +90,15 @@ public class SpsSyncDownloadService {
|
|
|
|
log.info("创建单据同步任务");
|
|
|
|
log.info("创建单据同步任务");
|
|
|
|
//自动创建要求被下载已完成单据任务.
|
|
|
|
//自动创建要求被下载已完成单据任务.
|
|
|
|
// 1.判断是否同步任务已存在
|
|
|
|
// 1.判断是否同步任务已存在
|
|
|
|
BasicExportStatusEntity basicExportStatusEntity1 = basicExportService.findByData(ConstantStatus.SYNC_SCAN_ORDER, 1);
|
|
|
|
BasicExportStatusEntity basicExportStatusEntity1 = basicExportService.getOne(Wrappers.lambdaQuery(BasicExportStatusEntity.class)
|
|
|
|
if (basicExportStatusEntity1 == null) {
|
|
|
|
.eq(BasicExportStatusEntity::getType, NEW_ALL_ORDER)
|
|
|
|
|
|
|
|
.orderByDesc(BasicExportStatusEntity::getStartTime)
|
|
|
|
|
|
|
|
.last("limit 1")
|
|
|
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
BaseResponse<SpsSyncOrderResponse> baseResponse = findOrder(getRequest(ConstantStatus.SYNC_SCAN_ORDER));
|
|
|
|
//首次任务or上次任务结束
|
|
|
|
|
|
|
|
if (basicExportStatusEntity1 == null || BasicExportStatusEnum.COMPLETED.getCode().equals(basicExportStatusEntity1.getStatus())) {
|
|
|
|
|
|
|
|
BaseResponse<SpsSyncOrderResponse> baseResponse = findOrder(getRequest(ConstantStatus.SYNC_DOWNLOAD_SCAN_ORDER));
|
|
|
|
SpsSyncOrderResponse syncOrderResponse = baseResponse.getData();
|
|
|
|
SpsSyncOrderResponse syncOrderResponse = baseResponse.getData();
|
|
|
|
// 2.查看是否有需要更新的数据
|
|
|
|
// 2.查看是否有需要更新的数据
|
|
|
|
if (CollUtil.isNotEmpty(syncOrderResponse.getOrderEntities())) {
|
|
|
|
if (CollUtil.isNotEmpty(syncOrderResponse.getOrderEntities())) {
|
|
|
@ -99,9 +106,9 @@ public class SpsSyncDownloadService {
|
|
|
|
BasicExportStatusEntity orderStatusEntity = new BasicExportStatusEntity();
|
|
|
|
BasicExportStatusEntity orderStatusEntity = new BasicExportStatusEntity();
|
|
|
|
orderStatusEntity.setId(CustomUtil.getId());
|
|
|
|
orderStatusEntity.setId(CustomUtil.getId());
|
|
|
|
orderStatusEntity.setIdDatas(ConstantStatus.SYNC_SCAN_ORDER);
|
|
|
|
orderStatusEntity.setIdDatas(ConstantStatus.SYNC_SCAN_ORDER);
|
|
|
|
orderStatusEntity.setType(BasicProcessStatus.NEW_ALL_ORDER);
|
|
|
|
orderStatusEntity.setType(NEW_ALL_ORDER);
|
|
|
|
orderStatusEntity.setUpdateTime(new Date());
|
|
|
|
orderStatusEntity.setUpdateTime(new Date());
|
|
|
|
orderStatusEntity.setStatus(BasicExportStatusEnum.WAIT_BUILT.getCode());
|
|
|
|
orderStatusEntity.setStatus(BasicExportStatusEnum.WAIT_SYNC.getCode());
|
|
|
|
orderStatusEntity.setStartTime(new Date());
|
|
|
|
orderStatusEntity.setStartTime(new Date());
|
|
|
|
orderStatusEntity.setScheduleType(BasicProcessStatus.SCHEDULE_NORMAL);
|
|
|
|
orderStatusEntity.setScheduleType(BasicProcessStatus.SCHEDULE_NORMAL);
|
|
|
|
basicExportService.insertExportStatus(orderStatusEntity);
|
|
|
|
basicExportService.insertExportStatus(orderStatusEntity);
|
|
|
@ -131,7 +138,7 @@ public class SpsSyncDownloadService {
|
|
|
|
basicExportStatusEntity.setType(NEW_ALL_UDIS);
|
|
|
|
basicExportStatusEntity.setType(NEW_ALL_UDIS);
|
|
|
|
basicExportStatusEntity.setUpdateTime(new Date());
|
|
|
|
basicExportStatusEntity.setUpdateTime(new Date());
|
|
|
|
basicExportStatusEntity.setStartTime(new Date());
|
|
|
|
basicExportStatusEntity.setStartTime(new Date());
|
|
|
|
basicExportStatusEntity.setStatus(BasicExportStatusEnum.WAIT_TRIGGERED.getCode());
|
|
|
|
basicExportStatusEntity.setStatus(BasicExportStatusEnum.WAIT_SYNC.getCode());
|
|
|
|
basicExportStatusEntity.setScheduleType(BasicProcessStatus.SCHEDULE_NORMAL);
|
|
|
|
basicExportStatusEntity.setScheduleType(BasicProcessStatus.SCHEDULE_NORMAL);
|
|
|
|
basicExportService.insertExportStatus(basicExportStatusEntity);
|
|
|
|
basicExportService.insertExportStatus(basicExportStatusEntity);
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -311,9 +318,10 @@ public class SpsSyncDownloadService {
|
|
|
|
protected boolean generateBasicDataFile(SyncDataSetResponse info, Date now, boolean createFile) {
|
|
|
|
protected boolean generateBasicDataFile(SyncDataSetResponse info, Date now, boolean createFile) {
|
|
|
|
BasicExportTypeEnum exportType = BasicExportTypeEnum.BASIC_DATA;
|
|
|
|
BasicExportTypeEnum exportType = BasicExportTypeEnum.BASIC_DATA;
|
|
|
|
//文件数据
|
|
|
|
//文件数据
|
|
|
|
Map<String, List> jsonMap = new WeakHashMap<>(4);
|
|
|
|
Map<String, Object> jsonMap = new WeakHashMap<>(4);
|
|
|
|
List<String> syncFiles = new ArrayList<>();
|
|
|
|
List<String> syncFiles = new ArrayList<>();
|
|
|
|
Map<BasicExportStatusTimeEnum, Map<String, Object>> totalTimeMap = new WeakHashMap<>(10);
|
|
|
|
Map<BasicExportStatusTimeEnum, Map<String, Object>> totalTimeMap = new WeakHashMap<>(10);
|
|
|
|
|
|
|
|
StringBuffer remark = new StringBuffer();
|
|
|
|
try {
|
|
|
|
try {
|
|
|
|
//确认有开启物资字典由外向内同步
|
|
|
|
//确认有开启物资字典由外向内同步
|
|
|
|
if (needExec(info.getBasicProducts())) {
|
|
|
|
if (needExec(info.getBasicProducts())) {
|
|
|
@ -326,6 +334,7 @@ public class SpsSyncDownloadService {
|
|
|
|
);
|
|
|
|
);
|
|
|
|
if (CollectionUtil.isNotEmpty(hospTypeList)) {
|
|
|
|
if (CollectionUtil.isNotEmpty(hospTypeList)) {
|
|
|
|
jsonMap.put(BasicHospTypeEntity.class.getSimpleName(), hospTypeList);
|
|
|
|
jsonMap.put(BasicHospTypeEntity.class.getSimpleName(), hospTypeList);
|
|
|
|
|
|
|
|
remark.append("物资字典分类信息:").append(hospTypeList.size()).append("条\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
List<UdiRelevanceEntity> udiRelevanceList = udiRelevanceService.list(Wrappers.lambdaQuery(UdiRelevanceEntity.class)
|
|
|
|
List<UdiRelevanceEntity> udiRelevanceList = udiRelevanceService.list(Wrappers.lambdaQuery(UdiRelevanceEntity.class)
|
|
|
|
.le((boolean) map.get("isNew"), UdiRelevanceEntity::getUpdateTime, now)
|
|
|
|
.le((boolean) map.get("isNew"), UdiRelevanceEntity::getUpdateTime, now)
|
|
|
@ -334,6 +343,7 @@ public class SpsSyncDownloadService {
|
|
|
|
);
|
|
|
|
);
|
|
|
|
if (CollectionUtil.isNotEmpty(udiRelevanceList)) {
|
|
|
|
if (CollectionUtil.isNotEmpty(udiRelevanceList)) {
|
|
|
|
jsonMap.put(UdiRelevanceEntity.class.getSimpleName(), udiRelevanceList);
|
|
|
|
jsonMap.put(UdiRelevanceEntity.class.getSimpleName(), udiRelevanceList);
|
|
|
|
|
|
|
|
remark.append("物资字典主表信息:").append(udiRelevanceList.size()).append("条\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
List<BasicProductsEntity> productsList = basicProductsDao.selectList(Wrappers.lambdaQuery(BasicProductsEntity.class)
|
|
|
|
List<BasicProductsEntity> productsList = basicProductsDao.selectList(Wrappers.lambdaQuery(BasicProductsEntity.class)
|
|
|
|
.le((boolean) map.get("isNew"), BasicProductsEntity::getUpdateTime, now)
|
|
|
|
.le((boolean) map.get("isNew"), BasicProductsEntity::getUpdateTime, now)
|
|
|
@ -341,6 +351,7 @@ public class SpsSyncDownloadService {
|
|
|
|
, map.get("oldDate"), now)
|
|
|
|
, map.get("oldDate"), now)
|
|
|
|
);
|
|
|
|
);
|
|
|
|
if (CollectionUtil.isNotEmpty(productsList)) {
|
|
|
|
if (CollectionUtil.isNotEmpty(productsList)) {
|
|
|
|
|
|
|
|
remark.append("物资字典字表信息:").append(productsList.size()).append("条\n");
|
|
|
|
jsonMap.put(BasicProductsEntity.class.getSimpleName(), productsList);
|
|
|
|
jsonMap.put(BasicProductsEntity.class.getSimpleName(), productsList);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
List<CompanyProductRelevanceEntity> relevanceList = relevanceService.list(Wrappers.lambdaQuery(CompanyProductRelevanceEntity.class)
|
|
|
|
List<CompanyProductRelevanceEntity> relevanceList = relevanceService.list(Wrappers.lambdaQuery(CompanyProductRelevanceEntity.class)
|
|
|
@ -349,6 +360,7 @@ public class SpsSyncDownloadService {
|
|
|
|
, map.get("oldDate"), now)
|
|
|
|
, map.get("oldDate"), now)
|
|
|
|
);
|
|
|
|
);
|
|
|
|
if (CollectionUtil.isNotEmpty(relevanceList)) {
|
|
|
|
if (CollectionUtil.isNotEmpty(relevanceList)) {
|
|
|
|
|
|
|
|
remark.append("供应商关联物资字典表:").append(relevanceList.size()).append("条\n");
|
|
|
|
jsonMap.put(CompanyProductRelevanceEntity.class.getSimpleName(), relevanceList);
|
|
|
|
jsonMap.put(CompanyProductRelevanceEntity.class.getSimpleName(), relevanceList);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -362,6 +374,7 @@ public class SpsSyncDownloadService {
|
|
|
|
, map.get("oldDate"), now)
|
|
|
|
, map.get("oldDate"), now)
|
|
|
|
);
|
|
|
|
);
|
|
|
|
if (CollectionUtil.isNotEmpty(corpList)) {
|
|
|
|
if (CollectionUtil.isNotEmpty(corpList)) {
|
|
|
|
|
|
|
|
remark.append("往来单位字典信息:").append(corpList.size()).append("条\n");
|
|
|
|
jsonMap.put(BasicCorpEntity.class.getSimpleName(), corpList);
|
|
|
|
jsonMap.put(BasicCorpEntity.class.getSimpleName(), corpList);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -393,6 +406,7 @@ public class SpsSyncDownloadService {
|
|
|
|
, map.get("oldDate"), now)
|
|
|
|
, map.get("oldDate"), now)
|
|
|
|
);
|
|
|
|
);
|
|
|
|
if (CollectionUtil.isNotEmpty(supCertSetList)) {
|
|
|
|
if (CollectionUtil.isNotEmpty(supCertSetList)) {
|
|
|
|
|
|
|
|
remark.append("资质填报设置信息:").append(supCertSetList.size()).append("条\n");
|
|
|
|
jsonMap.put(SupCertSetEntity.class.getSimpleName(), supCertSetList);
|
|
|
|
jsonMap.put(SupCertSetEntity.class.getSimpleName(), supCertSetList);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
List<SupCompanyEntity> supCompanyList = supCompanyService.list(Wrappers.lambdaQuery(SupCompanyEntity.class)
|
|
|
|
List<SupCompanyEntity> supCompanyList = supCompanyService.list(Wrappers.lambdaQuery(SupCompanyEntity.class)
|
|
|
@ -402,6 +416,7 @@ public class SpsSyncDownloadService {
|
|
|
|
, map.get("oldDate"), now)
|
|
|
|
, map.get("oldDate"), now)
|
|
|
|
);
|
|
|
|
);
|
|
|
|
if (CollectionUtil.isNotEmpty(supCompanyList)) {
|
|
|
|
if (CollectionUtil.isNotEmpty(supCompanyList)) {
|
|
|
|
|
|
|
|
remark.append("供应商资质信息:").append(supCompanyList.size()).append("条\n");
|
|
|
|
jsonMap.put(SupCompanyEntity.class.getSimpleName(), supCompanyList);
|
|
|
|
jsonMap.put(SupCompanyEntity.class.getSimpleName(), supCompanyList);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
List<SupManufacturerEntity> supManufacturerList = supManufacturerService.list(Wrappers.lambdaQuery(SupManufacturerEntity.class)
|
|
|
|
List<SupManufacturerEntity> supManufacturerList = supManufacturerService.list(Wrappers.lambdaQuery(SupManufacturerEntity.class)
|
|
|
@ -410,6 +425,7 @@ public class SpsSyncDownloadService {
|
|
|
|
, map.get("oldDate"), now)
|
|
|
|
, map.get("oldDate"), now)
|
|
|
|
);
|
|
|
|
);
|
|
|
|
if (CollectionUtil.isNotEmpty(supManufacturerList)) {
|
|
|
|
if (CollectionUtil.isNotEmpty(supManufacturerList)) {
|
|
|
|
|
|
|
|
remark.append("生产企业资质信息:").append(supManufacturerList.size()).append("条\n");
|
|
|
|
jsonMap.put(SupManufacturerEntity.class.getSimpleName(), supManufacturerList);
|
|
|
|
jsonMap.put(SupManufacturerEntity.class.getSimpleName(), supManufacturerList);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
List<SupProductEntity> supProductList = supProductService.list(Wrappers.lambdaQuery(SupProductEntity.class)
|
|
|
|
List<SupProductEntity> supProductList = supProductService.list(Wrappers.lambdaQuery(SupProductEntity.class)
|
|
|
@ -419,25 +435,27 @@ public class SpsSyncDownloadService {
|
|
|
|
, map.get("oldDate"), now)
|
|
|
|
, map.get("oldDate"), now)
|
|
|
|
);
|
|
|
|
);
|
|
|
|
if (CollectionUtil.isNotEmpty(supProductList)) {
|
|
|
|
if (CollectionUtil.isNotEmpty(supProductList)) {
|
|
|
|
|
|
|
|
remark.append("配送产品资质信息:").append(supProductList.size()).append("条\n");
|
|
|
|
jsonMap.put(SupProductEntity.class.getSimpleName(), supProductList);
|
|
|
|
jsonMap.put(SupProductEntity.class.getSimpleName(), supProductList);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (jsonMap.size() > 0) {
|
|
|
|
if (jsonMap.size() > 0) {
|
|
|
|
|
|
|
|
jsonMap.put(SYNC_REMARK, remark.toString());
|
|
|
|
if (!createFile) {
|
|
|
|
if (!createFile) {
|
|
|
|
return true;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
try {
|
|
|
|
String fileFullPath = writeFile(filePath, exportType.getRemark(), JsonUtils.toJsonString(jsonMap));
|
|
|
|
String fileFullPath = writeFile(filePath, exportType.getRemark(), JsonUtils.toJsonString(jsonMap));
|
|
|
|
//计算总数
|
|
|
|
//计算总数
|
|
|
|
int total = 0;
|
|
|
|
// int total = 0;
|
|
|
|
for (List l : jsonMap.values()) {
|
|
|
|
// for (List l : jsonMap.values()) {
|
|
|
|
total += l.size();
|
|
|
|
// total += l.size();
|
|
|
|
}
|
|
|
|
// }
|
|
|
|
try {
|
|
|
|
try {
|
|
|
|
//修改任务数据
|
|
|
|
//修改任务数据
|
|
|
|
boolean update = updateExportStatus(exportType, fileFullPath, total);
|
|
|
|
boolean update = updateExportStatus(exportType, fileFullPath, remark.toString());
|
|
|
|
} catch (Exception e) {
|
|
|
|
} catch (Exception e) {
|
|
|
|
// 异常回滚
|
|
|
|
// 异常回滚
|
|
|
|
this.exportTimeRollback(totalTimeMap, exportType, fileFullPath);
|
|
|
|
this.exportTimeRollback(totalTimeMap, exportType, fileFullPath);
|
|
|
@ -471,9 +489,10 @@ public class SpsSyncDownloadService {
|
|
|
|
* @return 是否有数据 true/false 有新数据/无新数据
|
|
|
|
* @return 是否有数据 true/false 有新数据/无新数据
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
protected boolean generateOtherDataFile(SyncDataSetResponse info, Date now, boolean createFile) {
|
|
|
|
protected boolean generateOtherDataFile(SyncDataSetResponse info, Date now, boolean createFile) {
|
|
|
|
|
|
|
|
StringBuffer remark = new StringBuffer();
|
|
|
|
BasicExportTypeEnum exportType = BasicExportTypeEnum.OTHER_DATA;
|
|
|
|
BasicExportTypeEnum exportType = BasicExportTypeEnum.OTHER_DATA;
|
|
|
|
//文件数据
|
|
|
|
//文件数据
|
|
|
|
Map<String, List> jsonMap = new WeakHashMap<>(4);
|
|
|
|
Map<String, Object> jsonMap = new WeakHashMap<>(4);
|
|
|
|
Map<BasicExportStatusTimeEnum, Map<String, Object>> totalTimeMap = new WeakHashMap<>(10);
|
|
|
|
Map<BasicExportStatusTimeEnum, Map<String, Object>> totalTimeMap = new WeakHashMap<>(10);
|
|
|
|
try {
|
|
|
|
try {
|
|
|
|
//确认有开启物资字典由外向内同步
|
|
|
|
//确认有开启物资字典由外向内同步
|
|
|
@ -486,6 +505,7 @@ public class SpsSyncDownloadService {
|
|
|
|
, map.get("oldDate"), now)
|
|
|
|
, map.get("oldDate"), now)
|
|
|
|
);
|
|
|
|
);
|
|
|
|
if (CollectionUtil.isNotEmpty(ioCodeLostList)) {
|
|
|
|
if (CollectionUtil.isNotEmpty(ioCodeLostList)) {
|
|
|
|
|
|
|
|
remark.append("UDI缺失码:").append(ioCodeLostList.size()).append("条\n");
|
|
|
|
jsonMap.put(BasicExportStatusTimeEntity.class.getSimpleName(), ioCodeLostList);
|
|
|
|
jsonMap.put(BasicExportStatusTimeEntity.class.getSimpleName(), ioCodeLostList);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -499,25 +519,27 @@ public class SpsSyncDownloadService {
|
|
|
|
, map.get("oldDate"), now)
|
|
|
|
, map.get("oldDate"), now)
|
|
|
|
);
|
|
|
|
);
|
|
|
|
if (CollectionUtil.isNotEmpty(ioCodeRelList)) {
|
|
|
|
if (CollectionUtil.isNotEmpty(ioCodeRelList)) {
|
|
|
|
|
|
|
|
remark.append("UDI码关联关系:").append(ioCodeRelList.size()).append("条\n");
|
|
|
|
jsonMap.put(IoCodeRelEntity.class.getSimpleName(), ioCodeRelList);
|
|
|
|
jsonMap.put(IoCodeRelEntity.class.getSimpleName(), ioCodeRelList);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (jsonMap.size() > 0) {
|
|
|
|
if (jsonMap.size() > 0) {
|
|
|
|
|
|
|
|
jsonMap.put(SYNC_REMARK, remark.toString());
|
|
|
|
if (!createFile) {
|
|
|
|
if (!createFile) {
|
|
|
|
return true;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
try {
|
|
|
|
String fileFullPath = writeFile(filePath, exportType.getRemark(), JsonUtils.toJsonString(jsonMap));
|
|
|
|
String fileFullPath = writeFile(filePath, exportType.getRemark(), JsonUtils.toJsonString(jsonMap));
|
|
|
|
//计算总数
|
|
|
|
//计算总数
|
|
|
|
int total = 0;
|
|
|
|
// int total = 0;
|
|
|
|
for (List l : jsonMap.values()) {
|
|
|
|
// for (List l : jsonMap.values()) {
|
|
|
|
total += l.size();
|
|
|
|
// total += l.size();
|
|
|
|
}
|
|
|
|
// }
|
|
|
|
try {
|
|
|
|
try {
|
|
|
|
//修改任务数据
|
|
|
|
//修改任务数据
|
|
|
|
boolean update = updateExportStatus(exportType, fileFullPath, total);
|
|
|
|
boolean update = updateExportStatus(exportType, fileFullPath, remark.toString());
|
|
|
|
} catch (Exception e) {
|
|
|
|
} catch (Exception e) {
|
|
|
|
// 异常回滚
|
|
|
|
// 异常回滚
|
|
|
|
this.exportTimeRollback(totalTimeMap, exportType, fileFullPath);
|
|
|
|
this.exportTimeRollback(totalTimeMap, exportType, fileFullPath);
|
|
|
@ -551,9 +573,10 @@ public class SpsSyncDownloadService {
|
|
|
|
* @return 是否有数据 true/false 有新数据/无新数据
|
|
|
|
* @return 是否有数据 true/false 有新数据/无新数据
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
protected boolean generateDocumentTypeDataFile(SyncDataSetResponse info, Date now, boolean createFile) {
|
|
|
|
protected boolean generateDocumentTypeDataFile(SyncDataSetResponse info, Date now, boolean createFile) {
|
|
|
|
|
|
|
|
StringBuffer remark = new StringBuffer();
|
|
|
|
BasicExportTypeEnum exportType = BasicExportTypeEnum.DOCUMENT_TYPE_DATA;
|
|
|
|
BasicExportTypeEnum exportType = BasicExportTypeEnum.DOCUMENT_TYPE_DATA;
|
|
|
|
//文件数据
|
|
|
|
//文件数据
|
|
|
|
Map<String, List> jsonMap = new WeakHashMap<>(4);
|
|
|
|
Map<String, Object> jsonMap = new WeakHashMap<>(4);
|
|
|
|
Map<BasicExportStatusTimeEnum, Map<String, Object>> totalTimeMap = new WeakHashMap<>(10);
|
|
|
|
Map<BasicExportStatusTimeEnum, Map<String, Object>> totalTimeMap = new WeakHashMap<>(10);
|
|
|
|
try {
|
|
|
|
try {
|
|
|
|
//确认有开启业务单据类型同步
|
|
|
|
//确认有开启业务单据类型同步
|
|
|
@ -566,6 +589,7 @@ public class SpsSyncDownloadService {
|
|
|
|
, map.get("oldDate"), now)
|
|
|
|
, map.get("oldDate"), now)
|
|
|
|
);
|
|
|
|
);
|
|
|
|
if (CollectionUtil.isNotEmpty(bussinessTypeEntities)) {
|
|
|
|
if (CollectionUtil.isNotEmpty(bussinessTypeEntities)) {
|
|
|
|
|
|
|
|
remark.append("扫码单据类型:").append(bussinessTypeEntities.size()).append("条\n");
|
|
|
|
jsonMap.put(BasicBussinessTypeEntity.class.getSimpleName(), bussinessTypeEntities);
|
|
|
|
jsonMap.put(BasicBussinessTypeEntity.class.getSimpleName(), bussinessTypeEntities);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -579,6 +603,7 @@ public class SpsSyncDownloadService {
|
|
|
|
, map.get("oldDate"), now)
|
|
|
|
, map.get("oldDate"), now)
|
|
|
|
);
|
|
|
|
);
|
|
|
|
if (CollectionUtil.isNotEmpty(busTypeChangeEntities)) {
|
|
|
|
if (CollectionUtil.isNotEmpty(busTypeChangeEntities)) {
|
|
|
|
|
|
|
|
remark.append("业务单据类型:").append(busTypeChangeEntities.size()).append("条\n");
|
|
|
|
jsonMap.put(BasicBusTypeChangeEntity.class.getSimpleName(), busTypeChangeEntities);
|
|
|
|
jsonMap.put(BasicBusTypeChangeEntity.class.getSimpleName(), busTypeChangeEntities);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -592,25 +617,27 @@ public class SpsSyncDownloadService {
|
|
|
|
, map.get("oldDate"), now)
|
|
|
|
, map.get("oldDate"), now)
|
|
|
|
);
|
|
|
|
);
|
|
|
|
if (CollectionUtil.isNotEmpty(thrBusTypeOriginEntities)) {
|
|
|
|
if (CollectionUtil.isNotEmpty(thrBusTypeOriginEntities)) {
|
|
|
|
|
|
|
|
remark.append("第三方单据类型:").append(thrBusTypeOriginEntities.size()).append("条\n");
|
|
|
|
jsonMap.put(ThrBusTypeOriginEntity.class.getSimpleName(), thrBusTypeOriginEntities);
|
|
|
|
jsonMap.put(ThrBusTypeOriginEntity.class.getSimpleName(), thrBusTypeOriginEntities);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (jsonMap.size() > 0) {
|
|
|
|
if (jsonMap.size() > 0) {
|
|
|
|
|
|
|
|
jsonMap.put(SYNC_REMARK, remark.toString());
|
|
|
|
if (!createFile) {
|
|
|
|
if (!createFile) {
|
|
|
|
return true;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
try {
|
|
|
|
String fileFullPath = writeFile(filePath, exportType.getRemark(), JsonUtils.toJsonString(jsonMap));
|
|
|
|
String fileFullPath = writeFile(filePath, exportType.getRemark(), JsonUtils.toJsonString(jsonMap));
|
|
|
|
//计算总数
|
|
|
|
//计算总数
|
|
|
|
int total = 0;
|
|
|
|
// int total = 0;
|
|
|
|
for (List l : jsonMap.values()) {
|
|
|
|
// for (List l : jsonMap.values()) {
|
|
|
|
total += l.size();
|
|
|
|
// total += l.size();
|
|
|
|
}
|
|
|
|
// }
|
|
|
|
try {
|
|
|
|
try {
|
|
|
|
//修改任务数据
|
|
|
|
//修改任务数据
|
|
|
|
boolean update = updateExportStatus(exportType, fileFullPath, total);
|
|
|
|
boolean update = updateExportStatus(exportType, fileFullPath, remark.toString());
|
|
|
|
} catch (Exception e) {
|
|
|
|
} catch (Exception e) {
|
|
|
|
// 异常回滚
|
|
|
|
// 异常回滚
|
|
|
|
this.exportTimeRollback(totalTimeMap, exportType, fileFullPath);
|
|
|
|
this.exportTimeRollback(totalTimeMap, exportType, fileFullPath);
|
|
|
@ -686,15 +713,14 @@ public class SpsSyncDownloadService {
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* @param exportType 任务类型
|
|
|
|
* @param exportType 任务类型
|
|
|
|
* @param fileFullPath 文件地址
|
|
|
|
* @param fileFullPath 文件地址
|
|
|
|
* @param total 总条数
|
|
|
|
|
|
|
|
* @return 更新结果 true/false
|
|
|
|
* @return 更新结果 true/false
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
private boolean updateExportStatus(BasicExportTypeEnum exportType, String fileFullPath, Integer total) {
|
|
|
|
private boolean updateExportStatus(BasicExportTypeEnum exportType, String fileFullPath, String remark) {
|
|
|
|
return basicExportService.update(Wrappers.lambdaUpdate(BasicExportStatusEntity.class)
|
|
|
|
return basicExportService.update(Wrappers.lambdaUpdate(BasicExportStatusEntity.class)
|
|
|
|
.set(BasicExportStatusEntity::getStatus, BasicExportStatusEnum.WAIT_SYNC.getCode())
|
|
|
|
.set(BasicExportStatusEntity::getStatus, BasicExportStatusEnum.WAIT_SYNC.getCode())
|
|
|
|
.set(BasicExportStatusEntity::getUpdateTime, new Date())
|
|
|
|
.set(BasicExportStatusEntity::getUpdateTime, new Date())
|
|
|
|
.set(BasicExportStatusEntity::getCacheFilePath, fileFullPath)
|
|
|
|
.set(BasicExportStatusEntity::getCacheFilePath, fileFullPath)
|
|
|
|
.set(total != null, BasicExportStatusEntity::getRemark, String.format("%s: %s条", exportType.getRemark(), total))
|
|
|
|
.set(BasicExportStatusEntity::getRemark, remark)
|
|
|
|
.eq(BasicExportStatusEntity::getType, exportType.getRemark())
|
|
|
|
.eq(BasicExportStatusEntity::getType, exportType.getRemark())
|
|
|
|
.eq(BasicExportStatusEntity::getStatus, BasicExportStatusEnum.WAIT_BUILT.getCode())
|
|
|
|
.eq(BasicExportStatusEntity::getStatus, BasicExportStatusEnum.WAIT_BUILT.getCode())
|
|
|
|
.isNull(BasicExportStatusEntity::getCacheFilePath)
|
|
|
|
.isNull(BasicExportStatusEntity::getCacheFilePath)
|
|
|
@ -831,11 +857,19 @@ public class SpsSyncDownloadService {
|
|
|
|
|
|
|
|
|
|
|
|
orderInvoiceEntities.addAll(invoiceEntities);
|
|
|
|
orderInvoiceEntities.addAll(invoiceEntities);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
String logs = "";
|
|
|
|
|
|
|
|
logs = logs + "扫码单据信息:" + orderEntities.size() + "条\n";
|
|
|
|
|
|
|
|
logs = logs + "单据业务详情信息:" + orderDetailBizEntities.size() + "条\n";
|
|
|
|
|
|
|
|
logs = logs + "单据扫码详情信息:" + orderDetailCodeEntities.size() + "条\n";
|
|
|
|
|
|
|
|
logs = logs + "单据校验结果信息:" + orderDetailResultEntities.size() + "条\n";
|
|
|
|
|
|
|
|
logs = logs + "发票信息:" + orderInvoiceEntities.size() + "条\n";
|
|
|
|
|
|
|
|
logs = logs + "扫码信息:" + codeEntities.size() + "条\n";
|
|
|
|
|
|
|
|
syncOrderResponse.setSyncRemark(logs);
|
|
|
|
syncOrderResponse.setSyncFiles(syncFiles);
|
|
|
|
syncOrderResponse.setSyncFiles(syncFiles);
|
|
|
|
syncOrderResponse.setCodeEntities(codeEntities);
|
|
|
|
syncOrderResponse.setCodeEntities(codeEntities);
|
|
|
|
syncOrderResponse.setOrderDetailBizEntities(orderDetailBizEntities);
|
|
|
|
syncOrderResponse.setOrderDetailBizEntities(orderDetailBizEntities);
|
|
|
|