|
|
|
@ -155,11 +155,11 @@ public class SpsSyncDownloadController {
|
|
|
|
|
@AuthRuleAnnotation("")
|
|
|
|
|
@GetMapping("sps/sync/data")
|
|
|
|
|
@ApiOperation("拉取同步任务数据")
|
|
|
|
|
public BaseResponse data(BasicExportTypeEnum exportType) {
|
|
|
|
|
public BaseResponse<RelaySyncResponse> data(BasicExportTypeEnum exportType) {
|
|
|
|
|
BaseResponse<RelaySyncResponse> baseResponse = new BaseResponse<>();
|
|
|
|
|
BasicExportStatusEntity one = basicExportService.getOne(Wrappers.lambdaQuery(BasicExportStatusEntity.class)
|
|
|
|
|
.eq(BasicExportStatusEntity::getType, exportType.getRemark())
|
|
|
|
|
.orderByDesc(BasicExportStatusEntity::getStartTime)
|
|
|
|
|
.orderByAsc(BasicExportStatusEntity::getStartTime)
|
|
|
|
|
.last("limit 1")
|
|
|
|
|
);
|
|
|
|
|
RelaySyncResponse relaySyncResponse = null;
|
|
|
|
@ -369,6 +369,7 @@ public class SpsSyncDownloadController {
|
|
|
|
|
private final ThrInvWarehouseDao thrInvWarehouseDao;
|
|
|
|
|
private final ThrProductsDao thrProductsDao;
|
|
|
|
|
private final ThrCorpDao thrCorpDao;
|
|
|
|
|
|
|
|
|
|
private void saveUploadThrData(SpsSyncThrDataResponse bean) {
|
|
|
|
|
|
|
|
|
|
if (CollectionUtil.isNotEmpty(bean.getDeptEntities())) {
|
|
|
|
|