下载同步数据--其他数据

master
wj 2 years ago
parent e3c6399aa5
commit dea175b4d7

@ -32,6 +32,10 @@ public class BasicProcessStatus {
*
*/
public static final String BASIC_DATA = "21";
/**
*
*/
public static final String OTHER_DATA = "22";
public static final String ALL_BUS_ORDER = "11";
public static final String NEW_ALL_DI = "10";
public static final String NEW_ALL_THR_DATA = "12"; //所有第三方基础数据

@ -243,6 +243,8 @@ public class ConstantStatus {
public static final String SYNC_DOWNLOAD_DI_PRODUCTS = "AutoDownloadDiProducts";
//自动下载基础数据
public static final String SYNC_DOWNLOAD_BASIC_DATA = "AutoDownloadBasicData";
//自动下载其他数据
public static final String SYNC_DOWNLOAD_OTHER_DATA = "AutoDownloadOtherData";
public static final int SYNC_STATUS_SUCCESS = 1; //处理成功
public static final int SYNC_STATUS_FAIL = 2; //处理失败

@ -1,6 +1,7 @@
package com.glxp.api.dao.inout;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.glxp.api.dao.BaseMapperPlus;
import com.glxp.api.entity.inout.IoCodeRelEntity;
import com.glxp.api.req.inout.IoOrderRelRequest;
import com.glxp.api.res.inout.IoCodeRelResponse;
@ -9,7 +10,7 @@ import org.apache.ibatis.annotations.Mapper;
import java.util.List;
@Mapper
public interface IoCodeRelMapper extends BaseMapper<IoCodeRelEntity> {
public interface IoCodeRelMapper extends BaseMapperPlus<IoCodeRelMapper, IoCodeRelEntity, IoCodeRelEntity> {
List<IoCodeRelResponse> selectIoCodeRelList(IoOrderRelRequest ioOrderRelRequest);

@ -249,6 +249,18 @@ public class SpGetHttpClient {
}
/**
* UDI
*
* @return
*/
public String pullOtherData() {
String result = okHttpCli.doGet(getIpUrl() + "/sps/sync/otherData", null, buildHeader());
return result;
}
public void finishTask(String id) {
BasicExportStatusRequest basicExportStatusRequest = new BasicExportStatusRequest();
basicExportStatusRequest.setId(id);

@ -0,0 +1,15 @@
package com.glxp.api.res.sync;
import com.glxp.api.entity.inout.IoCodeLostEntity;
import com.glxp.api.entity.inout.IoCodeRelEntity;
import lombok.Data;
import java.util.List;
@Data
public class SpsSyncOtherDataResponse extends BaseSyncResponse {
List<IoCodeLostEntity> ioCodeLostList;
List<IoCodeRelEntity> ioCodeRelList;
}

@ -1,11 +1,12 @@
package com.glxp.api.service.inout;
import com.baomidou.mybatisplus.extension.service.IService;
import com.glxp.api.entity.inout.IoCodeLostEntity;
import com.glxp.api.res.inout.IoCodeLostResponse;
import java.util.List;
public interface IoCodeLostService {
public interface IoCodeLostService extends IService<IoCodeLostEntity> {
List<IoCodeLostResponse> selectLost(IoCodeLostEntity ioCodeLostEntity);

@ -1,12 +1,13 @@
package com.glxp.api.service.inout;
import com.baomidou.mybatisplus.extension.service.IService;
import com.glxp.api.entity.inout.IoCodeRelEntity;
import com.glxp.api.req.inout.IoOrderRelRequest;
import com.glxp.api.res.inout.IoCodeRelResponse;
import java.util.List;
public interface IoCodeRelService {
public interface IoCodeRelService extends IService<IoCodeRelEntity> {
List<IoCodeRelResponse> selectIoCodeRelList(IoOrderRelRequest ioOrderRelRequest);

@ -1,6 +1,7 @@
package com.glxp.api.service.inout.impl;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.glxp.api.res.inout.IoCodeLostResponse;
import org.springframework.stereotype.Service;
@ -15,7 +16,7 @@ import java.util.List;
@Service
@Transactional(rollbackFor = Exception.class)
public class IoCodeLostServiceImpl implements IoCodeLostService {
public class IoCodeLostServiceImpl extends ServiceImpl<IoCodeLostMapper, IoCodeLostEntity> implements IoCodeLostService {
@Resource
IoCodeLostMapper codeLostEntityMapper;

@ -2,6 +2,7 @@ package com.glxp.api.service.inout.impl;
import cn.hutool.core.util.StrUtil;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.github.pagehelper.PageHelper;
import com.glxp.api.dao.inout.IoCodeRelMapper;
import com.glxp.api.entity.inout.IoCodeRelEntity;
@ -17,7 +18,7 @@ import java.util.List;
@Service
@Transactional(rollbackFor = Exception.class)
public class IoCodeRelServiceImpl implements IoCodeRelService {
public class IoCodeRelServiceImpl extends ServiceImpl<IoCodeRelMapper, IoCodeRelEntity> implements IoCodeRelService {
@Resource
IoCodeRelMapper ioCodeRelMapper;
@ -42,41 +43,42 @@ public class IoCodeRelServiceImpl implements IoCodeRelService {
@Override
public List<IoCodeRelEntity> selectIoCodeRelByCode(String code, String parentCode) {
QueryWrapper<IoCodeRelEntity> ew=new QueryWrapper<>();
if(StrUtil.isNotEmpty(code)){
ew.eq("code",code);
QueryWrapper<IoCodeRelEntity> ew = new QueryWrapper<>();
if (StrUtil.isNotEmpty(code)) {
ew.eq("code", code);
}
if(StrUtil.isNotEmpty(parentCode)){
ew.eq("parentCode",parentCode);
if (StrUtil.isNotEmpty(parentCode)) {
ew.eq("parentCode", parentCode);
}
List<IoCodeRelEntity> list=ioCodeRelMapper.selectList(ew);
List<IoCodeRelEntity> list = ioCodeRelMapper.selectList(ew);
return list;
}
@Override
public Long selectIoCodeRelCount(String parentCode) {
QueryWrapper<IoCodeRelEntity> ew=new QueryWrapper<>();
if(StrUtil.isNotEmpty(parentCode)){
ew.eq("parentCode",parentCode);
QueryWrapper<IoCodeRelEntity> ew = new QueryWrapper<>();
if (StrUtil.isNotEmpty(parentCode)) {
ew.eq("parentCode", parentCode);
}
Long count=ioCodeRelMapper.selectCount(ew);
Long count = ioCodeRelMapper.selectCount(ew);
return count;
}
@Override
public int delIoCodeRel(String code, String parentCode) {
QueryWrapper<IoCodeRelEntity> ew=new QueryWrapper<>();
if(StrUtil.isNotEmpty(code)){
ew.eq("code",code);
QueryWrapper<IoCodeRelEntity> ew = new QueryWrapper<>();
if (StrUtil.isNotEmpty(code)) {
ew.eq("code", code);
}
if(StrUtil.isNotEmpty(parentCode)){
ew.eq("parentCode",parentCode);
if (StrUtil.isNotEmpty(parentCode)) {
ew.eq("parentCode", parentCode);
}
int count=ioCodeRelMapper.delete(ew);
return count;
int count = ioCodeRelMapper.delete(ew);
return count;
}
@Override
public List<IoCodeRelResponse> selectIoCodeRelDetailList(IoOrderRelRequest ioOrderRelRequest) {
if (ioOrderRelRequest == null) {

@ -12,6 +12,8 @@ import com.glxp.api.common.util.ResultVOUtils;
import com.glxp.api.constant.BasicProcessStatus;
import com.glxp.api.constant.ConstantStatus;
import com.glxp.api.dao.basic.*;
import com.glxp.api.dao.inout.IoCodeLostMapper;
import com.glxp.api.dao.inout.IoCodeRelMapper;
import com.glxp.api.dao.purchase.*;
import com.glxp.api.entity.basic.ProductInfoEntity;
import com.glxp.api.entity.basic.UdiCompanyEntity;
@ -534,6 +536,34 @@ public class HeartService {
}
}
/**
* UDI
*/
@Transactional(rollbackFor = Exception.class)
public void pullOtherData() {
String data = spGetHttp.pullOtherData();
cn.hutool.json.JSONObject obj = JSONUtil.parseObj(data);
SpsSyncOtherDataResponse bean = obj.get("data", SpsSyncOtherDataResponse.class);
this.insertOtherData(bean);
String taskId = bean.getTaskId();
if (StrUtil.isNotBlank(taskId)) {
//插入下载记录
BasicDownloadStatusEntity basicDownloadStatusEntity = new BasicDownloadStatusEntity();
basicDownloadStatusEntity.setId(CustomUtil.getId());
basicDownloadStatusEntity.setTaskId(taskId);
basicDownloadStatusEntity.setStartTime(new Date());
basicDownloadStatusEntity.setUpdateTime(new Date());
basicDownloadStatusEntity.setEndTime(new Date());
basicDownloadStatusEntity.setIdDatas(ConstantStatus.SYNC_DOWNLOAD_OTHER_DATA);
basicDownloadStatusEntity.setStatus(ConstantStatus.SYNC_STATUS_SUCCESS); //下载完成
basicDownloadStatusEntity.setType(BasicProcessStatus.OTHER_DATA);
basicDownloadStatusEntity.setScheduleType(1);
basicDownloadService.insertDownloadStatus(basicDownloadStatusEntity);
//通知自助平台任务已完成
spGetHttp.finishTask(taskId);
}
}
/**
*
*
@ -573,6 +603,24 @@ public class HeartService {
}
}
private final IoCodeLostMapper ioCodeLostMapper;
private final IoCodeRelMapper ioCodeRelMapper;
/**
*
*
* @param bean
*/
@Transactional(propagation = Propagation.NESTED)
public void insertOtherData(SpsSyncOtherDataResponse bean) {
if (CollectionUtil.isNotEmpty(bean.getIoCodeLostList())) {
ioCodeLostMapper.insertOrUpdateBatch(bean.getIoCodeLostList());
}
if (CollectionUtil.isNotEmpty(bean.getIoCodeRelList())) {
ioCodeRelMapper.insertOrUpdateBatch(bean.getIoCodeRelList());
}
}
public void insetOrderDb(SpsSyncOrderResponse syncDataResponse, IoOrderEntity orderEntity) {
//更新码详情
if (CollUtil.isNotEmpty(syncDataResponse.getOrderDetailCodeEntities())) {

@ -105,6 +105,7 @@ public class SyncHeartTask implements SchedulingConfigurer {
if (curTime - lastTime > timeInterval) {
heartService.dlAllOrder();
heartService.pullBasicData();
heartService.pullOtherData();
redisUtil.set("SPS_SYNC_DOWNLOAD_DATA", curTime);
}

Loading…
Cancel
Save