同步服务完结,代码备份2

version1
anthonyywj2 3 years ago
parent fe39577398
commit 160ed1f1b8

@ -0,0 +1,41 @@
package com.glxp.sale.admin.constant;
public class FileConstant {
//上游通,等待拷贝
public static String upWaitCopy_order = "/UpperOut/Order/";
public static String upWaitCopy_order_back = "/UpperOut/Order/Completed/";
public static String upWaitCopy_order_error = "/UpperOut/Order/Error/";
public static String upWaitCopy_products = "/UpperOut/Dictionaries/";
public static String upWaitCopy_products_back = "/UpperOut/Dictionaries/Completed/";
public static String upWaitCopy_products_error = "/UpperOut/Dictionaries/Error/";
//上游通,等待上传
public static String waitUpload_order = "/UpperIn/Order/";
public static String waitUpload_order_back = "/UpperIn/Order/Completed";
public static String waitUpload_order_error = "/UpperIn/Order/Error/";
public static String waitUpload_products = "/UpperIn/Dictionaries/";
public static String waitUpload_products_back = "/UpperIn/Dictionaries/Completed/";
public static String waitUpload_products_error = "/UpperIn/Dictionaries/Error/";
//下游通,下游上传后,等待拷贝
public static String lowerWaitCopy_order = "/LowerOut/Order/";
public static String lowerWaitCopy_order_back = "/LowerOut/Order/Completed/";
public static String lowerWaitCopy_order_error = "/LowerOut/Order/Error/";
public static String lowerWaitCopy_products = "/LowerOut/Dictionaries/";
public static String lowerWaitCopy_products_back = "/LowerOut/Dictionaries/Completed/";
public static String lowerWaitCopy_products_error = "/LowerOut/Dictionaries/Error/";
//下游通,等待下载
public static String waitDownload_order = "/LowerIn/Order/";
public static String waitDownload_order_back = "/LowerIn/Order/Completed/";
public static String waitDownload_order_error = "/LowerIn/Order/Error/";
public static String waitDownload_products = "/LowerIn/Dictionaries/";
public static String waitDownload_products_back = "/LowerIn/Dictionaries/Completed/";
public static String waitDownload_products_error = "/LowerIn/Dictionaries/Error/";
}

