|
|
|
@ -1,20 +1,24 @@
|
|
|
|
|
package com.glxp.sale.admin.controller.sync;
|
|
|
|
|
|
|
|
|
|
import cn.hutool.core.collection.CollUtil;
|
|
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
|
|
import com.alibaba.fastjson.TypeReference;
|
|
|
|
|
import com.glxp.sale.admin.constant.BasicProcessStatus;
|
|
|
|
|
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.res.sync.*;
|
|
|
|
|
import com.glxp.sale.admin.service.sync.BasicExportService;
|
|
|
|
|
import com.glxp.sale.admin.util.RedisUtil;
|
|
|
|
|
import com.glxp.sale.common.res.BaseResponse;
|
|
|
|
|
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.RequestBody;
|
|
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
@RestController
|
|
|
|
|
public class BasicDownloadController {
|
|
|
|
@ -25,6 +29,28 @@ public class BasicDownloadController {
|
|
|
|
|
@Resource
|
|
|
|
|
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")
|
|
|
|
|
public BaseResponse downloadByStatus(@RequestBody BasicExportStatusRequest basicExportStatusRequest) {
|
|
|
|
|
|
|
|
|
@ -59,9 +85,13 @@ public class BasicDownloadController {
|
|
|
|
|
basicExportService.finished(basicExportStatusRequest.getId());
|
|
|
|
|
return ResultVOUtils.success(spsSyncDataResponse);
|
|
|
|
|
} else if (basicExportStatusRequest.getType() == BasicProcessStatus.NEW_ALL_UDIS) {//单据
|
|
|
|
|
|
|
|
|
|
BasicExportStatusEntity basicExportStatusEntity = basicExportService.findById(basicExportStatusRequest.getId());
|
|
|
|
|
|
|
|
|
|
String data = (String) redisUtil.get(basicExportStatusRequest.getId() + "");
|
|
|
|
|
SpSyncUdiResponse spSyncUdiResponse = JSONObject.parseObject(data, new TypeReference<SpSyncUdiResponse>() {
|
|
|
|
|
});
|
|
|
|
|
spSyncUdiResponse.setTaskId(basicExportStatusEntity.getTaskId());
|
|
|
|
|
basicExportService.finished(basicExportStatusRequest.getId());
|
|
|
|
|
return ResultVOUtils.success(spSyncUdiResponse);
|
|
|
|
|
}
|
|
|
|
|