|
|
|
@ -257,7 +257,16 @@ public class SpsSyncExportStatusController {
|
|
|
|
|
if (syncDataSetEntity.getSyncTime() == null) {
|
|
|
|
|
return ResultVOUtils.error(ResultEnum.NOT_NETWORK.getCode(), "缺少初始化数据");
|
|
|
|
|
}
|
|
|
|
|
spsSyncDownloadService.syncData(syncDataSetEntity, req.getExportType(), req.getSyncTime());
|
|
|
|
|
switch (req.getExportType()) {
|
|
|
|
|
case IO_ORDER:
|
|
|
|
|
spsSyncDownloadService.syncOrderTask();
|
|
|
|
|
break;
|
|
|
|
|
case COUNTRY_DI_DATA:
|
|
|
|
|
spsSyncDownloadService.syncDiProductsTask();
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
spsSyncDownloadService.syncData(syncDataSetEntity, req.getExportType(), req.getSyncTime());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return ResultVOUtils.success();
|
|
|
|
|
}
|
|
|
|
|