|
|
@ -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());
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|