@ -2,12 +2,14 @@ package com.glxp.sale.admin.controller.param;
import com.github.pagehelper.PageInfo; import com.github.pagehelper.PageInfo;
import com.glxp.sale.admin.annotation.AuthRuleAnnotation; import com.glxp.sale.admin.annotation.AuthRuleAnnotation;
import com.glxp.sale.admin.constant.FileConstant;
import com.glxp.sale.admin.entity.param.SystemParamConfigEntity; import com.glxp.sale.admin.entity.param.SystemParamConfigEntity;
import com.glxp.sale.admin.req.param.SystemParamConfigRequest; import com.glxp.sale.admin.req.param.SystemParamConfigRequest;
import com.glxp.sale.admin.req.param.SystemParamConfigSaveRequest; import com.glxp.sale.admin.req.param.SystemParamConfigSaveRequest;
import com.glxp.sale.admin.res.PageSimpleResponse; import com.glxp.sale.admin.res.PageSimpleResponse;
import com.glxp.sale.admin.res.param.SystemParamConfigResponse; import com.glxp.sale.admin.res.param.SystemParamConfigResponse;
import com.glxp.sale.admin.service.param.SystemParamConfigService; import com.glxp.sale.admin.service.param.SystemParamConfigService;
import com.glxp.sale.admin.util.FileUtils;
import com.glxp.sale.common.enums.ResultEnum; import com.glxp.sale.common.enums.ResultEnum;
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;
@ -20,6 +22,7 @@ import org.springframework.web.bind.annotation.RestController;
import javax.annotation.Resource; import javax.annotation.Resource;
import javax.validation.Valid; import javax.validation.Valid;
import java.io.File;
import java.util.HashMap; import java.util.HashMap;
import java.util.List; import java.util.List;
import java.util.Map; import java.util.Map;
@ -34,7 +37,7 @@ public class SystemParamConfigController {
@AuthRuleAnnotation("system/param/config/list") @AuthRuleAnnotation("system/param/config/list")
@GetMapping("/system/param/config/list") @GetMapping("/system/param/config/list")
public BaseResponse list(@Valid SystemParamConfigRequest systemParamConfigRequest, public BaseResponse list(@Valid SystemParamConfigRequest systemParamConfigRequest,
BindingResult bindingResult) { BindingResult bindingResult) {
if (bindingResult.hasErrors()) { if (bindingResult.hasErrors()) {
return ResultVOUtils.error(ResultEnum.PARAM_VERIFY_FALL, bindingResult.getFieldError().getDefaultMessage()); return ResultVOUtils.error(ResultEnum.PARAM_VERIFY_FALL, bindingResult.getFieldError().getDefaultMessage());
@ -79,6 +82,71 @@ public class SystemParamConfigController {
@PostMapping("/system/param/config/update") @PostMapping("/system/param/config/update")
public BaseResponse update(@RequestBody SystemParamConfigSaveRequest systemParamConfigSaveRequest) { public BaseResponse update(@RequestBody SystemParamConfigSaveRequest systemParamConfigSaveRequest) {
// systemParamConfigSaveRequest.setId(1); // systemParamConfigSaveRequest.setId(1);
if (systemParamConfigSaveRequest.getParamKey().equals("share_folder")) {
try {
if (new File(systemParamConfigSaveRequest.getParamValue()).exists()) {
return ResultVOUtils.error(500, "文件目录已存在");
}
if (!FileUtils.makeDirectory(new File(systemParamConfigSaveRequest.getParamValue()))) {
return ResultVOUtils.error(500, "文件目录创建失败");
}
} catch (Exception e) {
e.printStackTrace();
return ResultVOUtils.error(500, e.getMessage());
}
} else if (systemParamConfigSaveRequest.getParamKey().equals("sync_upstream_enable")) {
//下游如果联通
if (systemParamConfigSaveRequest.getParamValue().equals("0")) {
SystemParamConfigEntity systemParamConfigEntity = systemParamConfigService.selectByParamKey("share_folder");
String filePath = systemParamConfigEntity.getParamValue();
if (!new File(filePath).exists()) {
return ResultVOUtils.error(500, "文件根目录不存在!");
}
boolean b1 = FileUtils.makeDirectory(new File(filePath + FileConstant.lowerWaitCopy_order));
boolean b2 = FileUtils.makeDirectory(new File(filePath + FileConstant.lowerWaitCopy_order_back));
boolean b3 = FileUtils.makeDirectory(new File(filePath + FileConstant.lowerWaitCopy_order_error));
boolean b4 = FileUtils.makeDirectory(new File(filePath + FileConstant.lowerWaitCopy_products));
boolean b5 = FileUtils.makeDirectory(new File(filePath + FileConstant.lowerWaitCopy_products_back));
boolean b6 = FileUtils.makeDirectory(new File(filePath + FileConstant.lowerWaitCopy_products_error));
boolean b7 = FileUtils.makeDirectory(new File(filePath + FileConstant.waitDownload_order));
boolean b8 = FileUtils.makeDirectory(new File(filePath + FileConstant.waitDownload_order_back));
boolean b9 = FileUtils.makeDirectory(new File(filePath + FileConstant.waitDownload_order_error));
boolean b10 = FileUtils.makeDirectory(new File(filePath + FileConstant.waitDownload_products));
boolean b11 = FileUtils.makeDirectory(new File(filePath + FileConstant.waitDownload_products_back));
boolean b12 = FileUtils.makeDirectory(new File(filePath + FileConstant.waitDownload_products_error));
}
} else if (systemParamConfigSaveRequest.getParamKey().equals("sync_downstream_enable")) {
//上游如果联通
if (systemParamConfigSaveRequest.getParamValue().equals("0")) {
SystemParamConfigEntity systemParamConfigEntity = systemParamConfigService.selectByParamKey("share_folder");
String filePath = systemParamConfigEntity.getParamValue();
if (!new File(filePath).exists()) {
return ResultVOUtils.error(500, "文件根目录不存在!");
}
boolean b1 = FileUtils.makeDirectory(new File(filePath + FileConstant.upWaitCopy_order));
boolean b2 = FileUtils.makeDirectory(new File(filePath + FileConstant.upWaitCopy_order_back));
boolean b3 = FileUtils.makeDirectory(new File(filePath + FileConstant.upWaitCopy_order_error));
boolean b4 = FileUtils.makeDirectory(new File(filePath + FileConstant.upWaitCopy_products));
boolean b5 = FileUtils.makeDirectory(new File(filePath + FileConstant.upWaitCopy_products_back));
boolean b6 = FileUtils.makeDirectory(new File(filePath + FileConstant.upWaitCopy_products_error));
boolean b7 = FileUtils.makeDirectory(new File(filePath + FileConstant.waitUpload_order));
boolean b8 = FileUtils.makeDirectory(new File(filePath + FileConstant.waitUpload_order_back));
boolean b9 = FileUtils.makeDirectory(new File(filePath + FileConstant.waitUpload_order_error));
boolean b10 = FileUtils.makeDirectory(new File(filePath + FileConstant.waitUpload_products));
boolean b11 = FileUtils.makeDirectory(new File(filePath + FileConstant.waitUpload_products_back));
boolean b12 = FileUtils.makeDirectory(new File(filePath + FileConstant.waitUpload_products_error));
}
}
systemParamConfigService.updateById(systemParamConfigSaveRequest); systemParamConfigService.updateById(systemParamConfigSaveRequest);
if (systemParamConfigSaveRequest.getParentId() == 0) { if (systemParamConfigSaveRequest.getParentId() == 0) {
SystemParamConfigSaveRequest systemParamConfigSaveRequest1 = new SystemParamConfigSaveRequest(); SystemParamConfigSaveRequest systemParamConfigSaveRequest1 = new SystemParamConfigSaveRequest();

@ -68,7 +68,7 @@ public class BasicDowmloadController {
@PostMapping("/spssync/basic/udiinfo/deleteByStatus") @PostMapping("/spssync/basic/udiinfo/deleteByStatus")
public BaseResponse deleteByStatus(@RequestBody DeleteRequest deleteRequest) { public BaseResponse deleteByStatus(@RequestBody DeleteRequest deleteRequest) {
boolean b = basicExportService.deleteById(Integer.parseInt(deleteRequest.getId())); boolean b = basicExportService.deleteById(deleteRequest.getId());
redisUtil.del(deleteRequest.getId()); redisUtil.del(deleteRequest.getId());
if (b) if (b)
return ResultVOUtils.success("删除成功!"); return ResultVOUtils.success("删除成功!");

@ -2,6 +2,7 @@ package com.glxp.sale.admin.controller.sync;
import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSON;
import com.glxp.sale.admin.constant.FileConstant;
import com.glxp.sale.admin.entity.param.SystemParamConfigEntity; import com.glxp.sale.admin.entity.param.SystemParamConfigEntity;
import com.glxp.sale.admin.entity.sync.IOOrderStatusEntity; import com.glxp.sale.admin.entity.sync.IOOrderStatusEntity;
import com.glxp.sale.admin.http.SpPostHttp; import com.glxp.sale.admin.http.SpPostHttp;
@ -30,15 +31,19 @@ import javax.annotation.Resource;
@RestController @RestController
public class BasicExportUploadController { public class BasicExportUploadController {
@Value("${file_path_dupp_udiinfo}")
private String udiFilePath;
@Value("${back_file_path}")
private String backFilePath;
@Resource @Resource
SystemParamConfigService systemParamConfigService; SystemParamConfigService systemParamConfigService;
@Resource @Resource
SpPostHttp spPostHttp; SpPostHttp spPostHttp;
public String getPath() {
SystemParamConfigEntity systemParamConfigEntity = systemParamConfigService.selectByParamKey("share_folder");
String filePath = systemParamConfigEntity.getParamValue();
return filePath;
}
@PostMapping("/spssync/basic/udiinfo/upload") @PostMapping("/spssync/basic/udiinfo/upload")
public BaseResponse postUdiInfo(@RequestBody UdiRelevanceExportJsonResponse udiRelevanceExportJsonResponse, public BaseResponse postUdiInfo(@RequestBody UdiRelevanceExportJsonResponse udiRelevanceExportJsonResponse,
BindingResult bindingResult) { BindingResult bindingResult) {
@ -49,10 +54,11 @@ public class BasicExportUploadController {
SystemParamConfigEntity systemParamConfigEntity = systemParamConfigService.selectByParamKey("sync_upstream_enable"); SystemParamConfigEntity systemParamConfigEntity = systemParamConfigService.selectByParamKey("sync_upstream_enable");
if (systemParamConfigEntity.getParamValue().equals("0")) {//上游不通 if (systemParamConfigEntity.getParamValue().equals("0")) {//上游不通
String key = CustomUtil.getId(); String key = CustomUtil.getId();
String fileName = udiFilePath + "耗材字典" + key + ".udi"; String path = getPath();
String backFileName = backFilePath + "耗材字典" + key + ".udi"; String fileName = path + FileConstant.lowerWaitCopy_products + "耗材字典" + key + ".udi";
FileUtils.makeDirectory(udiFilePath); String backFileName = path + FileConstant.lowerWaitCopy_products_back + "耗材字典" + key + ".udi";
FileUtils.makeDirectory(backFilePath); // FileUtils.makeDirectory(path);
// FileUtils.makeDirectory(path + "/备份/");
String datas = JSON.toJSONString(udiRelevanceExportJsonResponse); String datas = JSON.toJSONString(udiRelevanceExportJsonResponse);
FileUtils.SaveFileAs(datas, fileName); FileUtils.SaveFileAs(datas, fileName);
FileUtils.SaveFileAs(datas, backFileName); FileUtils.SaveFileAs(datas, backFileName);
@ -74,10 +80,11 @@ public class BasicExportUploadController {
SystemParamConfigEntity systemParamConfigEntity = systemParamConfigService.selectByParamKey("sync_upstream_enable"); SystemParamConfigEntity systemParamConfigEntity = systemParamConfigService.selectByParamKey("sync_upstream_enable");
if (systemParamConfigEntity.getParamValue().equals("0")) {//上游不通 if (systemParamConfigEntity.getParamValue().equals("0")) {//上游不通
String key = CustomUtil.getId(); String key = CustomUtil.getId();
String fileName = udiFilePath + "往来单位" + key + ".udi"; String path = getPath();
String backFileName = backFilePath + "往来单位" + key + ".udi"; String fileName = path + FileConstant.lowerWaitCopy_products + "往来单位" + key + ".udi";
FileUtils.makeDirectory(udiFilePath); String backFileName = path + FileConstant.lowerWaitCopy_products_back + "往来单位" + key + ".udi";
FileUtils.makeDirectory(backFilePath); // FileUtils.makeDirectory(path);
// FileUtils.makeDirectory(path + "/备份/");
String datas = JSON.toJSONString(basicUnitMaintainExportResponse); String datas = JSON.toJSONString(basicUnitMaintainExportResponse);
FileUtils.SaveFileAs(datas, fileName); FileUtils.SaveFileAs(datas, fileName);
FileUtils.SaveFileAs(datas, backFileName); FileUtils.SaveFileAs(datas, backFileName);
@ -99,10 +106,11 @@ public class BasicExportUploadController {
SystemParamConfigEntity systemParamConfigEntity = systemParamConfigService.selectByParamKey("sync_upstream_enable"); SystemParamConfigEntity systemParamConfigEntity = systemParamConfigService.selectByParamKey("sync_upstream_enable");
if (systemParamConfigEntity.getParamValue().equals("0")) {//上游不通 if (systemParamConfigEntity.getParamValue().equals("0")) {//上游不通
String key = CustomUtil.getId(); String key = CustomUtil.getId();
String fileName = udiFilePath + "仓库字典" + key + ".udi"; String path = getPath();
String backFileName = backFilePath + "仓库字典" + key + ".udi"; String fileName = path + FileConstant.lowerWaitCopy_products + "仓库字典" + key + ".udi";
FileUtils.makeDirectory(udiFilePath); String backFileName = path + FileConstant.lowerWaitCopy_products_back + "/备份/" + "仓库字典" + key + ".udi";
FileUtils.makeDirectory(backFilePath); // FileUtils.makeDirectory(path);
// FileUtils.makeDirectory(path + "/备份/");
String datas = JSON.toJSONString(invWarehouseExportResponse); String datas = JSON.toJSONString(invWarehouseExportResponse);
FileUtils.SaveFileAs(datas, fileName); FileUtils.SaveFileAs(datas, fileName);
FileUtils.SaveFileAs(datas, backFileName); FileUtils.SaveFileAs(datas, backFileName);
@ -124,10 +132,11 @@ public class BasicExportUploadController {
SystemParamConfigEntity systemParamConfigEntity = systemParamConfigService.selectByParamKey("sync_upstream_enable"); SystemParamConfigEntity systemParamConfigEntity = systemParamConfigService.selectByParamKey("sync_upstream_enable");
if (systemParamConfigEntity.getParamValue().equals("0")) {//上游不通 if (systemParamConfigEntity.getParamValue().equals("0")) {//上游不通
String key = CustomUtil.getId(); String key = CustomUtil.getId();
String fileName = udiFilePath + "第三方产品信息" + key + ".udi"; String path = getPath();
String backFileName = backFilePath + "第三方产品信息" + key + ".udi"; String fileName = path + FileConstant.lowerWaitCopy_products + "第三方产品信息" + key + ".udi";
FileUtils.makeDirectory(udiFilePath); String backFileName = path + FileConstant.lowerWaitCopy_products_back + "第三方产品信息" + key + ".udi";
FileUtils.makeDirectory(backFilePath); // FileUtils.makeDirectory(path);
// FileUtils.makeDirectory(path + "/备份/");
String datas = JSON.toJSONString(postThrProductsRequest); String datas = JSON.toJSONString(postThrProductsRequest);
FileUtils.SaveFileAs(datas, fileName); FileUtils.SaveFileAs(datas, fileName);
FileUtils.SaveFileAs(datas, backFileName); FileUtils.SaveFileAs(datas, backFileName);
@ -149,10 +158,11 @@ public class BasicExportUploadController {
SystemParamConfigEntity systemParamConfigEntity = systemParamConfigService.selectByParamKey("sync_upstream_enable"); SystemParamConfigEntity systemParamConfigEntity = systemParamConfigService.selectByParamKey("sync_upstream_enable");
if (systemParamConfigEntity.getParamValue().equals("0")) {//上游不通 if (systemParamConfigEntity.getParamValue().equals("0")) {//上游不通
String key = CustomUtil.getId(); String key = CustomUtil.getId();
String fileName = udiFilePath + "第三方往来单位" + key + ".udi"; String path = getPath();
String backFileName = backFilePath + "第三方往来单位" + key + ".udi"; String fileName = path + FileConstant.lowerWaitCopy_products + "第三方往来单位" + key + ".udi";
FileUtils.makeDirectory(udiFilePath); String backFileName = path + FileConstant.lowerWaitCopy_products_back + "第三方往来单位" + key + ".udi";
FileUtils.makeDirectory(backFilePath); FileUtils.makeDirectory(path);
FileUtils.makeDirectory(path + "/备份/");
String datas = JSON.toJSONString(postThrCorpRequest); String datas = JSON.toJSONString(postThrCorpRequest);
FileUtils.SaveFileAs(datas, fileName); FileUtils.SaveFileAs(datas, fileName);
FileUtils.SaveFileAs(datas, backFileName); FileUtils.SaveFileAs(datas, backFileName);
@ -174,10 +184,11 @@ public class BasicExportUploadController {
SystemParamConfigEntity systemParamConfigEntity = systemParamConfigService.selectByParamKey("sync_upstream_enable"); SystemParamConfigEntity systemParamConfigEntity = systemParamConfigService.selectByParamKey("sync_upstream_enable");
if (systemParamConfigEntity.getParamValue().equals("0")) {//上游不通 if (systemParamConfigEntity.getParamValue().equals("0")) {//上游不通
String key = CustomUtil.getId(); String key = CustomUtil.getId();
String fileName = udiFilePath + "第三方业务单据" + key + ".udi"; String path = getPath();
String backFileName = backFilePath + "第三方业务单据" + key + ".udi"; String fileName = path + FileConstant.lowerWaitCopy_products + "第三方业务单据" + key + ".udi";
FileUtils.makeDirectory(udiFilePath); String backFileName = path + FileConstant.lowerWaitCopy_products_back + "第三方业务单据" + key + ".udi";
FileUtils.makeDirectory(backFilePath); // FileUtils.makeDirectory(path);
// FileUtils.makeDirectory(path + "/备份/");
String datas = JSON.toJSONString(thrOrderExportJsonResponse); String datas = JSON.toJSONString(thrOrderExportJsonResponse);
FileUtils.SaveFileAs(datas, fileName); FileUtils.SaveFileAs(datas, fileName);
FileUtils.SaveFileAs(datas, backFileName); FileUtils.SaveFileAs(datas, backFileName);

@ -15,7 +15,7 @@ public interface BasicExportDao {
boolean insertExportStatus(BasicExportStatusEntity ioOrderStatusEntity); boolean insertExportStatus(BasicExportStatusEntity ioOrderStatusEntity);
boolean deleteById(@Param("id") Integer id); boolean deleteById(@Param("id") String id);
boolean updateExportStatus(BasicExportStatusEntity warehouseEntity); boolean updateExportStatus(BasicExportStatusEntity warehouseEntity);

@ -5,7 +5,7 @@ import lombok.Data;
@Data @Data
public class BasicExportStatusRequest extends ListPageRequest { public class BasicExportStatusRequest extends ListPageRequest {
private Integer id; private String id;
private Integer status; private Integer status;
private Integer type; private Integer type;
} }

@ -14,7 +14,7 @@ public interface BasicExportService {
boolean insertExportStatus(BasicExportStatusEntity ioOrderStatusEntity); boolean insertExportStatus(BasicExportStatusEntity ioOrderStatusEntity);
boolean deleteById(Integer id); boolean deleteById(String id);
boolean updateExportStatus(BasicExportStatusEntity warehouseEntity); boolean updateExportStatus(BasicExportStatusEntity warehouseEntity);
} }

@ -35,7 +35,7 @@ public class BasicExportServiceImpl implements BasicExportService {
} }
@Override @Override
public boolean deleteById(Integer id) { public boolean deleteById(String id) {
return basicExportDao.deleteById(id); return basicExportDao.deleteById(id);
} }

@ -4,6 +4,7 @@ import cn.hutool.core.util.StrUtil;
import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject; import com.alibaba.fastjson.JSONObject;
import com.glxp.sale.admin.constant.BasicProcessStatus; import com.glxp.sale.admin.constant.BasicProcessStatus;
import com.glxp.sale.admin.constant.FileConstant;
import com.glxp.sale.admin.entity.param.SystemParamConfigEntity; import com.glxp.sale.admin.entity.param.SystemParamConfigEntity;
import com.glxp.sale.admin.entity.sync.*; import com.glxp.sale.admin.entity.sync.*;
import com.glxp.sale.admin.http.SpGetHttp; import com.glxp.sale.admin.http.SpGetHttp;
@ -35,12 +36,6 @@ public class DlBasicService {
SpGetHttp spGetHttp; SpGetHttp spGetHttp;
@Resource @Resource
SystemParamConfigService systemParamConfigService; SystemParamConfigService systemParamConfigService;
@Value("${file_path_updl_order}")
private String orderFilePath;
@Value("${file_path_updl_udiinfo}")
private String udiFilePath;
@Value("${back_file_path}")
private String backFilePath;
@Resource @Resource
private ThrImportLogService thrImportLogService; private ThrImportLogService thrImportLogService;
@Resource @Resource
@ -48,22 +43,80 @@ public class DlBasicService {
@Resource @Resource
BasicExportService basicExportService; BasicExportService basicExportService;
public String getPath() {
SystemParamConfigEntity systemParamConfigEntity = systemParamConfigService.selectByParamKey("share_folder");
String filePath = systemParamConfigEntity.getParamValue();
return filePath;
}
@Async @Async
public void dlBasicUdiInfo() { public void dlBasicUdiInfo() {
SystemParamConfigEntity systemParamConfigEntity = systemParamConfigService.selectByParamKey("sync_upstream_enable"); SystemParamConfigEntity systemParamConfigEntity = systemParamConfigService.selectByParamKey("sync_upstream_enable");
BaseResponse<List<BasicExportStatusEntity>> baseResponse = spGetHttp.getBasicStatus(BasicProcessStatus.BASIC_UDI + ""); if (systemParamConfigEntity.getParamValue().equals("1")) {
List<BasicExportStatusEntity> pageSimpleResponse = baseResponse.getData(); BaseResponse<List<BasicExportStatusEntity>> baseResponse = spGetHttp.getBasicStatus(BasicProcessStatus.BASIC_UDI + "");
if (pageSimpleResponse != null) { SystemParamConfigEntity downstream = systemParamConfigService.selectByParamKey("sync_downstream_enable");
List<BasicExportStatusEntity> basicExportStatusEntities = pageSimpleResponse; List<BasicExportStatusEntity> pageSimpleResponse = baseResponse.getData();
if (basicExportStatusEntities != null && basicExportStatusEntities.size() > 0) { if (pageSimpleResponse != null) {
for (BasicExportStatusEntity basicExportStatusEntity : basicExportStatusEntities) { List<BasicExportStatusEntity> basicExportStatusEntities = pageSimpleResponse;
if (!StrUtil.isEmpty(basicExportStatusEntity.getIdDatas())) { if (basicExportStatusEntities != null && basicExportStatusEntities.size() > 0) {
if (basicExportStatusEntity.getType() == BasicProcessStatus.BASIC_UDI) { for (BasicExportStatusEntity basicExportStatusEntity : basicExportStatusEntities) {
if (!StrUtil.isEmpty(basicExportStatusEntity.getIdDatas())) {
if (basicExportStatusEntity.getType() == BasicProcessStatus.BASIC_UDI) {
List<String> ids = JSON.parseArray(basicExportStatusEntity.getIdDatas(), String.class);
String datas = spGetHttp.getBasicUdiInfo(ids);
String key = basicExportStatusEntity.getId() + "";
if (downstream.getParamValue().equals("1")) {
redisUtil.set(key, datas);
BasicExportStatusEntity myEntity = new BasicExportStatusEntity();
BeanUtils.copyProperties(basicExportStatusEntity, myEntity);
myEntity.setId(key);
basicExportService.insertExportStatus(myEntity);
spGetHttp.postBasicStatus(basicExportStatusEntity.getId());
} else {
String path = getPath();
String fileName = path + FileConstant.upWaitCopy_products + "耗材字典" + key + ".udi";
String backFileName = path + FileConstant.upWaitCopy_products_back + "耗材字典" + key + ".udi";
// FileUtils.makeDirectory(path);
// FileUtils.makeDirectory(path + "/备份/");
FileUtils.SaveFileAs(datas, fileName);
FileUtils.SaveFileAs(datas, backFileName);
ThrImportLogEntity thrImportLogEntity = new ThrImportLogEntity();
thrImportLogEntity.setGenKey(CustomUtil.getUUId());
thrImportLogEntity.setImportType(BasicProcessStatus.IMPORT_LOG_TYPE_UDIINFO);
thrImportLogEntity.setUpdateTime(new Date());
thrImportLogEntity.setFilePath(fileName);
thrImportLogEntity.setBackFilePath(backFileName);
thrImportLogService.insertImportLog(thrImportLogEntity);
spGetHttp.postBasicStatus(basicExportStatusEntity.getId());
}
}
}
}
}
}
}
}
@Async
public void dlBasicCorp() {
SystemParamConfigEntity systemParamConfigEntity = systemParamConfigService.selectByParamKey("sync_upstream_enable");
if (systemParamConfigEntity.getParamValue().equals("1")) {
SystemParamConfigEntity downstream = systemParamConfigService.selectByParamKey("sync_downstream_enable");
BaseResponse<List<BasicExportStatusEntity>> baseResponse = spGetHttp.getBasicStatus(BasicProcessStatus.BASIC_CORP + "");
List<BasicExportStatusEntity> pageSimpleResponse = baseResponse.getData();
if (pageSimpleResponse != null) {
List<BasicExportStatusEntity> basicExportStatusEntities = pageSimpleResponse;
if (basicExportStatusEntities != null && basicExportStatusEntities.size() > 0) {
for (BasicExportStatusEntity basicExportStatusEntity : basicExportStatusEntities) {
if (!StrUtil.isEmpty(basicExportStatusEntity.getIdDatas())) {
List<String> ids = JSON.parseArray(basicExportStatusEntity.getIdDatas(), String.class); List<String> ids = JSON.parseArray(basicExportStatusEntity.getIdDatas(), String.class);
String datas = spGetHttp.getBasicUdiInfo(ids); String datas = spGetHttp.getBasicCorps(ids);
String key = basicExportStatusEntity.getId() + ""; String key = basicExportStatusEntity.getId() + "";
if (systemParamConfigEntity.getParamValue().equals("1")) { if (downstream.getParamValue().equals("1")) {
redisUtil.set(key, datas); redisUtil.set(key, datas);
BasicExportStatusEntity myEntity = new BasicExportStatusEntity(); BasicExportStatusEntity myEntity = new BasicExportStatusEntity();
BeanUtils.copyProperties(basicExportStatusEntity, myEntity); BeanUtils.copyProperties(basicExportStatusEntity, myEntity);
@ -71,15 +124,16 @@ public class DlBasicService {
basicExportService.insertExportStatus(myEntity); basicExportService.insertExportStatus(myEntity);
spGetHttp.postBasicStatus(basicExportStatusEntity.getId()); spGetHttp.postBasicStatus(basicExportStatusEntity.getId());
} else { } else {
String fileName = udiFilePath + "耗材字典" + key + ".udi"; String path = getPath();
String backFileName = backFilePath + "耗材字典" + key + ".udi"; String fileName = path + FileConstant.upWaitCopy_products + "往来单位" + key + ".udi";
FileUtils.makeDirectory(udiFilePath); String backFileName = path + FileConstant.upWaitCopy_products_back + "往来单位" + key + ".udi";
FileUtils.makeDirectory(backFilePath); // FileUtils.makeDirectory(path);
// FileUtils.makeDirectory(path + "备份");
FileUtils.SaveFileAs(datas, fileName); FileUtils.SaveFileAs(datas, fileName);
FileUtils.SaveFileAs(datas, backFileName); FileUtils.SaveFileAs(datas, backFileName);
ThrImportLogEntity thrImportLogEntity = new ThrImportLogEntity(); ThrImportLogEntity thrImportLogEntity = new ThrImportLogEntity();
thrImportLogEntity.setGenKey(CustomUtil.getUUId()); thrImportLogEntity.setGenKey(CustomUtil.getUUId());
thrImportLogEntity.setImportType(BasicProcessStatus.IMPORT_LOG_TYPE_UDIINFO); thrImportLogEntity.setImportType(BasicProcessStatus.IMPORT_LOG_TYPE_CORP);
thrImportLogEntity.setUpdateTime(new Date()); thrImportLogEntity.setUpdateTime(new Date());
thrImportLogEntity.setFilePath(fileName); thrImportLogEntity.setFilePath(fileName);
thrImportLogEntity.setBackFilePath(backFileName); thrImportLogEntity.setBackFilePath(backFileName);
@ -92,93 +146,55 @@ public class DlBasicService {
} }
} }
} }
}
@Async
public void dlBasicCorp() {
SystemParamConfigEntity systemParamConfigEntity = systemParamConfigService.selectByParamKey("sync_upstream_enable");
BaseResponse<List<BasicExportStatusEntity>> baseResponse = spGetHttp.getBasicStatus(BasicProcessStatus.BASIC_CORP + "");
List<BasicExportStatusEntity> pageSimpleResponse = baseResponse.getData();
if (pageSimpleResponse != null) {
List<BasicExportStatusEntity> basicExportStatusEntities = pageSimpleResponse;
if (basicExportStatusEntities != null && basicExportStatusEntities.size() > 0) {
for (BasicExportStatusEntity basicExportStatusEntity : basicExportStatusEntities) {
if (!StrUtil.isEmpty(basicExportStatusEntity.getIdDatas())) {
List<String> ids = JSON.parseArray(basicExportStatusEntity.getIdDatas(), String.class);
String datas = spGetHttp.getBasicCorps(ids);
String key = basicExportStatusEntity.getId() + "";
if (systemParamConfigEntity.getParamValue().equals("1")) {
redisUtil.set(key, datas);
BasicExportStatusEntity myEntity = new BasicExportStatusEntity();
BeanUtils.copyProperties(basicExportStatusEntity, myEntity);
myEntity.setId(key);
basicExportService.insertExportStatus(myEntity);
spGetHttp.postBasicStatus(basicExportStatusEntity.getId());
} else {
String fileName = udiFilePath + "往来单位" + key + ".udi";
String backFileName = backFilePath + "往来单位" + key + ".udi";
FileUtils.makeDirectory(udiFilePath);
FileUtils.makeDirectory(backFilePath);
FileUtils.SaveFileAs(datas, fileName);
FileUtils.SaveFileAs(datas, backFileName);
ThrImportLogEntity thrImportLogEntity = new ThrImportLogEntity();
thrImportLogEntity.setGenKey(CustomUtil.getUUId());
thrImportLogEntity.setImportType(BasicProcessStatus.IMPORT_LOG_TYPE_CORP);
thrImportLogEntity.setUpdateTime(new Date());
thrImportLogEntity.setFilePath(fileName);
thrImportLogEntity.setBackFilePath(backFileName);
thrImportLogService.insertImportLog(thrImportLogEntity);
spGetHttp.postBasicStatus(basicExportStatusEntity.getId());
}
}
}
}
}
} }
@Async @Async
public void dlBasicInv() { public void dlBasicInv() {
SystemParamConfigEntity systemParamConfigEntity = systemParamConfigService.selectByParamKey("sync_upstream_enable"); SystemParamConfigEntity systemParamConfigEntity = systemParamConfigService.selectByParamKey("sync_upstream_enable");
BaseResponse<List<BasicExportStatusEntity>> baseResponse = spGetHttp.getBasicStatus(BasicProcessStatus.BASIC_INV + ""); if (systemParamConfigEntity.getParamValue().equals("1")) {
List<BasicExportStatusEntity> pageSimpleResponse = baseResponse.getData(); BaseResponse<List<BasicExportStatusEntity>> baseResponse = spGetHttp.getBasicStatus(BasicProcessStatus.BASIC_INV + "");
if (pageSimpleResponse != null) { SystemParamConfigEntity downstream = systemParamConfigService.selectByParamKey("sync_downstream_enable");
List<BasicExportStatusEntity> basicExportStatusEntities = pageSimpleResponse; List<BasicExportStatusEntity> pageSimpleResponse = baseResponse.getData();
if (basicExportStatusEntities != null && basicExportStatusEntities.size() > 0) { if (pageSimpleResponse != null) {
for (BasicExportStatusEntity basicExportStatusEntity : basicExportStatusEntities) { List<BasicExportStatusEntity> basicExportStatusEntities = pageSimpleResponse;
if (!StrUtil.isEmpty(basicExportStatusEntity.getIdDatas())) { if (basicExportStatusEntities != null && basicExportStatusEntities.size() > 0) {
List<String> ids = JSON.parseArray(basicExportStatusEntity.getIdDatas(), String.class); for (BasicExportStatusEntity basicExportStatusEntity : basicExportStatusEntities) {
String datas = spGetHttp.getBasicInv(ids); if (!StrUtil.isEmpty(basicExportStatusEntity.getIdDatas())) {
String key = basicExportStatusEntity.getId() + ""; List<String> ids = JSON.parseArray(basicExportStatusEntity.getIdDatas(), String.class);
if (systemParamConfigEntity.getParamValue().equals("1")) { String datas = spGetHttp.getBasicInv(ids);
redisUtil.set(key, datas); String key = basicExportStatusEntity.getId() + "";
BasicExportStatusEntity myEntity = new BasicExportStatusEntity(); if (downstream.getParamValue().equals("1")) {
BeanUtils.copyProperties(basicExportStatusEntity, myEntity); redisUtil.set(key, datas);
myEntity.setId(key); BasicExportStatusEntity myEntity = new BasicExportStatusEntity();
basicExportService.insertExportStatus(myEntity); BeanUtils.copyProperties(basicExportStatusEntity, myEntity);
spGetHttp.postBasicStatus(basicExportStatusEntity.getId()); myEntity.setId(key);
} else { basicExportService.insertExportStatus(myEntity);
String fileName = udiFilePath + "仓库字典" + key + ".udi"; spGetHttp.postBasicStatus(basicExportStatusEntity.getId());
String backFileName = backFilePath + "仓库字典" + key + ".udi"; } else {
FileUtils.makeDirectory(udiFilePath); String path = getPath();
FileUtils.makeDirectory(backFilePath); String fileName = path + FileConstant.upWaitCopy_products + "仓库字典" + key + ".udi";
FileUtils.SaveFileAs(datas, fileName); String backFileName = path + FileConstant.upWaitCopy_products_back + "仓库字典" + key + ".udi";
FileUtils.SaveFileAs(datas, backFileName); // FileUtils.makeDirectory(path);
ThrImportLogEntity thrImportLogEntity = new ThrImportLogEntity(); // FileUtils.makeDirectory(path + "/备份/");
thrImportLogEntity.setGenKey(CustomUtil.getUUId()); FileUtils.SaveFileAs(datas, fileName);
thrImportLogEntity.setImportType(BasicProcessStatus.IMPORT_LOG_TYPE_INV); FileUtils.SaveFileAs(datas, backFileName);
thrImportLogEntity.setUpdateTime(new Date()); ThrImportLogEntity thrImportLogEntity = new ThrImportLogEntity();
thrImportLogEntity.setFilePath(fileName); thrImportLogEntity.setGenKey(CustomUtil.getUUId());
thrImportLogEntity.setBackFilePath(backFileName); thrImportLogEntity.setImportType(BasicProcessStatus.IMPORT_LOG_TYPE_INV);
thrImportLogService.insertImportLog(thrImportLogEntity); thrImportLogEntity.setUpdateTime(new Date());
spGetHttp.postBasicStatus(basicExportStatusEntity.getId()); thrImportLogEntity.setFilePath(fileName);
} thrImportLogEntity.setBackFilePath(backFileName);
thrImportLogService.insertImportLog(thrImportLogEntity);
spGetHttp.postBasicStatus(basicExportStatusEntity.getId());
}
}
} }
} }
} }
} }
} }

@ -1,6 +1,7 @@
package com.glxp.sale.admin.thread; package com.glxp.sale.admin.thread;
import com.alibaba.fastjson.JSONObject; import com.alibaba.fastjson.JSONObject;
import com.glxp.sale.admin.constant.FileConstant;
import com.glxp.sale.admin.entity.param.SystemParamConfigEntity; import com.glxp.sale.admin.entity.param.SystemParamConfigEntity;
import com.glxp.sale.admin.entity.sync.*; import com.glxp.sale.admin.entity.sync.*;
import com.glxp.sale.admin.http.SpGetHttp; import com.glxp.sale.admin.http.SpGetHttp;
@ -38,82 +39,88 @@ public class DlSpOrderService {
SystemParamConfigService systemParamConfigService; SystemParamConfigService systemParamConfigService;
@Resource @Resource
IOOrderStatusService ioOrderStatusService; IOOrderStatusService ioOrderStatusService;
@Value("${file_path_updl_order}")
private String filePath;
@Value("${back_file_path}")
private String backFilePath;
@Resource @Resource
private ThrImportLogService thrImportLogService; private ThrImportLogService thrImportLogService;
public String getPath() {
SystemParamConfigEntity systemParamConfigEntity = systemParamConfigService.selectByParamKey("share_folder");
String filePath = systemParamConfigEntity.getParamValue();
return filePath;
}
@Async @Async
public void dlOrdedrs() { public void dlOrdedrs() {
BaseResponse<PageSimpleResponse<IOOrderStatusEntity>> baseResponse = spGetHttp.getOrderStatus();
PageSimpleResponse<IOOrderStatusEntity> pageSimpleResponse = baseResponse.getData();
SystemParamConfigEntity folderConfig = systemParamConfigService.selectByParamKey("gen_order_folder");
SystemParamConfigEntity stausConfig = systemParamConfigService.selectByParamKey("gen_order_status");
if (pageSimpleResponse != null) {
List<IOOrderStatusEntity> ioOrderStatusEntityList = pageSimpleResponse.getList();
if (ioOrderStatusEntityList != null && ioOrderStatusEntityList.size() > 0) {
for (IOOrderStatusEntity ioOrderStatusEntity : ioOrderStatusEntityList) {
BaseResponse<List<DlOrderResponse>> ordersRes = spGetHttp.getOrders(ioOrderStatusEntity.getOrderId());
List<DlOrderResponse> dlOrderResponses = ordersRes.getData();
if (dlOrderResponses != null && dlOrderResponses.size() > 0) {
for (DlOrderResponse dlOrderResponse : dlOrderResponses) {
OrderEntity orderEntity = dlOrderResponse.getOrderEntity();
if(orderEntity!=null){
IOOrderStatusEntity temp = ioOrderStatusService.findByOrderId(orderEntity.getId());
if (temp == null) {//避免重复操作插入
if (Integer.parseInt(stausConfig.getParamValue()) == 1) {
IOOrderStatusEntity orderStatusEntity = new IOOrderStatusEntity();
orderStatusEntity.setOrderId(orderEntity.getId());
orderStatusEntity.setUpdateTime(new Date());
orderStatusEntity.setStatus(1);
ioOrderStatusService.insertOrderStatus(orderStatusEntity);
List<WarehouseEntity> codes = dlOrderResponse.getCodes();
orderService.insertOrder(orderEntity);
codesService.insertWarehouses(codes);
}
if (Integer.parseInt(folderConfig.getParamValue()) == 1) { SystemParamConfigEntity systemParamConfigEntity = systemParamConfigService.selectByParamKey("sync_upstream_enable");
if (systemParamConfigEntity.getParamValue().equals("1")) {
String path = getPath();
SystemParamConfigEntity downstream = systemParamConfigService.selectByParamKey("sync_downstream_enable");
BaseResponse<PageSimpleResponse<IOOrderStatusEntity>> baseResponse = spGetHttp.getOrderStatus();
PageSimpleResponse<IOOrderStatusEntity> pageSimpleResponse = baseResponse.getData();
// SystemParamConfigEntity folderConfig = systemParamConfigService.selectByParamKey("gen_order_folder");
// SystemParamConfigEntity stausConfig = systemParamConfigService.selectByParamKey("gen_order_status");
if (pageSimpleResponse != null) {
List<IOOrderStatusEntity> ioOrderStatusEntityList = pageSimpleResponse.getList();
if (ioOrderStatusEntityList != null && ioOrderStatusEntityList.size() > 0) {
for (IOOrderStatusEntity ioOrderStatusEntity : ioOrderStatusEntityList) {
BaseResponse<List<DlOrderResponse>> ordersRes = spGetHttp.getOrders(ioOrderStatusEntity.getOrderId());
List<DlOrderResponse> dlOrderResponses = ordersRes.getData();
if (dlOrderResponses != null && dlOrderResponses.size() > 0) {
for (DlOrderResponse dlOrderResponse : dlOrderResponses) {
OrderEntity orderEntity = dlOrderResponse.getOrderEntity();
if (orderEntity != null) {
IOOrderStatusEntity temp = ioOrderStatusService.findByOrderId(orderEntity.getId());
if (temp == null) {//避免重复操作插入
if (Integer.parseInt(downstream.getParamValue()) == 1) {
IOOrderStatusEntity orderStatusEntity = new IOOrderStatusEntity();
orderStatusEntity.setOrderId(orderEntity.getId());
orderStatusEntity.setUpdateTime(new Date());
orderStatusEntity.setStatus(1);
ioOrderStatusService.insertOrderStatus(orderStatusEntity);
List<WarehouseEntity> codes = dlOrderResponse.getCodes();
orderService.insertOrder(orderEntity);
codesService.insertWarehouses(codes);
} else {
String fileName = path + FileConstant.upWaitCopy_order + "扫码单据" + orderEntity.getId() + ".json";
String backFileName = path + FileConstant.upWaitCopy_order_back + "扫码单据" + orderEntity.getId() + ".json";
List<PostOrderRequest.PostOrder> postOrders = new ArrayList<>();
PostOrderRequest postOrderRequest = new PostOrderRequest();
List<WarehouseEntity> warehouseEntityList = dlOrderResponse.getCodes();
PostOrderRequest.PostOrder postOrder = new PostOrderRequest.PostOrder();
postOrder.setCodes(warehouseEntityList);
postOrder.setBillType(orderEntity.getAction());
postOrders.add(postOrder);
postOrderRequest.setPostOrders(postOrders);
String json = JSONObject.toJSON(postOrderRequest).toString();
// FileUtils.makeDirectory(path);
// FileUtils.makeDirectory(path + "/备份/");
FileUtils.SaveFileAs(json, fileName);
FileUtils.SaveFileAs(json, backFileName);
ThrImportLogEntity thrImportLogEntity = new ThrImportLogEntity();
thrImportLogEntity.setGenKey(CustomUtil.getUUId());
thrImportLogEntity.setImportType(1);
thrImportLogEntity.setUpdateTime(new Date());
thrImportLogEntity.setFilePath(fileName);
thrImportLogEntity.setBackFilePath(backFileName);
thrImportLogEntity.setOrderId(orderEntity.getId());
thrImportLogService.insertImportLog(thrImportLogEntity);
}
filePath = filePath + "/" + "已完成扫码单据/"; spGetHttp.postOrder(orderEntity.getId());
backFilePath = backFilePath + "/" + "已完成扫码单据/";
String fileName = filePath + "扫码单据" + orderEntity.getId() + ".json";
String backFileName = backFilePath + "/" + "扫码单据" + orderEntity.getId() + ".json";
List<PostOrderRequest.PostOrder> postOrders = new ArrayList<>();
PostOrderRequest postOrderRequest = new PostOrderRequest();
List<WarehouseEntity> warehouseEntityList = dlOrderResponse.getCodes();
PostOrderRequest.PostOrder postOrder = new PostOrderRequest.PostOrder();
postOrder.setCodes(warehouseEntityList);
postOrder.setBillType(orderEntity.getAction());
postOrders.add(postOrder);
postOrderRequest.setPostOrders(postOrders);
String json = JSONObject.toJSON(postOrderRequest).toString();
FileUtils.makeDirectory(filePath);
FileUtils.makeDirectory(backFilePath);
FileUtils.SaveFileAs(json, fileName);
FileUtils.SaveFileAs(json, backFileName);
ThrImportLogEntity thrImportLogEntity = new ThrImportLogEntity();
thrImportLogEntity.setGenKey(CustomUtil.getUUId());
thrImportLogEntity.setImportType(1);
thrImportLogEntity.setUpdateTime(new Date());
thrImportLogEntity.setFilePath(fileName);
thrImportLogEntity.setBackFilePath(backFileName);
thrImportLogEntity.setOrderId(orderEntity.getId());
thrImportLogService.insertImportLog(thrImportLogEntity);
} }
spGetHttp.postOrder(orderEntity.getId());
} }
}
}
} }
}
}
} }
} }
} }
} }
} }

@ -1,14 +1,19 @@
package com.glxp.sale.admin.thread; package com.glxp.sale.admin.thread;
import com.glxp.sale.admin.constant.BasicProcessStatus; import com.glxp.sale.admin.constant.BasicProcessStatus;
import com.glxp.sale.admin.constant.FileConstant;
import com.glxp.sale.admin.entity.param.SystemParamConfigEntity;
import com.glxp.sale.admin.entity.sync.BasicExportStatusEntity; import com.glxp.sale.admin.entity.sync.BasicExportStatusEntity;
import com.glxp.sale.admin.entity.sync.IOOrderStatusEntity; import com.glxp.sale.admin.entity.sync.IOOrderStatusEntity;
import com.glxp.sale.admin.entity.sync.WarehouseEntity; import com.glxp.sale.admin.entity.sync.WarehouseEntity;
import com.glxp.sale.admin.service.param.SystemParamConfigService;
import com.glxp.sale.admin.service.sync.BasicExportService; import com.glxp.sale.admin.service.sync.BasicExportService;
import com.glxp.sale.admin.service.sync.IOOrderStatusService; import com.glxp.sale.admin.service.sync.IOOrderStatusService;
import com.glxp.sale.admin.util.FileFilterImpl; import com.glxp.sale.admin.util.FileFilterImpl;
import com.glxp.sale.admin.util.FileUtils; import com.glxp.sale.admin.util.FileUtils;
import com.glxp.sale.admin.util.RedisUtil; import com.glxp.sale.admin.util.RedisUtil;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Value; import org.springframework.beans.factory.annotation.Value;
import org.springframework.scheduling.annotation.Async; import org.springframework.scheduling.annotation.Async;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
@ -25,52 +30,93 @@ import java.util.List;
@Service @Service
public class ScanDownloadService { public class ScanDownloadService {
@Value("${file_path_wdl_order}")
private String orderFilePath;
@Value("${file_path_wdl_udiinfo}")
private String udiFilePath;
@Resource @Resource
IOOrderStatusService ioOrderStatusService; IOOrderStatusService ioOrderStatusService;
@Resource @Resource
RedisUtil redisUtil; RedisUtil redisUtil;
@Resource @Resource
BasicExportService basicExportService; BasicExportService basicExportService;
@Resource
SystemParamConfigService systemParamConfigService;
final Logger logger = LoggerFactory.getLogger(HeartTask.class);
public String getPath() {
SystemParamConfigEntity systemParamConfigEntity = systemParamConfigService.selectByParamKey("share_folder");
String filePath = systemParamConfigEntity.getParamValue();
return filePath;
}
public void scanOrder() { public void scanOrder() {
File[] files = FileUtils.listAll(new File(orderFilePath), new FileFilterImpl()); logger.info("扫描单据生成状态表等待下载!");
File[] files = FileUtils.listCurentAll(new File(getPath() + FileConstant.waitDownload_order), new FileFilterImpl());
if (files != null && files.length > 0) { if (files != null && files.length > 0) {
for (int i = 0; i < files.length; i++) { for (int i = 0; i < files.length; i++) {
File file = files[i]; File file = files[i];
String data = FileUtils.readFileAll(file.getPath()); String data = FileUtils.readFileAll(file.getPath());
IOOrderStatusEntity orderStatusEntity = new IOOrderStatusEntity(); IOOrderStatusEntity orderStatusEntity = new IOOrderStatusEntity();
orderStatusEntity.setOrderId(file.getName()); String fileName;
String orderId = null;
try {
fileName = file.getName();
orderId = fileName.substring(4, fileName.length() - 4);
if (!fileName.contains(".udi")) {
errorFile(file);
continue;
}
} catch (Exception e) {
e.printStackTrace();
errorFile(file);
//文件格式异常
continue;
}
orderStatusEntity.setOrderId(orderId);
orderStatusEntity.setUpdateTime(new Date()); orderStatusEntity.setUpdateTime(new Date());
orderStatusEntity.setStatus(1); orderStatusEntity.setStatus(1);
ioOrderStatusService.insertOrderStatus(orderStatusEntity); ioOrderStatusService.insertOrderStatus(orderStatusEntity);
redisUtil.set(file.getName(), data); redisUtil.set(orderId, data);
try {
FileUtils.CutFile(file.getPath(), getPath() + FileConstant.waitDownload_order_back + file.getName());
} catch (Exception e) {
e.printStackTrace();
}
} }
} }
} }
public void errorFile(File file) {
try {
FileUtils.CutFile(file.getPath(), getPath() + FileConstant.waitDownload_order_error + file.getName());
} catch (Exception e1) {
e1.printStackTrace();
}
}
public void scanUdi() { public void scanUdi() {
File[] files = FileUtils.listAll(new File(udiFilePath), new FileFilterImpl()); logger.info("扫描耗材字典生成状态表等待下载!");
File[] files = FileUtils.listCurentAll(new File(getPath() + FileConstant.waitDownload_products), new FileFilterImpl());
if (files != null && files.length > 0) { if (files != null && files.length > 0) {
for (int i = 0; i < files.length; i++) { for (int i = 0; i < files.length; i++) {
File file = files[i]; File file = files[i];
if (file.getName().contains("耗材字典")) { if (file.getName().contains("耗材字典")) {
String data = FileUtils.readFileAll(file.getPath()); String data = FileUtils.readFileAll(file.getPath());
BasicExportStatusEntity basicExportStatusEntity = new BasicExportStatusEntity(); BasicExportStatusEntity basicExportStatusEntity = new BasicExportStatusEntity();
basicExportStatusEntity.setId(file.getName()); String fileName = file.getName();
String id = fileName.substring(4, fileName.length() - 4);
basicExportStatusEntity.setId(id);
basicExportStatusEntity.setUpdateTime(new Date()); basicExportStatusEntity.setUpdateTime(new Date());
basicExportStatusEntity.setStatus(1); basicExportStatusEntity.setStatus(1);
basicExportStatusEntity.setIdDatas(file.getPath()); basicExportStatusEntity.setIdDatas(file.getPath());
basicExportStatusEntity.setType(BasicProcessStatus.BASIC_UDI); basicExportStatusEntity.setType(BasicProcessStatus.BASIC_UDI);
basicExportService.insertExportStatus(basicExportStatusEntity); basicExportService.insertExportStatus(basicExportStatusEntity);
redisUtil.set(file.getName(), data); redisUtil.set(id, data);
try {
FileUtils.CutFile(file.getPath(), getPath() + FileConstant.waitDownload_products_back + file.getName());
} catch (Exception e) {
e.printStackTrace();
}
} }
} }
@ -78,40 +124,56 @@ public class ScanDownloadService {
} }
public void scanCorp() { public void scanCorp() {
File[] files = FileUtils.listAll(new File(udiFilePath), new FileFilterImpl()); logger.info("扫描往来单位生成状态表等待下载!");
File[] files = FileUtils.listCurentAll(new File(getPath() + FileConstant.waitDownload_products), new FileFilterImpl());
if (files != null && files.length > 0) { if (files != null && files.length > 0) {
for (int i = 0; i < files.length; i++) { for (int i = 0; i < files.length; i++) {
File file = files[i]; File file = files[i];
if (file.getName().contains("往来单位")) { if (file.getName().contains("往来单位")) {
String data = FileUtils.readFileAll(file.getPath()); String data = FileUtils.readFileAll(file.getPath());
BasicExportStatusEntity basicExportStatusEntity = new BasicExportStatusEntity(); BasicExportStatusEntity basicExportStatusEntity = new BasicExportStatusEntity();
basicExportStatusEntity.setId(file.getName()); String fileName = file.getName();
String id = fileName.substring(4, fileName.length() - 4);
basicExportStatusEntity.setId(id);
basicExportStatusEntity.setUpdateTime(new Date()); basicExportStatusEntity.setUpdateTime(new Date());
basicExportStatusEntity.setStatus(1); basicExportStatusEntity.setStatus(1);
basicExportStatusEntity.setIdDatas(file.getPath()); basicExportStatusEntity.setIdDatas(file.getPath());
basicExportStatusEntity.setType(BasicProcessStatus.BASIC_CORP); basicExportStatusEntity.setType(BasicProcessStatus.BASIC_CORP);
basicExportService.insertExportStatus(basicExportStatusEntity); basicExportService.insertExportStatus(basicExportStatusEntity);
redisUtil.set(file.getName(), data); redisUtil.set(id, data);
try {
FileUtils.CutFile(file.getPath(), getPath() + FileConstant.waitDownload_products_back + file.getName());
} catch (Exception e) {
e.printStackTrace();
}
} }
} }
} }
} }
public void scanInv() { public void scanInv() {
File[] files = FileUtils.listAll(new File(udiFilePath), new FileFilterImpl()); logger.info("扫描仓库字典生成状态表等待下载!");
File[] files = FileUtils.listCurentAll(new File(getPath() + FileConstant.waitDownload_products), new FileFilterImpl());
if (files != null && files.length > 0) { if (files != null && files.length > 0) {
for (int i = 0; i < files.length; i++) { for (int i = 0; i < files.length; i++) {
File file = files[i]; File file = files[i];
if (file.getName().contains("仓库字典")) { if (file.getName().contains("仓库字典")) {
String data = FileUtils.readFileAll(file.getPath()); String data = FileUtils.readFileAll(file.getPath());
BasicExportStatusEntity basicExportStatusEntity = new BasicExportStatusEntity(); BasicExportStatusEntity basicExportStatusEntity = new BasicExportStatusEntity();
basicExportStatusEntity.setId(file.getName()); String fileName = file.getName();
String id = fileName.substring(4, fileName.length() - 4);
basicExportStatusEntity.setId(id);
basicExportStatusEntity.setUpdateTime(new Date()); basicExportStatusEntity.setUpdateTime(new Date());
basicExportStatusEntity.setStatus(1); basicExportStatusEntity.setStatus(1);
basicExportStatusEntity.setIdDatas(file.getPath()); basicExportStatusEntity.setIdDatas(file.getPath());
basicExportStatusEntity.setType(BasicProcessStatus.BASIC_INV); basicExportStatusEntity.setType(BasicProcessStatus.BASIC_INV);
basicExportService.insertExportStatus(basicExportStatusEntity); basicExportService.insertExportStatus(basicExportStatusEntity);
redisUtil.set(file.getName(), data); redisUtil.set(id, data);
try {
FileUtils.CutFile(file.getPath(), getPath() + FileConstant.waitDownload_products_back + file.getName());
} catch (Exception e) {
e.printStackTrace();
}
} }
} }
} }

@ -2,6 +2,8 @@ package com.glxp.sale.admin.thread;
import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSON;
import com.glxp.sale.admin.constant.BasicProcessStatus; import com.glxp.sale.admin.constant.BasicProcessStatus;
import com.glxp.sale.admin.constant.FileConstant;
import com.glxp.sale.admin.entity.param.SystemParamConfigEntity;
import com.glxp.sale.admin.entity.sync.BasicExportStatusEntity; import com.glxp.sale.admin.entity.sync.BasicExportStatusEntity;
import com.glxp.sale.admin.entity.sync.IOOrderStatusEntity; import com.glxp.sale.admin.entity.sync.IOOrderStatusEntity;
import com.glxp.sale.admin.http.SpGetHttp; import com.glxp.sale.admin.http.SpGetHttp;
@ -9,8 +11,10 @@ import com.glxp.sale.admin.http.SpPostHttp;
import com.glxp.sale.admin.req.sync.PostThrCorpRequest; import com.glxp.sale.admin.req.sync.PostThrCorpRequest;
import com.glxp.sale.admin.req.sync.PostThrProductsRequest; import com.glxp.sale.admin.req.sync.PostThrProductsRequest;
import com.glxp.sale.admin.res.sync.*; import com.glxp.sale.admin.res.sync.*;
import com.glxp.sale.admin.service.param.SystemParamConfigService;
import com.glxp.sale.admin.service.sync.BasicExportService; import com.glxp.sale.admin.service.sync.BasicExportService;
import com.glxp.sale.admin.service.sync.IOOrderStatusService; import com.glxp.sale.admin.service.sync.IOOrderStatusService;
import com.glxp.sale.admin.util.Constant;
import com.glxp.sale.admin.util.FileFilterImpl; import com.glxp.sale.admin.util.FileFilterImpl;
import com.glxp.sale.admin.util.FileUtils; import com.glxp.sale.admin.util.FileUtils;
import com.glxp.sale.admin.util.RedisUtil; import com.glxp.sale.admin.util.RedisUtil;
@ -30,17 +34,20 @@ import java.util.Date;
@Service @Service
public class ScanUploadService { public class ScanUploadService {
@Value("${file_path_wup_order}")
private String orderFilePath;
@Value("${file_path_wup_udiinfo}")
private String udiFilePath;
@Resource @Resource
SpPostHttp spPostHttp; SpPostHttp spPostHttp;
@Value("${back_file_path}") @Resource
private String backFilePath; SystemParamConfigService systemParamConfigService;
public String getPath() {
SystemParamConfigEntity systemParamConfigEntity = systemParamConfigService.selectByParamKey("share_folder");
String filePath = systemParamConfigEntity.getParamValue();
return filePath;
}
public void scanOrder() { public void scanOrder() {
File[] files = FileUtils.listAll(new File(orderFilePath), new FileFilterImpl()); File[] files = FileUtils.listCurentAll(new File(getPath() + FileConstant.waitUpload_order), new FileFilterImpl());
if (files != null && files.length > 0) { if (files != null && files.length > 0) {
for (int i = 0; i < files.length; i++) { for (int i = 0; i < files.length; i++) {
File file = files[i]; File file = files[i];
@ -49,7 +56,7 @@ public class ScanUploadService {
BaseResponse<String> baseResponse = spPostHttp.postOrder(dlOrderResponse); BaseResponse<String> baseResponse = spPostHttp.postOrder(dlOrderResponse);
if (baseResponse.getCode() == 20000) {//上传成功 if (baseResponse.getCode() == 20000) {//上传成功
try { try {
FileUtils.CutFile(file.getPath(), backFilePath + "/已上传单据/"+ file.getName()); FileUtils.CutFile(file.getPath(), getPath() + FileConstant.waitUpload_order_back + file.getName());
} catch (Exception e) { } catch (Exception e) {
e.printStackTrace(); e.printStackTrace();
} }
@ -60,7 +67,7 @@ public class ScanUploadService {
} }
public void scanUdi() { public void scanUdi() {
File[] files = FileUtils.listAll(new File(udiFilePath), new FileFilterImpl()); File[] files = FileUtils.listCurentAll(new File(getPath() + FileConstant.waitUpload_products), new FileFilterImpl());
if (files != null && files.length > 0) { if (files != null && files.length > 0) {
for (int i = 0; i < files.length; i++) { for (int i = 0; i < files.length; i++) {
File file = files[i]; File file = files[i];
@ -70,7 +77,7 @@ public class ScanUploadService {
BaseResponse<String> baseResponse = spPostHttp.postUdiInfo(udiRelevanceExportJsonResponse); BaseResponse<String> baseResponse = spPostHttp.postUdiInfo(udiRelevanceExportJsonResponse);
if (baseResponse.getCode() == 20000) {//上传成功 if (baseResponse.getCode() == 20000) {//上传成功
try { try {
FileUtils.CutFile(file.getPath(), backFilePath + "/已上传基础信息/"+ file.getName()); FileUtils.CutFile(file.getPath(), getPath() + FileConstant.waitUpload_products_back + file.getName());
} catch (Exception e) { } catch (Exception e) {
e.printStackTrace(); e.printStackTrace();
} }
@ -82,7 +89,7 @@ public class ScanUploadService {
} }
public void scanCorp() { public void scanCorp() {
File[] files = FileUtils.listAll(new File(udiFilePath), new FileFilterImpl()); File[] files = FileUtils.listCurentAll(new File(getPath() + FileConstant.waitUpload_products), new FileFilterImpl());
if (files != null && files.length > 0) { if (files != null && files.length > 0) {
for (int i = 0; i < files.length; i++) { for (int i = 0; i < files.length; i++) {
File file = files[i]; File file = files[i];
@ -92,7 +99,7 @@ public class ScanUploadService {
BaseResponse<String> baseResponse = spPostHttp.postCorp(basicUnitMaintainExportResponse); BaseResponse<String> baseResponse = spPostHttp.postCorp(basicUnitMaintainExportResponse);
if (baseResponse.getCode() == 20000) {//上传成功 if (baseResponse.getCode() == 20000) {//上传成功
try { try {
FileUtils.CutFile(file.getPath(), backFilePath + "/已上传基础信息/"+ file.getName()); FileUtils.CutFile(file.getPath(), getPath() + FileConstant.waitUpload_products_back + file.getName());
} catch (Exception e) { } catch (Exception e) {
e.printStackTrace(); e.printStackTrace();
} }
@ -103,7 +110,7 @@ public class ScanUploadService {
} }
public void scanInv() { public void scanInv() {
File[] files = FileUtils.listAll(new File(udiFilePath), new FileFilterImpl()); File[] files = FileUtils.listCurentAll(new File(getPath() + FileConstant.waitUpload_products), new FileFilterImpl());
if (files != null && files.length > 0) { if (files != null && files.length > 0) {
for (int i = 0; i < files.length; i++) { for (int i = 0; i < files.length; i++) {
File file = files[i]; File file = files[i];
@ -113,7 +120,7 @@ public class ScanUploadService {
BaseResponse<String> baseResponse = spPostHttp.postInv(invWarehouseExportResponse); BaseResponse<String> baseResponse = spPostHttp.postInv(invWarehouseExportResponse);
if (baseResponse.getCode() == 20000) {//上传成功 if (baseResponse.getCode() == 20000) {//上传成功
try { try {
FileUtils.CutFile(file.getPath(), backFilePath + "/已上传基础信息/"+ file.getName()); FileUtils.CutFile(file.getPath(), getPath() + FileConstant.waitUpload_products_back + file.getName());
} catch (Exception e) { } catch (Exception e) {
e.printStackTrace(); e.printStackTrace();
} }
@ -124,7 +131,7 @@ public class ScanUploadService {
} }
public void scanThirdProducts() { public void scanThirdProducts() {
File[] files = FileUtils.listAll(new File(udiFilePath), new FileFilterImpl()); File[] files = FileUtils.listCurentAll(new File(getPath() + FileConstant.waitUpload_products), new FileFilterImpl());
if (files != null && files.length > 0) { if (files != null && files.length > 0) {
for (int i = 0; i < files.length; i++) { for (int i = 0; i < files.length; i++) {
File file = files[i]; File file = files[i];
@ -134,7 +141,7 @@ public class ScanUploadService {
BaseResponse<String> baseResponse = spPostHttp.postThirdProducts(postThrProductsRequest); BaseResponse<String> baseResponse = spPostHttp.postThirdProducts(postThrProductsRequest);
if (baseResponse.getCode() == 20000) {//上传成功 if (baseResponse.getCode() == 20000) {//上传成功
try { try {
FileUtils.CutFile(file.getPath(), backFilePath + "/已上传基础信息/"+ file.getName()); FileUtils.CutFile(file.getPath(), getPath() + FileConstant.waitUpload_products_back + file.getName());
} catch (Exception e) { } catch (Exception e) {
e.printStackTrace(); e.printStackTrace();
} }
@ -146,7 +153,7 @@ public class ScanUploadService {
public void scanThirdCorp() { public void scanThirdCorp() {
File[] files = FileUtils.listAll(new File(udiFilePath), new FileFilterImpl()); File[] files = FileUtils.listCurentAll(new File(getPath() + FileConstant.waitUpload_products), new FileFilterImpl());
if (files != null && files.length > 0) { if (files != null && files.length > 0) {
for (int i = 0; i < files.length; i++) { for (int i = 0; i < files.length; i++) {
File file = files[i]; File file = files[i];
@ -156,7 +163,7 @@ public class ScanUploadService {
BaseResponse<String> baseResponse = spPostHttp.postThirdCorps(postThrCorpRequest); BaseResponse<String> baseResponse = spPostHttp.postThirdCorps(postThrCorpRequest);
if (baseResponse.getCode() == 20000) {//上传成功 if (baseResponse.getCode() == 20000) {//上传成功
try { try {
FileUtils.CutFile(file.getPath(), backFilePath + "/已上传基础信息/"+ file.getName()); FileUtils.CutFile(file.getPath(), getPath() + FileConstant.waitUpload_products_back + file.getName());
} catch (Exception e) { } catch (Exception e) {
e.printStackTrace(); e.printStackTrace();
} }
@ -167,7 +174,7 @@ public class ScanUploadService {
} }
public void scanThirdOrder() { public void scanThirdOrder() {
File[] files = FileUtils.listAll(new File(udiFilePath), new FileFilterImpl()); File[] files = FileUtils.listCurentAll(new File(getPath() + FileConstant.waitUpload_products), new FileFilterImpl());
if (files != null && files.length > 0) { if (files != null && files.length > 0) {
for (int i = 0; i < files.length; i++) { for (int i = 0; i < files.length; i++) {
File file = files[i]; File file = files[i];
@ -177,7 +184,7 @@ public class ScanUploadService {
BaseResponse<String> baseResponse = spPostHttp.postThirdOrders(thrOrderExportJsonResponse); BaseResponse<String> baseResponse = spPostHttp.postThirdOrders(thrOrderExportJsonResponse);
if (baseResponse.getCode() == 20000) {//上传成功 if (baseResponse.getCode() == 20000) {//上传成功
try { try {
FileUtils.CutFile(file.getPath(), backFilePath + "/已上传基础信息/" + file.getName()); FileUtils.CutFile(file.getPath(), getPath() + FileConstant.waitUpload_products_back + file.getName());
} catch (Exception e) { } catch (Exception e) {
e.printStackTrace(); e.printStackTrace();
} }

@ -284,6 +284,26 @@ public class FileUtils {
return files; return files;
} }
public static File[] listCurentAll(File file,
FileFilter filter) {
ArrayList list = new ArrayList();
File[] files;
if (!file.exists() || file.isFile()) {
return null;
}
files = file.listFiles();
if (files != null) {
for (int i = 0; i < files.length; i++) {
if (files[i].isFile()) {
list.add(files[i]);
}
}
}
File[] resultfiles = new File[list.size()];
list.toArray(resultfiles);
return resultfiles;
}
/** /**
* *
* *

Loading…
Cancel
Save