1.修复临时文件存储失败问题

2.修改下载第三方系统基础数据数据校验逻辑
master
x_z 2 years ago
parent 5bc3ce3115
commit a0d6f3cc06

@ -174,18 +174,13 @@ public class ErpBasicClient {
Request request = new Request.Builder().url(url).post(multipartBody).build();
try {
Response response = okHttpClient.newCall(request).execute();
response.close();
if (response.code() == 200) {
return ResultVOUtils.success("解析成功");
} else {
log.info("解析接口响应信息失败,返回信息:{}", response);
return ResultVOUtils.error(500, "解析第三方产品信息失败");
}
} catch (Exception e) {
log.error("解析第三方产品信息失败", e);
Response response = okHttpClient.newCall(request).execute();
response.close();
if (response.code() == 200) {
return ResultVOUtils.success("解析成功");
} else {
log.info("解析接口响应信息失败,返回信息:{}", response);
return ResultVOUtils.error(500, "解析第三方产品信息失败");
}
} catch (Exception e) {

@ -3,6 +3,7 @@ package com.glxp.api.service.thrsys;
import com.glxp.api.common.res.BaseResponse;
import com.glxp.api.entity.thrsys.ThrProductsEntity;
import com.glxp.api.entity.thrsys.ThrSystemDetailEntity;
import com.glxp.api.req.thrsys.FilterThrProductsRequest;
import com.glxp.api.req.thrsys.PostThrProductsRequest;
import com.glxp.api.res.thrsys.ThrProductsResponse;
@ -55,4 +56,12 @@ public interface ThrProductsService {
* @return
*/
BaseResponse importUploadPi(PostThrProductsRequest postThrProductsRequest);
/**
*
*
* @param thrSystemDetailEntity
* @return
*/
BaseResponse downloadThrPi(ThrSystemDetailEntity thrSystemDetailEntity);
}

@ -28,6 +28,7 @@ import javax.annotation.Resource;
import java.util.Collections;
import java.util.Date;
import java.util.List;
import java.util.Objects;
@Slf4j
@Service
@ -187,6 +188,7 @@ public class ThrBusTypeOriginServiceImpl implements IThrBusTypeOriginService {
} else {
boolean isChange = verifyDataChange(thrBusTypeOriginEntity, item);
if (isChange) {
thrBusTypeOriginEntity.setUpdateTime(new Date());
thrBusTypeOriginDao.updateById(thrBusTypeOriginEntity);
}
}
@ -213,6 +215,18 @@ public class ThrBusTypeOriginServiceImpl implements IThrBusTypeOriginService {
* @return
*/
private boolean verifyDataChange(ThrBusTypeOriginEntity thrBusTypeOriginEntity, ThrSystemBusApiEntity thrSystemBusApi) {
if (!StrUtil.equals(thrBusTypeOriginEntity.getName(), thrSystemBusApi.getName())) {
thrBusTypeOriginEntity.setName(thrSystemBusApi.getName());
return true;
}
if (!Objects.equals(thrBusTypeOriginEntity.getInoutType(), thrSystemBusApi.getInoutType())) {
thrBusTypeOriginEntity.setInoutType(thrSystemBusApi.getInoutType());
return true;
}
if (!StrUtil.equals(thrBusTypeOriginEntity.getRemark(), thrSystemBusApi.getRemark())) {
thrBusTypeOriginEntity.setRemark(thrSystemBusApi.getRemark());
return true;
}
return false;
}
}

@ -158,24 +158,31 @@ public class ThrCorpServiceImpl implements ThrCorpService {
*/
private boolean verifyDataChange(ThrCorpEntity thrCorpEntity, ThrCorpsResponse thrCorpsResponse) {
if (!StrUtil.equals(thrCorpEntity.getSpell(), thrCorpsResponse.getSpell())) {
thrCorpEntity.setSpell(thrCorpsResponse.getSpell());
return true;
}
if (!StrUtil.equals(thrCorpEntity.getAddr(), thrCorpsResponse.getAddr())) {
thrCorpEntity.setAddr(thrCorpsResponse.getAddr());
return true;
}
if (!StrUtil.equals(thrCorpEntity.getCreditNo(), thrCorpsResponse.getCreditNo())) {
thrCorpEntity.setContact(thrCorpsResponse.getCreditNo());
return true;
}
if (!StrUtil.equals(thrCorpEntity.getContact(), thrCorpsResponse.getContact())) {
thrCorpEntity.setContact(thrCorpsResponse.getContact());
return true;
}
if (!StrUtil.equals(thrCorpEntity.getMobile(), thrCorpsResponse.getMobile())) {
thrCorpEntity.setMobile(thrCorpsResponse.getMobile());
return true;
}
if (!StrUtil.equals(thrCorpEntity.getName(), thrCorpsResponse.getName())) {
thrCorpEntity.setName(thrCorpsResponse.getName());
return true;
}
if (!StrUtil.equals(thrCorpEntity.getRemark(), thrCorpsResponse.getRemark())) {
thrCorpEntity.setRemark(thrCorpsResponse.getRemark());
return true;
}
return false;

@ -185,9 +185,11 @@ public class ThrInvWarehouseServiceImpl implements ThrInvWarehouseService {
*/
private boolean verifyDataChange(ThrInvWarehouseEntity thrInvWarehouseEntity, UdiwmsWarehouseDetail udiwmsWarehouseDetail) {
if (!StrUtil.equals(thrInvWarehouseEntity.getName(), udiwmsWarehouseDetail.getName())) {
thrInvWarehouseEntity.setName(udiwmsWarehouseDetail.getName());
return true;
}
if (!StrUtil.equals(thrInvWarehouseEntity.getRemark(), udiwmsWarehouseDetail.getRemark())) {
thrInvWarehouseEntity.setRemark(udiwmsWarehouseDetail.getRemark());
return true;
}
return false;

@ -9,6 +9,7 @@ import com.glxp.api.common.res.BaseResponse;
import com.glxp.api.common.util.ResultVOUtils;
import com.glxp.api.dao.thrsys.ThrProductsDao;
import com.glxp.api.entity.thrsys.ThrProductsEntity;
import com.glxp.api.entity.thrsys.ThrSystemDetailEntity;
import com.glxp.api.http.ErpBasicClient;
import com.glxp.api.req.thrsys.FilterThrProductsRequest;
import com.glxp.api.req.thrsys.PostThrProductsRequest;
@ -157,4 +158,10 @@ public class ThrProductsServiceImpl implements ThrProductsService {
return ResultVOUtils.success("第三方系统产品数据已插入到数据库");
}
@Override
public BaseResponse downloadThrPi(ThrSystemDetailEntity thrSystemDetailEntity) {
return null;
}
}

@ -140,7 +140,15 @@ public class ThirdSysInterfaceTask {
* @param thrSystemDetailEntity
*/
private void downloadThrPi(ThrSystemDetailEntity thrSystemDetailEntity) {
//校验任务并更新redis数据执行标识
if (verifyTask(thrSystemDetailEntity)) {
getExecutor().submit(() -> {
log.info("开始下载第三方产品信息");
thrProductsService.downloadThrPi(thrSystemDetailEntity);
updateTask(getTaskKey(thrSystemDetailEntity));
log.info("第三方产品信息下载完成");
});
}
}
/**

@ -5,6 +5,7 @@ spring:
enabled: false
servlet:
multipart:
enabled: true
max-file-size: 200MB
max-request-size: 200MB
location: D:/tmp

Loading…
Cancel
Save