同步功能修改

version1
anthonyywj2 3 years ago
parent 101638aac3
commit 8fcaebcca2

@ -1,20 +1,24 @@
package com.glxp.sale.admin.controller.sync; package com.glxp.sale.admin.controller.sync;
import cn.hutool.core.collection.CollUtil;
import com.alibaba.fastjson.JSONObject; import com.alibaba.fastjson.JSONObject;
import com.alibaba.fastjson.TypeReference; import com.alibaba.fastjson.TypeReference;
import com.glxp.sale.admin.constant.BasicProcessStatus; import com.glxp.sale.admin.constant.BasicProcessStatus;
import com.glxp.sale.admin.entity.sync.BasicExportStatusEntity; import com.glxp.sale.admin.entity.sync.BasicExportStatusEntity;
import com.glxp.sale.admin.req.info.DeleteRequest;
import com.glxp.sale.admin.req.sync.BasicExportStatusRequest; import com.glxp.sale.admin.req.sync.BasicExportStatusRequest;
import com.glxp.sale.admin.res.sync.*; import com.glxp.sale.admin.res.sync.*;
import com.glxp.sale.admin.service.sync.BasicExportService; import com.glxp.sale.admin.service.sync.BasicExportService;
import com.glxp.sale.admin.util.RedisUtil; import com.glxp.sale.admin.util.RedisUtil;
import com.glxp.sale.common.res.BaseResponse; import com.glxp.sale.common.res.BaseResponse;
import com.glxp.sale.common.util.ResultVOUtils; import com.glxp.sale.common.util.ResultVOUtils;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RestController; import org.springframework.web.bind.annotation.RestController;
import javax.annotation.Resource; import javax.annotation.Resource;
import java.util.List;
@RestController @RestController
public class BasicDownloadController { public class BasicDownloadController {
@ -25,6 +29,28 @@ public class BasicDownloadController {
@Resource @Resource
RedisUtil redisUtil; RedisUtil redisUtil;
@GetMapping("/spssync/basic/udiinfo/getStatus")
public BaseResponse getStatus(BasicExportStatusRequest basicExportStatusRequest) {
List<BasicExportStatusEntity> basicExportStatusEntities = basicExportService.filterExportStatus(basicExportStatusRequest);
if (CollUtil.isNotEmpty(basicExportStatusEntities)) {
for (BasicExportStatusEntity basicExportStatusEntity : basicExportStatusEntities) {
basicExportStatusEntity.setFromType(1);
}
}
return ResultVOUtils.success(basicExportStatusEntities);
}
@PostMapping("/spssync/basic/udiinfo/deleteByStatus")
public BaseResponse deleteByStatus(@RequestBody DeleteRequest deleteRequest) {
// boolean b = basicExportService.deleteById(deleteRequest.getId());
redisUtil.del(deleteRequest.getId());
return ResultVOUtils.success("删除成功!");
}
@PostMapping("/spssync/basic/udiinfo/downloadByStatus") @PostMapping("/spssync/basic/udiinfo/downloadByStatus")
public BaseResponse downloadByStatus(@RequestBody BasicExportStatusRequest basicExportStatusRequest) { public BaseResponse downloadByStatus(@RequestBody BasicExportStatusRequest basicExportStatusRequest) {
@ -59,9 +85,13 @@ public class BasicDownloadController {
basicExportService.finished(basicExportStatusRequest.getId()); basicExportService.finished(basicExportStatusRequest.getId());
return ResultVOUtils.success(spsSyncDataResponse); return ResultVOUtils.success(spsSyncDataResponse);
} else if (basicExportStatusRequest.getType() == BasicProcessStatus.NEW_ALL_UDIS) {//单据 } else if (basicExportStatusRequest.getType() == BasicProcessStatus.NEW_ALL_UDIS) {//单据
BasicExportStatusEntity basicExportStatusEntity = basicExportService.findById(basicExportStatusRequest.getId());
String data = (String) redisUtil.get(basicExportStatusRequest.getId() + ""); String data = (String) redisUtil.get(basicExportStatusRequest.getId() + "");
SpSyncUdiResponse spSyncUdiResponse = JSONObject.parseObject(data, new TypeReference<SpSyncUdiResponse>() { SpSyncUdiResponse spSyncUdiResponse = JSONObject.parseObject(data, new TypeReference<SpSyncUdiResponse>() {
}); });
spSyncUdiResponse.setTaskId(basicExportStatusEntity.getTaskId());
basicExportService.finished(basicExportStatusRequest.getId()); basicExportService.finished(basicExportStatusRequest.getId());
return ResultVOUtils.success(spSyncUdiResponse); return ResultVOUtils.success(spSyncUdiResponse);
} }

@ -17,7 +17,7 @@ public class BasicExportStatusEntity {
private Integer transportType; private Integer transportType;
private Date updateTime; private Date updateTime;
private Integer scheduleType; private Integer scheduleType;
private int fromType; private int fromType; //来源类型0默认自助平台1:中继服务
private String startTime; private String startTime;
private String endTime; private String endTime;
private String remark; private String remark;

@ -49,6 +49,6 @@ public class OrderEntity {
private boolean preCheck; private boolean preCheck;
//审核时间 //审核时间
private Date auditTime; private Date auditTime;
private boolean syncOutChange;
} }

@ -28,4 +28,10 @@ public class OrderFilterRequest extends ListPageRequest {
private String userId; private String userId;
private String wmsUserId; private String wmsUserId;
private String wmsUserName; private String wmsUserName;
private Integer checkStatus;
private String stockOrderId;
private Integer entrustId;
private boolean entrust;
} }

@ -27,7 +27,7 @@ public class SpsSyncOrderResponse {
remark.append("单据详情:").append(orderDetailEntityList.size()).append(" 条\n"); remark.append("单据详情:").append(orderDetailEntityList.size()).append(" 条\n");
} }
if (CollUtil.isNotEmpty(warehouseEntityList)) { if (CollUtil.isNotEmpty(warehouseEntityList)) {
remark.append("库存信息:").append(warehouseEntityList.size()).append(" 条\n"); remark.append("UDI码信息:").append(warehouseEntityList.size()).append(" 条\n");
} }
return remark.toString(); return remark.toString();
} }

