|
|
|
@ -4,6 +4,7 @@ import cn.hutool.core.collection.CollUtil;
|
|
|
|
|
import cn.hutool.core.collection.CollectionUtil;
|
|
|
|
|
import cn.hutool.core.util.IdUtil;
|
|
|
|
|
import cn.hutool.core.util.StrUtil;
|
|
|
|
|
import cn.hutool.json.JSONUtil;
|
|
|
|
|
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
|
|
|
|
|
import com.glxp.api.common.res.BaseResponse;
|
|
|
|
|
import com.glxp.api.common.util.ResultVOUtils;
|
|
|
|
@ -115,6 +116,17 @@ public class SpsSyncDownloadService {
|
|
|
|
|
orderStatusEntity.setStatus(BasicExportStatusEnum.WAIT_SYNC.getCode());
|
|
|
|
|
orderStatusEntity.setStartTime(new Date());
|
|
|
|
|
orderStatusEntity.setScheduleType(BasicProcessStatus.SCHEDULE_NORMAL);
|
|
|
|
|
|
|
|
|
|
if (lastUpdateTime != null) {
|
|
|
|
|
String fileFullPath = null;
|
|
|
|
|
try {
|
|
|
|
|
fileFullPath = writeFile(filePath, BasicProcessStatus.NEW_ALL_BUS_ORDER, JSONUtil.toJsonStr(baseResponse.getData()));
|
|
|
|
|
orderStatusEntity.setCacheFilePath(fileFullPath);
|
|
|
|
|
orderStatusEntity.setRemark(baseResponse.getData().getSyncRemark());
|
|
|
|
|
} catch (IOException e) {
|
|
|
|
|
e.printStackTrace();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
basicExportService.insertExportStatus(orderStatusEntity);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|