@ -9,6 +9,8 @@ import java.util.List;
public interface BasicExportService { public interface BasicExportService {
BasicExportStatusEntity findById(String id);
List<BasicExportStatusEntity> filterExportStatus(BasicExportStatusRequest basicExportStatusRequest); List<BasicExportStatusEntity> filterExportStatus(BasicExportStatusRequest basicExportStatusRequest);
boolean insertExportStatus(BasicExportStatusEntity ioOrderStatusEntity); boolean insertExportStatus(BasicExportStatusEntity ioOrderStatusEntity);

@ -1,5 +1,6 @@
package com.glxp.sale.admin.service.sync.impl; package com.glxp.sale.admin.service.sync.impl;
import cn.hutool.core.collection.CollUtil;
import cn.hutool.core.util.StrUtil; import cn.hutool.core.util.StrUtil;
import com.github.pagehelper.PageHelper; import com.github.pagehelper.PageHelper;
import com.glxp.sale.admin.dao.sync.BasicExportDao; import com.glxp.sale.admin.dao.sync.BasicExportDao;
@ -20,6 +21,17 @@ public class BasicExportServiceImpl implements BasicExportService {
@Resource @Resource
BasicExportDao basicExportDao; BasicExportDao basicExportDao;
@Override
public BasicExportStatusEntity findById(String id) {
BasicExportStatusRequest basicExportStatusRequest = new BasicExportStatusRequest();
basicExportStatusRequest.setId(id);
List<BasicExportStatusEntity> basicExportStatusEntities = basicExportDao.filterExportStatus(basicExportStatusRequest);
if (CollUtil.isNotEmpty(basicExportStatusEntities)) {
basicExportStatusEntities.get(0);
}
return null;
}
@Override @Override
public List<BasicExportStatusEntity> filterExportStatus(BasicExportStatusRequest basicExportStatusRequest) { public List<BasicExportStatusEntity> filterExportStatus(BasicExportStatusRequest basicExportStatusRequest) {
if (basicExportStatusRequest == null) { if (basicExportStatusRequest == null) {

@ -164,6 +164,7 @@ public class DlAllDataService {
myEntity.setTaskId(syncOrderResponse.getTaskId()); myEntity.setTaskId(syncOrderResponse.getTaskId());
myEntity.setStatus(0); myEntity.setStatus(0);
myEntity.setUpdateTime(new Date()); myEntity.setUpdateTime(new Date());
basicExportStatusEntity.setTransportType(BasicProcessStatus.INTERFACE_TYPE);
myEntity.setStartTime(DateUtil.getDateTime()); myEntity.setStartTime(DateUtil.getDateTime());
myEntity.setIdDatas(ConstantStatus.SYNC_SCAN_ORDER); myEntity.setIdDatas(ConstantStatus.SYNC_SCAN_ORDER);
myEntity.setType(BasicProcessStatus.NEW_ALL_ORDER); myEntity.setType(BasicProcessStatus.NEW_ALL_ORDER);
@ -334,14 +335,14 @@ public class DlAllDataService {
//记录下载日志 //记录下载日志
BasicExportStatusEntity myEntity = new BasicExportStatusEntity(); BasicExportStatusEntity myEntity = new BasicExportStatusEntity();
myEntity.setId(key); myEntity.setId(key);
myEntity.setTaskId(spSyncUdiResponse.getTaskId()); myEntity.setTaskId(basicExportStatusEntity.getId());
myEntity.setStatus(0); myEntity.setStatus(0);
myEntity.setIdDatas(ConstantStatus.SYNC_DI_PRODUCTS); myEntity.setIdDatas(ConstantStatus.SYNC_DI_PRODUCTS);
myEntity.setUpdateTime(new Date()); myEntity.setUpdateTime(new Date());
myEntity.setType(BasicProcessStatus.NEW_ALL_UDIS); myEntity.setType(BasicProcessStatus.NEW_ALL_UDIS);
myEntity.setTransportType(BasicProcessStatus.INTERFACE_TYPE); myEntity.setTransportType(BasicProcessStatus.INTERFACE_TYPE);
myEntity.setStartTime(DateUtil.getDateTime()); myEntity.setStartTime(DateUtil.getDateTime());
myEntity.setRemark("国家库DI信息" + spSyncUdiResponse.getUdiCompanyEntities().size() + " 条"); myEntity.setRemark("国家库DI信息" + spSyncUdiResponse.getProductInfoEntityList().size() + " 条");
basicExportService.insertExportStatus(myEntity); basicExportService.insertExportStatus(myEntity);
} else { } else {
String path = getPath(); String path = getPath();
@ -377,7 +378,7 @@ public class DlAllDataService {
redisUtil.set(key, datas); redisUtil.set(key, datas);
BasicExportStatusEntity myEntity = new BasicExportStatusEntity(); BasicExportStatusEntity myEntity = new BasicExportStatusEntity();
myEntity.setId(key); myEntity.setId(key);
myEntity.setTaskId(spSyncUdiResponse.getTaskId()); myEntity.setTaskId(basicExportStatusEntity.getId());
myEntity.setStatus(0); myEntity.setStatus(0);
myEntity.setUpdateTime(new Date()); myEntity.setUpdateTime(new Date());
myEntity.setType(BasicProcessStatus.NEW_ALL_UDIS); myEntity.setType(BasicProcessStatus.NEW_ALL_UDIS);

@ -100,6 +100,7 @@ public class ScanDownloadService {
basicExportStatusEntity.setStatus(1); basicExportStatusEntity.setStatus(1);
basicExportStatusEntity.setIdDatas(file.getPath()); basicExportStatusEntity.setIdDatas(file.getPath());
basicExportStatusEntity.setType(BasicProcessStatus.NEW_ALL_BUS); basicExportStatusEntity.setType(BasicProcessStatus.NEW_ALL_BUS);
basicExportStatusEntity.setTransportType(BasicProcessStatus.FILE_TYPE);
basicExportStatusEntity.setScheduleType(BasicProcessStatus.SCHEDULE_NORMAL); basicExportStatusEntity.setScheduleType(BasicProcessStatus.SCHEDULE_NORMAL);
basicExportService.insertExportStatus(basicExportStatusEntity); basicExportService.insertExportStatus(basicExportStatusEntity);
SpsSyncBusResponse baseResponse = SpsSyncBusResponse baseResponse =
@ -130,6 +131,7 @@ public class ScanDownloadService {
basicExportStatusEntity.setUpdateTime(new Date()); basicExportStatusEntity.setUpdateTime(new Date());
basicExportStatusEntity.setStatus(1); basicExportStatusEntity.setStatus(1);
basicExportStatusEntity.setIdDatas(file.getPath()); basicExportStatusEntity.setIdDatas(file.getPath());
basicExportStatusEntity.setTransportType(BasicProcessStatus.FILE_TYPE);
basicExportStatusEntity.setType(BasicProcessStatus.NEW_ALL_ORDER); basicExportStatusEntity.setType(BasicProcessStatus.NEW_ALL_ORDER);
basicExportStatusEntity.setScheduleType(BasicProcessStatus.SCHEDULE_NORMAL); basicExportStatusEntity.setScheduleType(BasicProcessStatus.SCHEDULE_NORMAL);
basicExportService.insertExportStatus(basicExportStatusEntity); basicExportService.insertExportStatus(basicExportStatusEntity);

Loading…
Cancel
Save