全部bug修复
parent
17b0308116
commit
1005c7d362
@ -0,0 +1,9 @@
|
||||
package com.glxp.api.admin.constant;
|
||||
|
||||
public class SetupType {
|
||||
|
||||
public static final int THRSYS_DATA_API_REALTIME = 0;
|
||||
public static final int THRSYS_DATA_API_CACHE = 3;
|
||||
public static final int THRSYS_DATA_FILE_CACHE = 2;
|
||||
public static final int THRSYS_DATA_UPLOAD_CACHE = 1;
|
||||
}
|
@ -0,0 +1,15 @@
|
||||
package com.glxp.api.admin.entity.basic;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class FilterSysEntity {
|
||||
|
||||
private Integer filterType;
|
||||
private String sysName;
|
||||
|
||||
public FilterSysEntity(Integer filterType, String sysName) {
|
||||
this.filterType = filterType;
|
||||
this.sysName = sysName;
|
||||
}
|
||||
}
|
@ -0,0 +1,20 @@
|
||||
package com.glxp.api.admin.entity.basic;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
@Data
|
||||
public class UdiCompanyEntity {
|
||||
|
||||
private int id;
|
||||
private String tyshxydm;
|
||||
private String ylqxzcrbarmc;
|
||||
private String ylqxzcrbarywmc;
|
||||
private String qylxrdh;
|
||||
private String qylxrcz;
|
||||
private String qylxryx;
|
||||
private String deviceRecordKey;
|
||||
private Date updateTime;
|
||||
|
||||
}
|
@ -0,0 +1,10 @@
|
||||
package com.glxp.api.admin.req.basic;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class RemoveRelRequest {
|
||||
|
||||
private String relId;
|
||||
private String thirdSys;
|
||||
}
|
@ -1,11 +1,16 @@
|
||||
package com.glxp.api.admin.req.thrsys;
|
||||
|
||||
import com.glxp.api.admin.req.ListPageRequest;
|
||||
import com.glxp.api.admin.res.basic.ErpUnitsResponse;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Data
|
||||
public class FilterThrCorpRequest extends ListPageRequest {
|
||||
private String thirdSysFk;
|
||||
private String thirdSys;
|
||||
private String unitId;
|
||||
private String name;
|
||||
List<ErpUnitsResponse> thrCorpEntities;
|
||||
}
|
||||
|
@ -1,12 +1,20 @@
|
||||
package com.glxp.api.admin.req.thrsys;
|
||||
|
||||
import com.glxp.api.admin.entity.thrsys.ThrProductsEntity;
|
||||
import com.glxp.api.admin.req.ListPageRequest;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Data
|
||||
public class FilterThrProductsRequest extends ListPageRequest {
|
||||
private List<ThrProductsEntity> thrProductsEntities;
|
||||
private String code;
|
||||
private String name;
|
||||
private String spec; //规格型号
|
||||
private String registerNo; //注册证号
|
||||
private String manufactory; //生产厂家
|
||||
private String thirdSys;
|
||||
private String thirdSysFk;
|
||||
private String unionCode;
|
||||
}
|
||||
|
@ -0,0 +1,324 @@
|
||||
package com.glxp.api.admin.thread;
|
||||
|
||||
import com.glxp.api.admin.entity.basic.UdiInfoEntity;
|
||||
import com.glxp.api.admin.entity.basic.UdiRelevanceEntity;
|
||||
import com.glxp.api.admin.entity.info.SystemParamConfigEntity;
|
||||
import com.glxp.api.admin.entity.thrsys.ThrProductsEntity;
|
||||
import com.glxp.api.admin.httpclient.ErpBasicClient;
|
||||
import com.glxp.api.admin.httpclient.ErpInvClient;
|
||||
import com.glxp.api.admin.req.basic.FilterErpGoodsRequest;
|
||||
import com.glxp.api.admin.req.inventory.ErpOnhandRequest;
|
||||
import com.glxp.api.admin.req.thrsys.FilterThrProductsRequest;
|
||||
import com.glxp.api.admin.res.PageSimpleResponse;
|
||||
import com.glxp.api.admin.res.basic.ErpProductsResponse;
|
||||
import com.glxp.api.admin.res.inventory.ErpInvProductResponse;
|
||||
import com.glxp.api.admin.service.basic.UdiInfoService;
|
||||
import com.glxp.api.admin.service.basic.UdiRelevanceService;
|
||||
import com.glxp.api.admin.service.info.SystemParamConfigService;
|
||||
import com.glxp.api.admin.service.thrsys.ThrProductsService;
|
||||
import com.glxp.api.admin.util.CustomUtil;
|
||||
import com.glxp.api.admin.util.DateUtil;
|
||||
import com.glxp.api.common.res.BaseResponse;
|
||||
import org.springframework.beans.BeanUtils;
|
||||
import org.springframework.scheduling.annotation.Async;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
import java.util.ArrayList;
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.stream.Collectors;
|
||||
|
||||
@Service
|
||||
public class BasicBackUpdateProductService {
|
||||
@Resource
|
||||
UdiRelevanceService udiRelevanceService;
|
||||
@Resource
|
||||
UdiInfoService udiInfoService;
|
||||
@Resource
|
||||
ThrProductsService thrProductsService;
|
||||
@Resource
|
||||
SystemParamConfigService systemParamConfigService;
|
||||
|
||||
|
||||
//定时或一键下载更新全部线上产品信息
|
||||
@Async
|
||||
public void addAllProducts(FilterErpGoodsRequest filterErpGoodsRequest, String productUrl, String onHandUrl, String thirdSysId, Boolean isEnable) {
|
||||
int page = 1;
|
||||
if (filterErpGoodsRequest == null) {
|
||||
filterErpGoodsRequest = new FilterErpGoodsRequest();
|
||||
}
|
||||
filterErpGoodsRequest.setPage(1);
|
||||
filterErpGoodsRequest.setLimit(100);
|
||||
while (page != -1) {
|
||||
page = getAllProducts(filterErpGoodsRequest, productUrl, onHandUrl, thirdSysId, isEnable);
|
||||
}
|
||||
}
|
||||
|
||||
//定时或一键下载更新全部线上产品信息
|
||||
public int getAllProducts(FilterErpGoodsRequest filterErpGoodsRequest, String productUrl, String
|
||||
onHandUrl, String thirdSysId, Boolean isEnable) {
|
||||
|
||||
BaseResponse<PageSimpleResponse<ErpProductsResponse>> erpProducts = new ErpBasicClient().getErpProducts(filterErpGoodsRequest, productUrl);
|
||||
List<ErpProductsResponse> invmandocResponses = erpProducts.getData().getList();
|
||||
SystemParamConfigEntity isUpdate = systemParamConfigService.selectByParamKey("erp_updateErpData_type");
|
||||
if (isEnable == null || isEnable == false) {
|
||||
isUpdate.setParamValue("1");
|
||||
}
|
||||
Map<String, ErpProductsResponse> erpProductsMap = new HashMap<>();
|
||||
if (invmandocResponses != null && invmandocResponses.size() > 0) {
|
||||
List<String> inventoryCodes = new ArrayList<>();
|
||||
// if (filterErpGoodsRequest.getCode() != null) {
|
||||
// inventoryCodes.add(filterErpGoodsRequest.getCode());
|
||||
// erpProductsMap.put(filterErpGoodsRequest.getCode(), invmandocResponses.get(0));
|
||||
// } else {
|
||||
for (ErpProductsResponse invmandocResponse : invmandocResponses) {
|
||||
UdiRelevanceEntity udiRelevanceEntity = udiRelevanceService.selectByThirdId(invmandocResponse.getCode(), thirdSysId);
|
||||
if (udiRelevanceEntity == null) {
|
||||
inventoryCodes.add(invmandocResponse.getCode());
|
||||
erpProductsMap.put(invmandocResponse.getCode(), invmandocResponse);
|
||||
if (isUpdate.getParamValue().equals("1")) {//不根据库存信息过滤
|
||||
UdiInfoEntity udiInfoEntity = new UdiInfoEntity();
|
||||
udiInfoEntity.setNameCode(invmandocResponse.getCode());
|
||||
udiInfoEntity.setCpmctymc(invmandocResponse.getName());
|
||||
udiInfoEntity.setGgxh(invmandocResponse.getSpec());
|
||||
udiInfoEntity.setUuid(CustomUtil.getUUId());
|
||||
udiInfoEntity.setDiType(1);
|
||||
|
||||
udiInfoEntity.setManufactory(invmandocResponses.get(0).getManufactory());
|
||||
udiInfoEntity.setYlqxzcrbarmc(invmandocResponses.get(0).getManufactory());
|
||||
udiInfoEntity.setZczbhhzbapzbh(invmandocResponses.get(0).getRegisterNo());
|
||||
udiInfoService.insertUdiInfo(udiInfoEntity);
|
||||
UdiRelevanceEntity udiRelevanceEntity1 = new UdiRelevanceEntity();
|
||||
udiRelevanceEntity1.setUuid(udiInfoEntity.getUuid());
|
||||
if ("thirdId".equals(thirdSysId)) {
|
||||
udiRelevanceEntity1.setThirdId(invmandocResponse.getCode());
|
||||
udiRelevanceEntity1.setThirdName(invmandocResponse.getName());
|
||||
} else if ("thirdId1".equals(thirdSysId)) {
|
||||
udiRelevanceEntity1.setThirdId1(invmandocResponse.getCode());
|
||||
udiRelevanceEntity1.setThirdName1(invmandocResponse.getName());
|
||||
} else if ("thirdId2".equals(thirdSysId)) {
|
||||
udiRelevanceEntity1.setThirdId4(invmandocResponse.getCode());
|
||||
udiRelevanceEntity1.setThirdName4(invmandocResponse.getName());
|
||||
} else if ("thirdId3".equals(thirdSysId)) {
|
||||
udiRelevanceEntity1.setThirdId3(invmandocResponse.getCode());
|
||||
udiRelevanceEntity1.setThirdName3(invmandocResponse.getName());
|
||||
} else if ("thirdId4".equals(thirdSysId)) {
|
||||
udiRelevanceEntity1.setThirdId4(invmandocResponse.getCode());
|
||||
udiRelevanceEntity1.setThirdName4(invmandocResponse.getName());
|
||||
}
|
||||
udiRelevanceEntity1.setThirdId(invmandocResponse.getCode());
|
||||
udiRelevanceEntity1.setThirdName(invmandocResponse.getName());
|
||||
udiRelevanceEntity1.setUpdateTime(DateUtil.getDateTime());
|
||||
udiRelevanceService.insertUdiRelevance(udiRelevanceEntity1);
|
||||
}
|
||||
}
|
||||
|
||||
// }
|
||||
}
|
||||
|
||||
//若需要对照库存信息
|
||||
if (!isUpdate.getParamValue().equals("1")) {
|
||||
if (inventoryCodes.size() > 0) {
|
||||
ErpOnhandRequest erpOnhandRequest = new ErpOnhandRequest();
|
||||
erpOnhandRequest.setInventoryCodes(inventoryCodes);
|
||||
List<ErpInvProductResponse> erpOnHandResponses = new ErpInvClient().getInvPrdoduct(erpOnhandRequest, onHandUrl);
|
||||
if (erpOnHandResponses != null) {
|
||||
Map<String, List<ErpInvProductResponse>> map = erpOnHandResponses.stream().collect(Collectors.groupingBy(ErpInvProductResponse::getCode));
|
||||
for (List<ErpInvProductResponse> onHandResponses : map.values()) {
|
||||
if (onHandResponses != null && onHandResponses.size() > 0) {
|
||||
ErpInvProductResponse onhandQueryResponse = onHandResponses.get(0);
|
||||
if (isUpdate.getParamValue().equals("2")) {
|
||||
addRl(onhandQueryResponse, thirdSysId, erpProductsMap);
|
||||
} else if (isUpdate.getParamValue().equals("3")) {
|
||||
if (onhandQueryResponse.getCount() != null && onhandQueryResponse.getCount() > 0) {
|
||||
addRl(onhandQueryResponse, thirdSysId, erpProductsMap);
|
||||
}
|
||||
} else if (isUpdate.getParamValue().equals("4")) {
|
||||
if (onhandQueryResponse.getCount() == null || onhandQueryResponse.getCount() <= 0) {
|
||||
addRl(onhandQueryResponse, thirdSysId, erpProductsMap);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
filterErpGoodsRequest.setPage(filterErpGoodsRequest.getPage() + 1);
|
||||
if (filterErpGoodsRequest.getPage() * filterErpGoodsRequest.getLimit() < erpProducts.getData().getTotal()) {
|
||||
return filterErpGoodsRequest.getPage();
|
||||
}
|
||||
} else {
|
||||
return -1;
|
||||
}
|
||||
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
||||
//定时或一键下载更新本地所有产品信息
|
||||
@Async
|
||||
public void loadLocal(FilterErpGoodsRequest filterErpGoodsRequest, String thirdSysId, String onHandUrl, Boolean isEnable) {
|
||||
if (filterErpGoodsRequest == null) {
|
||||
filterErpGoodsRequest = new FilterErpGoodsRequest();
|
||||
}
|
||||
FilterThrProductsRequest filterThrInvProductsRequest = new FilterThrProductsRequest();
|
||||
BeanUtils.copyProperties(filterErpGoodsRequest, filterThrInvProductsRequest);
|
||||
filterThrInvProductsRequest.setPage(null);
|
||||
List<ThrProductsEntity> thrProductsEntities = thrProductsService.filterThrProductsRequest(filterThrInvProductsRequest);
|
||||
|
||||
SystemParamConfigEntity isUpdate = systemParamConfigService.selectByParamKey("erp_updateErpData_type");
|
||||
if (isEnable == null || isEnable == false) {
|
||||
isUpdate.setParamValue("1");
|
||||
}
|
||||
|
||||
if (thrProductsEntities != null && thrProductsEntities.size() > 0) {
|
||||
for (ThrProductsEntity thrProductsEntity : thrProductsEntities) {
|
||||
UdiRelevanceEntity udiRelevanceEntity = udiRelevanceService.selectByThirdId(thrProductsEntity.getCode(), thirdSysId);
|
||||
if (udiRelevanceEntity == null){
|
||||
if (isUpdate.getParamValue().equals("1")) {
|
||||
|
||||
UdiInfoEntity udiInfoEntity = new UdiInfoEntity();
|
||||
udiInfoEntity.setNameCode(thrProductsEntity.getCode());
|
||||
udiInfoEntity.setCpmctymc(thrProductsEntity.getName());
|
||||
udiInfoEntity.setGgxh(thrProductsEntity.getSpec());
|
||||
udiInfoEntity.setUuid(CustomUtil.getUUId());
|
||||
udiInfoEntity.setDiType(1);
|
||||
udiInfoEntity.setManufactory(thrProductsEntity.getManufactory());
|
||||
udiInfoEntity.setYlqxzcrbarmc(thrProductsEntity.getManufactory());
|
||||
udiInfoEntity.setZczbhhzbapzbh(thrProductsEntity.getRegisterNo());
|
||||
udiInfoService.insertUdiInfo(udiInfoEntity);
|
||||
UdiRelevanceEntity udiRelevanceEntity1 = new UdiRelevanceEntity();
|
||||
udiRelevanceEntity1.setUuid(udiInfoEntity.getUuid());
|
||||
|
||||
|
||||
if ("thirdId".equals(thirdSysId)) {
|
||||
udiRelevanceEntity1.setThirdId(thrProductsEntity.getCode());
|
||||
udiRelevanceEntity1.setThirdName(thrProductsEntity.getName());
|
||||
} else if ("thirdId1".equals(thirdSysId)) {
|
||||
udiRelevanceEntity1.setThirdId1(thrProductsEntity.getCode());
|
||||
udiRelevanceEntity1.setThirdName1(thrProductsEntity.getName());
|
||||
} else if ("thirdId2".equals(thirdSysId)) {
|
||||
udiRelevanceEntity1.setThirdId4(thrProductsEntity.getCode());
|
||||
udiRelevanceEntity1.setThirdName4(thrProductsEntity.getName());
|
||||
} else if ("thirdId3".equals(thirdSysId)) {
|
||||
udiRelevanceEntity1.setThirdId3(thrProductsEntity.getCode());
|
||||
udiRelevanceEntity1.setThirdName3(thrProductsEntity.getName());
|
||||
} else if ("thirdId4".equals(thirdSysId)) {
|
||||
udiRelevanceEntity1.setThirdId4(thrProductsEntity.getCode());
|
||||
udiRelevanceEntity1.setThirdName4(thrProductsEntity.getName());
|
||||
}
|
||||
|
||||
udiRelevanceEntity1.setThirdId(thrProductsEntity.getCode());
|
||||
udiRelevanceEntity1.setThirdName(thrProductsEntity.getName());
|
||||
udiRelevanceEntity1.setUpdateTime(DateUtil.getDateTime());
|
||||
udiRelevanceService.insertUdiRelevance(udiRelevanceEntity1);
|
||||
} else {
|
||||
ErpOnhandRequest erpOnhandRequest = new ErpOnhandRequest();
|
||||
erpOnhandRequest.setInventoryCode(thrProductsEntity.getCode());
|
||||
List<ErpInvProductResponse> erpOnHandResponses = new ErpInvClient().getInvPrdoduct(erpOnhandRequest, onHandUrl);
|
||||
if (erpOnHandResponses != null && erpOnHandResponses.size() > 0) {
|
||||
ErpInvProductResponse onhandQueryResponse = erpOnHandResponses.get(0);
|
||||
if (isUpdate.getParamValue().equals("2")) {
|
||||
addRl(onhandQueryResponse, thirdSysId, thrProductsEntity);
|
||||
} else if (isUpdate.getParamValue().equals("3")) {
|
||||
if (onhandQueryResponse.getCount() != null && onhandQueryResponse.getCount() > 0) {
|
||||
addRl(onhandQueryResponse, thirdSysId, thrProductsEntity);
|
||||
}
|
||||
} else if (isUpdate.getParamValue().equals("4")) {
|
||||
if (onhandQueryResponse.getCount() == null || onhandQueryResponse.getCount() <= 0) {
|
||||
addRl(onhandQueryResponse, thirdSysId, thrProductsEntity);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
public void addRl(ErpInvProductResponse onhandQueryResponse, String
|
||||
thirdSysId, Map<String, ErpProductsResponse> erpProductsMap) {
|
||||
UdiInfoEntity udiInfoEntity = new UdiInfoEntity();
|
||||
udiInfoEntity.setNameCode(onhandQueryResponse.getCode());
|
||||
udiInfoEntity.setCpmctymc(onhandQueryResponse.getName());
|
||||
udiInfoEntity.setGgxh(onhandQueryResponse.getSpec());
|
||||
udiInfoEntity.setUuid(CustomUtil.getUUId());
|
||||
udiInfoEntity.setDiType(1);
|
||||
udiInfoEntity.setManufactory(erpProductsMap.get(onhandQueryResponse.getCode()).getManufactory());
|
||||
udiInfoEntity.setYlqxzcrbarmc(erpProductsMap.get(onhandQueryResponse.getCode()).getManufactory());
|
||||
udiInfoEntity.setZczbhhzbapzbh(erpProductsMap.get(onhandQueryResponse.getCode()).getRegisterNo());
|
||||
udiInfoService.insertUdiInfo(udiInfoEntity);
|
||||
UdiRelevanceEntity udiRelevanceEntity1 = new UdiRelevanceEntity();
|
||||
udiRelevanceEntity1.setUuid(udiInfoEntity.getUuid());
|
||||
|
||||
if ("thirdId".equals(thirdSysId)) {
|
||||
udiRelevanceEntity1.setThirdId(onhandQueryResponse.getCode());
|
||||
udiRelevanceEntity1.setThirdName(onhandQueryResponse.getName());
|
||||
} else if ("thirdId1".equals(thirdSysId)) {
|
||||
udiRelevanceEntity1.setThirdId1(onhandQueryResponse.getCode());
|
||||
udiRelevanceEntity1.setThirdName1(onhandQueryResponse.getName());
|
||||
} else if ("thirdId2".equals(thirdSysId)) {
|
||||
udiRelevanceEntity1.setThirdId4(onhandQueryResponse.getCode());
|
||||
udiRelevanceEntity1.setThirdName4(onhandQueryResponse.getName());
|
||||
} else if ("thirdId3".equals(thirdSysId)) {
|
||||
udiRelevanceEntity1.setThirdId3(onhandQueryResponse.getCode());
|
||||
udiRelevanceEntity1.setThirdName3(onhandQueryResponse.getName());
|
||||
} else if ("thirdId4".equals(thirdSysId)) {
|
||||
udiRelevanceEntity1.setThirdId4(onhandQueryResponse.getCode());
|
||||
udiRelevanceEntity1.setThirdName4(onhandQueryResponse.getName());
|
||||
}
|
||||
|
||||
udiRelevanceEntity1.setThirdId(onhandQueryResponse.getCode());
|
||||
udiRelevanceEntity1.setThirdName(onhandQueryResponse.getName());
|
||||
udiRelevanceEntity1.setUpdateTime(DateUtil.getDateTime());
|
||||
udiRelevanceService.insertUdiRelevance(udiRelevanceEntity1);
|
||||
}
|
||||
|
||||
public void addRl(ErpInvProductResponse onhandQueryResponse, String
|
||||
thirdSysId, ThrProductsEntity erpProductsResponse) {
|
||||
UdiInfoEntity udiInfoEntity = new UdiInfoEntity();
|
||||
udiInfoEntity.setNameCode(onhandQueryResponse.getCode());
|
||||
udiInfoEntity.setCpmctymc(onhandQueryResponse.getName());
|
||||
udiInfoEntity.setGgxh(onhandQueryResponse.getSpec());
|
||||
udiInfoEntity.setUuid(CustomUtil.getUUId());
|
||||
udiInfoEntity.setDiType(1);
|
||||
udiInfoEntity.setManufactory(erpProductsResponse.getManufactory());
|
||||
udiInfoEntity.setYlqxzcrbarmc(erpProductsResponse.getManufactory());
|
||||
udiInfoEntity.setZczbhhzbapzbh(erpProductsResponse.getRegisterNo());
|
||||
udiInfoService.insertUdiInfo(udiInfoEntity);
|
||||
UdiRelevanceEntity udiRelevanceEntity1 = new UdiRelevanceEntity();
|
||||
udiRelevanceEntity1.setUuid(udiInfoEntity.getUuid());
|
||||
|
||||
if ("thirdId".equals(thirdSysId)) {
|
||||
udiRelevanceEntity1.setThirdId(onhandQueryResponse.getCode());
|
||||
udiRelevanceEntity1.setThirdName(onhandQueryResponse.getName());
|
||||
} else if ("thirdId1".equals(thirdSysId)) {
|
||||
udiRelevanceEntity1.setThirdId1(onhandQueryResponse.getCode());
|
||||
udiRelevanceEntity1.setThirdName1(onhandQueryResponse.getName());
|
||||
} else if ("thirdId2".equals(thirdSysId)) {
|
||||
udiRelevanceEntity1.setThirdId4(onhandQueryResponse.getCode());
|
||||
udiRelevanceEntity1.setThirdName4(onhandQueryResponse.getName());
|
||||
} else if ("thirdId3".equals(thirdSysId)) {
|
||||
udiRelevanceEntity1.setThirdId3(onhandQueryResponse.getCode());
|
||||
udiRelevanceEntity1.setThirdName3(onhandQueryResponse.getName());
|
||||
} else if ("thirdId4".equals(thirdSysId)) {
|
||||
udiRelevanceEntity1.setThirdId4(onhandQueryResponse.getCode());
|
||||
udiRelevanceEntity1.setThirdName4(onhandQueryResponse.getName());
|
||||
}
|
||||
|
||||
udiRelevanceEntity1.setThirdId(onhandQueryResponse.getCode());
|
||||
udiRelevanceEntity1.setThirdName(onhandQueryResponse.getName());
|
||||
udiRelevanceEntity1.setUpdateTime(DateUtil.getDateTime());
|
||||
udiRelevanceService.insertUdiRelevance(udiRelevanceEntity1);
|
||||
}
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,34 @@
|
||||
package com.glxp.api.admin.thread;
|
||||
|
||||
import com.glxp.api.admin.entity.basic.UdiRelevanceEntity;
|
||||
import com.glxp.api.admin.service.basic.UdiRelevanceService;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
|
||||
@Service
|
||||
public class BasicDiUpdateHelper {
|
||||
@Resource
|
||||
UdiRelevanceService udiRelevanceService;
|
||||
|
||||
//是否可以新增UDI
|
||||
public void isAddUdi() {
|
||||
|
||||
}
|
||||
|
||||
|
||||
//是否可以新增第三方产品ID
|
||||
public void isAddThridId(String thirdId, String thirdId1, String thirdId2, String thirdId3, String thirdId4) {
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
//是否可以同时关联
|
||||
public void isAllAdd(String uuid, String thirdId, String thirdId1, String thirdId2, String thirdId3, String thirdId4) {
|
||||
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,103 @@
|
||||
package com.glxp.api.admin.thread;
|
||||
|
||||
import com.glxp.api.admin.entity.basic.BasicThirdSysDetailEntity;
|
||||
import com.glxp.api.admin.entity.basic.BasicUnitMaintainEntity;
|
||||
import com.glxp.api.admin.entity.thrsys.ThrCorpEntity;
|
||||
import com.glxp.api.admin.httpclient.ErpBasicClient;
|
||||
import com.glxp.api.admin.req.basic.BasicUnitMaintainFilterRequest;
|
||||
import com.glxp.api.admin.req.thrsys.FilterThrCorpRequest;
|
||||
import com.glxp.api.admin.res.PageSimpleResponse;
|
||||
import com.glxp.api.admin.res.basic.ErpUnitsResponse;
|
||||
import com.glxp.api.admin.service.basic.BasicUnitMaintainService;
|
||||
import com.glxp.api.admin.service.thrsys.ThrCorpService;
|
||||
import com.glxp.api.admin.util.CustomUtil;
|
||||
import com.glxp.api.common.res.BaseResponse;
|
||||
import org.springframework.beans.BeanUtils;
|
||||
import org.springframework.scheduling.annotation.Async;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.stream.Collectors;
|
||||
|
||||
@Service
|
||||
public class BasicUnitImportService {
|
||||
@Resource
|
||||
private BasicUnitMaintainService basicUnitMaintainService;
|
||||
@Resource
|
||||
private ThrCorpService thrCorpService;
|
||||
|
||||
|
||||
@Async
|
||||
public void selectAllUnit(BasicThirdSysDetailEntity basicThirdSysDetailEntity, BasicUnitMaintainFilterRequest unitMaintainFilterRequest){
|
||||
List<ErpUnitsResponse> imports = new ArrayList<>();
|
||||
if (basicThirdSysDetailEntity.getFromType() == 0) {
|
||||
int page = 1;
|
||||
|
||||
List<ErpUnitsResponse> erpUnitsResponses = new ArrayList<>();
|
||||
while (true) {
|
||||
unitMaintainFilterRequest.setPage(page);
|
||||
unitMaintainFilterRequest.setLimit(100);
|
||||
BaseResponse<PageSimpleResponse<ErpUnitsResponse>> baseResponse =
|
||||
new ErpBasicClient().getErpCrop(unitMaintainFilterRequest, basicThirdSysDetailEntity.getValue());
|
||||
List<ErpUnitsResponse> temps = baseResponse.getData().getList();
|
||||
if (temps.size() < 100) {
|
||||
erpUnitsResponses.addAll(temps);
|
||||
break;
|
||||
} else {
|
||||
page++;
|
||||
erpUnitsResponses.addAll(temps);
|
||||
}
|
||||
}
|
||||
|
||||
imports.addAll(erpUnitsResponses);
|
||||
|
||||
} else {
|
||||
FilterThrCorpRequest filterThrCorpRequest = new FilterThrCorpRequest();
|
||||
BeanUtils.copyProperties(unitMaintainFilterRequest, filterThrCorpRequest);
|
||||
filterThrCorpRequest.setThirdSysFk(unitMaintainFilterRequest.getThirdSys());
|
||||
filterThrCorpRequest.setPage(null);
|
||||
List<ThrCorpEntity> thrCorpEntities = thrCorpService.filterThrCorps(filterThrCorpRequest);
|
||||
List<ErpUnitsResponse> lists = thrCorpEntities.stream().map(
|
||||
item -> {
|
||||
ErpUnitsResponse thrProductsEntity = new ErpUnitsResponse();
|
||||
BeanUtils.copyProperties(item, thrProductsEntity);
|
||||
return thrProductsEntity;
|
||||
}
|
||||
).collect(Collectors.toList());
|
||||
imports.addAll(lists);
|
||||
}
|
||||
if (imports != null && imports.size() > 0) {
|
||||
for (ErpUnitsResponse erpUnitsResponse : imports) {
|
||||
BasicUnitMaintainEntity basicUnitMaintainEntity = new BasicUnitMaintainEntity();
|
||||
if (unitMaintainFilterRequest.getThirdSys() != null) {
|
||||
if ("thirdId".equals(unitMaintainFilterRequest.getThirdSys())) {
|
||||
basicUnitMaintainEntity.setThirdId(erpUnitsResponse.getId());
|
||||
basicUnitMaintainEntity.setThirdName(erpUnitsResponse.getName());
|
||||
} else if ("thirdId1".equals(unitMaintainFilterRequest.getThirdSys())) {
|
||||
basicUnitMaintainEntity.setThirdId1(erpUnitsResponse.getId());
|
||||
basicUnitMaintainEntity.setThirdName1(erpUnitsResponse.getName());
|
||||
} else if ("thirdId2".equals(unitMaintainFilterRequest.getThirdSys())) {
|
||||
basicUnitMaintainEntity.setThirdId2(erpUnitsResponse.getId());
|
||||
basicUnitMaintainEntity.setThirdName2(erpUnitsResponse.getName());
|
||||
} else if ("thirdId3".equals(unitMaintainFilterRequest.getThirdSys())) {
|
||||
basicUnitMaintainEntity.setThirdId3(erpUnitsResponse.getId());
|
||||
basicUnitMaintainEntity.setThirdName3(erpUnitsResponse.getName());
|
||||
} else if ("thirdId4".equals(unitMaintainFilterRequest.getThirdSys())) {
|
||||
basicUnitMaintainEntity.setThirdId4(erpUnitsResponse.getId());
|
||||
basicUnitMaintainEntity.setThirdName4(erpUnitsResponse.getName());
|
||||
}
|
||||
}
|
||||
basicUnitMaintainEntity.setErpId(CustomUtil.getId());
|
||||
basicUnitMaintainEntity.setName(erpUnitsResponse.getName());
|
||||
basicUnitMaintainEntity.setSpell(erpUnitsResponse.getSpell());
|
||||
basicUnitMaintainEntity.setAddr(erpUnitsResponse.getAddr());
|
||||
basicUnitMaintainEntity.setCreditNo(erpUnitsResponse.getCreditNo());
|
||||
basicUnitMaintainEntity.setContact(erpUnitsResponse.getContact());
|
||||
basicUnitMaintainEntity.setMobile(erpUnitsResponse.getMobile());
|
||||
basicUnitMaintainService.insertBasicUnitMaintain(basicUnitMaintainEntity);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,293 @@
|
||||
package com.glxp.api.admin.thread;
|
||||
|
||||
import com.alibaba.fastjson.JSONObject;
|
||||
import com.alibaba.fastjson.TypeReference;
|
||||
import com.glxp.api.admin.entity.basic.BasicThirdSysDetailEntity;
|
||||
import com.glxp.api.admin.entity.basic.UdiEntity;
|
||||
import com.glxp.api.admin.entity.basic.UdiInfoEntity;
|
||||
import com.glxp.api.admin.entity.basic.UdiRelevanceEntity;
|
||||
import com.glxp.api.admin.entity.info.SystemParamConfigEntity;
|
||||
import com.glxp.api.admin.entity.thrsys.ThrProductsEntity;
|
||||
import com.glxp.api.admin.httpclient.ErpBasicClient;
|
||||
import com.glxp.api.admin.httpclient.ErpInvClient;
|
||||
import com.glxp.api.admin.req.basic.CombineRequest;
|
||||
import com.glxp.api.admin.req.basic.FilterErpGoodsRequest;
|
||||
import com.glxp.api.admin.req.basic.FilterUdiInfoRequest;
|
||||
import com.glxp.api.admin.req.inventory.ErpOnhandRequest;
|
||||
import com.glxp.api.admin.req.thrsys.FilterThrProductsRequest;
|
||||
import com.glxp.api.admin.res.PageSimpleResponse;
|
||||
import com.glxp.api.admin.res.basic.ErpProductsResponse;
|
||||
import com.glxp.api.admin.res.inventory.ErpInvProductResponse;
|
||||
import com.glxp.api.admin.service.basic.BasicThirdSysDetailService;
|
||||
import com.glxp.api.admin.service.basic.UdiInfoService;
|
||||
import com.glxp.api.admin.service.basic.UdiRelevanceService;
|
||||
import com.glxp.api.admin.service.info.SystemParamConfigService;
|
||||
import com.glxp.api.admin.service.thrsys.ThrProductsService;
|
||||
import com.glxp.api.admin.util.CustomUtil;
|
||||
import com.glxp.api.admin.util.DateUtil;
|
||||
import com.glxp.api.admin.util.FilterUdiUtils;
|
||||
import com.glxp.api.admin.util.HttpClient;
|
||||
import com.glxp.api.common.res.BaseResponse;
|
||||
import com.glxp.api.common.util.ResultVOUtils;
|
||||
import org.springframework.beans.BeanUtils;
|
||||
import org.springframework.beans.factory.annotation.Value;
|
||||
import org.springframework.scheduling.annotation.Async;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
import java.util.ArrayList;
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
@Service
|
||||
public class BasicUpdateProductService {
|
||||
|
||||
@Value("${UDI_SERVER_URL}")
|
||||
private String udiUrl;
|
||||
|
||||
@Resource
|
||||
UdiRelevanceService udiRelevanceService;
|
||||
@Resource
|
||||
UdiInfoService udiInfoService;
|
||||
@Resource
|
||||
ThrProductsService thrProductsService;
|
||||
@Resource
|
||||
SystemParamConfigService systemParamConfigService;
|
||||
@Resource
|
||||
BasicThirdSysDetailService basicThirdSysDetailService;
|
||||
|
||||
|
||||
public String addProduct(CombineRequest combineRequest, String url) {
|
||||
String errMsg = null;
|
||||
List<String> inventoryCodes = new ArrayList<>();
|
||||
if (combineRequest.getThirdIds() == null)
|
||||
inventoryCodes.add(combineRequest.getThirdId());
|
||||
else {
|
||||
inventoryCodes = combineRequest.getThirdIds();
|
||||
}
|
||||
if (inventoryCodes.size() > 0) {
|
||||
for (String inventoryCode : inventoryCodes) {
|
||||
UdiRelevanceEntity udiRelevanceEntity1 = new UdiRelevanceEntity();
|
||||
udiRelevanceEntity1.setThirdId(inventoryCode);
|
||||
FilterErpGoodsRequest filterErpGoodsRequest = new FilterErpGoodsRequest();
|
||||
filterErpGoodsRequest.setCode(inventoryCode);
|
||||
filterErpGoodsRequest.setPage(1);
|
||||
filterErpGoodsRequest.setLimit(1);
|
||||
BaseResponse<PageSimpleResponse<ErpProductsResponse>> erpProducts = new ErpBasicClient().getErpProducts(filterErpGoodsRequest, url);
|
||||
List<ErpProductsResponse> erpProductsResponses = erpProducts.getData().getList();
|
||||
if (erpProductsResponses != null & erpProductsResponses.size() > 0) {
|
||||
if (combineRequest.getIsRlInv() != null && combineRequest.getIsRlInv()) {
|
||||
BasicThirdSysDetailEntity basicThirdSysDetailEntity = basicThirdSysDetailService.selectByKey("piQueryUrl", combineRequest.getThirdSys());
|
||||
if (basicThirdSysDetailEntity.getFromType() == 0) {
|
||||
BasicThirdSysDetailEntity inQuery = basicThirdSysDetailService.selectByKey("invPiUrl", combineRequest.getThirdSys());
|
||||
ErpOnhandRequest erpOnhandRequest = new ErpOnhandRequest();
|
||||
erpOnhandRequest.setInventoryCodes(inventoryCodes);
|
||||
List<ErpInvProductResponse> erpOnHandResponses = new ErpInvClient().getInvPrdoduct(erpOnhandRequest, inQuery.getValue());
|
||||
if (erpOnHandResponses != null && erpOnHandResponses.size() > 0) {
|
||||
ErpInvProductResponse erpInvProductResponse = erpOnHandResponses.get(0);
|
||||
Map<String, ErpProductsResponse> erpProductsMap = new HashMap<>();
|
||||
erpProductsMap.put(erpInvProductResponse.getCode(), erpProductsResponses.get(0));
|
||||
addRl(erpInvProductResponse, combineRequest.getThirdSys(), erpProductsMap);
|
||||
} else {
|
||||
errMsg = "部分未找到库存信息无法添加!";
|
||||
}
|
||||
} else {
|
||||
FilterThrProductsRequest filterThrInvProductsRequest = new FilterThrProductsRequest();
|
||||
filterThrInvProductsRequest.setCode(inventoryCode);
|
||||
List<ThrProductsEntity> thrProductsEntities = thrProductsService.filterThrProductsRequest(filterThrInvProductsRequest);
|
||||
if (thrProductsEntities != null && thrProductsEntities.size() > 0) {
|
||||
for (ThrProductsEntity thrProductsEntity : thrProductsEntities) {
|
||||
UdiInfoEntity udiInfoEntity = new UdiInfoEntity();
|
||||
udiInfoEntity.setNameCode(thrProductsEntity.getCode());
|
||||
udiInfoEntity.setCpmctymc(thrProductsEntity.getName());
|
||||
udiInfoEntity.setGgxh(thrProductsEntity.getSpec());
|
||||
udiInfoEntity.setUuid(CustomUtil.getUUId());
|
||||
udiInfoEntity.setDiType(1);
|
||||
udiInfoEntity.setManufactory(thrProductsEntity.getManufactory());
|
||||
udiInfoEntity.setYlqxzcrbarmc(thrProductsEntity.getManufactory());
|
||||
udiInfoEntity.setZczbhhzbapzbh(thrProductsEntity.getRegisterNo());
|
||||
udiInfoService.insertUdiInfo(udiInfoEntity);
|
||||
UdiRelevanceEntity udiRelevanceEntity2 = new UdiRelevanceEntity();
|
||||
udiRelevanceEntity2.setUuid(udiInfoEntity.getUuid());
|
||||
|
||||
|
||||
if ("thirdId".equals(combineRequest.getThirdSys())) {
|
||||
udiRelevanceEntity2.setThirdId(thrProductsEntity.getCode());
|
||||
udiRelevanceEntity2.setThirdName(thrProductsEntity.getName());
|
||||
} else if ("thirdId1".equals(combineRequest.getThirdSys())) {
|
||||
udiRelevanceEntity2.setThirdId1(thrProductsEntity.getCode());
|
||||
udiRelevanceEntity2.setThirdName1(thrProductsEntity.getName());
|
||||
} else if ("thirdId2".equals(combineRequest.getThirdSys())) {
|
||||
udiRelevanceEntity2.setThirdId4(thrProductsEntity.getCode());
|
||||
udiRelevanceEntity2.setThirdName4(thrProductsEntity.getName());
|
||||
} else if ("thirdId3".equals(combineRequest.getThirdSys())) {
|
||||
udiRelevanceEntity2.setThirdId3(thrProductsEntity.getCode());
|
||||
udiRelevanceEntity2.setThirdName3(thrProductsEntity.getName());
|
||||
} else if ("thirdId4".equals(combineRequest.getThirdSys())) {
|
||||
udiRelevanceEntity2.setThirdId4(thrProductsEntity.getCode());
|
||||
udiRelevanceEntity2.setThirdName4(thrProductsEntity.getName());
|
||||
}
|
||||
|
||||
udiRelevanceEntity2.setThirdId(thrProductsEntity.getCode());
|
||||
udiRelevanceEntity2.setThirdName(thrProductsEntity.getName());
|
||||
udiRelevanceEntity2.setUpdateTime(DateUtil.getDateTime());
|
||||
udiRelevanceService.insertUdiRelevance(udiRelevanceEntity2);
|
||||
}
|
||||
} else {
|
||||
errMsg = "部分未找到库存信息无法添加!";
|
||||
}
|
||||
}
|
||||
} else {
|
||||
ErpProductsResponse erpProductsResponse = erpProductsResponses.get(0);
|
||||
UdiInfoEntity udiInfoEntity = new UdiInfoEntity();
|
||||
BeanUtils.copyProperties(erpProductsResponse, udiInfoEntity);
|
||||
udiInfoEntity.setNameCode(erpProductsResponse.getCode());
|
||||
udiInfoEntity.setCpmctymc(erpProductsResponse.getName());
|
||||
udiInfoEntity.setManufactory(erpProductsResponse.getManufactory());
|
||||
udiInfoEntity.setYlqxzcrbarmc(erpProductsResponse.getManufactory());
|
||||
udiInfoEntity.setGgxh(erpProductsResponse.getSpec());
|
||||
udiInfoEntity.setZczbhhzbapzbh(erpProductsResponse.getRegisterNo());
|
||||
udiInfoEntity.setUuid(CustomUtil.getUUId());
|
||||
udiInfoEntity.setDiType(1);
|
||||
udiInfoService.insertUdiInfo(udiInfoEntity);
|
||||
udiRelevanceEntity1.setUuid(udiInfoEntity.getUuid());
|
||||
udiRelevanceEntity1.setThirdName(erpProductsResponse.getName());
|
||||
udiRelevanceEntity1.setUpdateTime(DateUtil.getDateTime());
|
||||
udiRelevanceService.insertUdiRelevance(udiRelevanceEntity1);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
return errMsg;
|
||||
}
|
||||
|
||||
public void addRl(ErpInvProductResponse onhandQueryResponse, String
|
||||
thirdSysId, Map<String, ErpProductsResponse> erpProductsMap) {
|
||||
UdiInfoEntity udiInfoEntity = new UdiInfoEntity();
|
||||
udiInfoEntity.setNameCode(onhandQueryResponse.getCode());
|
||||
udiInfoEntity.setCpmctymc(onhandQueryResponse.getName());
|
||||
udiInfoEntity.setGgxh(onhandQueryResponse.getSpec());
|
||||
udiInfoEntity.setUuid(CustomUtil.getUUId());
|
||||
udiInfoEntity.setDiType(1);
|
||||
udiInfoEntity.setManufactory(erpProductsMap.get(onhandQueryResponse.getCode()).getManufactory());
|
||||
udiInfoEntity.setYlqxzcrbarmc(erpProductsMap.get(onhandQueryResponse.getCode()).getManufactory());
|
||||
udiInfoEntity.setZczbhhzbapzbh(erpProductsMap.get(onhandQueryResponse.getCode()).getRegisterNo());
|
||||
udiInfoService.insertUdiInfo(udiInfoEntity);
|
||||
UdiRelevanceEntity udiRelevanceEntity1 = new UdiRelevanceEntity();
|
||||
udiRelevanceEntity1.setUuid(udiInfoEntity.getUuid());
|
||||
|
||||
if ("thirdId".equals(thirdSysId)) {
|
||||
udiRelevanceEntity1.setThirdId(onhandQueryResponse.getCode());
|
||||
udiRelevanceEntity1.setThirdName(onhandQueryResponse.getName());
|
||||
} else if ("thirdId1".equals(thirdSysId)) {
|
||||
udiRelevanceEntity1.setThirdId1(onhandQueryResponse.getCode());
|
||||
udiRelevanceEntity1.setThirdName1(onhandQueryResponse.getName());
|
||||
} else if ("thirdId2".equals(thirdSysId)) {
|
||||
udiRelevanceEntity1.setThirdId4(onhandQueryResponse.getCode());
|
||||
udiRelevanceEntity1.setThirdName4(onhandQueryResponse.getName());
|
||||
} else if ("thirdId3".equals(thirdSysId)) {
|
||||
udiRelevanceEntity1.setThirdId3(onhandQueryResponse.getCode());
|
||||
udiRelevanceEntity1.setThirdName3(onhandQueryResponse.getName());
|
||||
} else if ("thirdId4".equals(thirdSysId)) {
|
||||
udiRelevanceEntity1.setThirdId4(onhandQueryResponse.getCode());
|
||||
udiRelevanceEntity1.setThirdName4(onhandQueryResponse.getName());
|
||||
}
|
||||
|
||||
udiRelevanceEntity1.setThirdId(onhandQueryResponse.getCode());
|
||||
udiRelevanceEntity1.setThirdName(onhandQueryResponse.getName());
|
||||
udiRelevanceEntity1.setUpdateTime(DateUtil.getDateTime());
|
||||
udiRelevanceService.insertUdiRelevance(udiRelevanceEntity1);
|
||||
}
|
||||
|
||||
|
||||
//选入查询结果的所有DI
|
||||
@Async
|
||||
public void relAllUdi(FilterUdiInfoRequest productInfoFilterRequest) {
|
||||
int page = 1;
|
||||
int limit = 100;
|
||||
while (true) {
|
||||
productInfoFilterRequest.setPage(page);
|
||||
productInfoFilterRequest.setLimit(limit);
|
||||
List<UdiInfoEntity> udiInfoEntities = getUdiInfoEntity(productInfoFilterRequest);
|
||||
if (udiInfoEntities != null && udiInfoEntities.size() > 0) {
|
||||
udiInfoService.insertUdiInfos(udiInfoEntities);
|
||||
for (UdiInfoEntity udiInfoEntity : udiInfoEntities) {
|
||||
UdiRelevanceEntity udiRelevanceEntity = new UdiRelevanceEntity();
|
||||
udiRelevanceEntity.setUpdateTime(DateUtil.getDateTime());
|
||||
udiRelevanceEntity.setUuid(udiInfoEntity.getUuid());
|
||||
List<UdiRelevanceEntity> udiRelevanceEntities = udiRelevanceService.selectByUuid(udiInfoEntity.getUuid());
|
||||
if (udiRelevanceEntities != null && udiRelevanceEntities.size() > 0) {
|
||||
boolean isAdd = false;
|
||||
for (UdiRelevanceEntity udiRelevanceEntity1 : udiRelevanceEntities) {
|
||||
if (udiRelevanceEntity1.getThirdId() == null &&
|
||||
udiRelevanceEntity1.getThirdId2() == null && udiRelevanceEntity1.getThirdId1() == null &&
|
||||
udiRelevanceEntity1.getThirdId3() == null && udiRelevanceEntity1.getThirdId4() == null) {
|
||||
//不能添加
|
||||
isAdd = false;
|
||||
break;
|
||||
} else {
|
||||
isAdd = true;
|
||||
}
|
||||
}
|
||||
if (isAdd)
|
||||
udiRelevanceService.insertUdiRelevance(udiRelevanceEntity);
|
||||
|
||||
} else {
|
||||
udiRelevanceService.insertUdiRelevance(udiRelevanceEntity);
|
||||
}
|
||||
}
|
||||
if (udiInfoEntities.size() < limit) {
|
||||
break;
|
||||
} else {
|
||||
page++;
|
||||
}
|
||||
} else {
|
||||
break;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
public List<UdiInfoEntity> getUdiInfoEntity(FilterUdiInfoRequest productInfoFilterRequest) {
|
||||
String nameCode = null;
|
||||
if (productInfoFilterRequest.getNameCode() != null) {
|
||||
UdiEntity udiEntity = FilterUdiUtils.getUdi(productInfoFilterRequest.getNameCode());
|
||||
if (udiEntity != null) {
|
||||
nameCode = udiEntity.getUdi();
|
||||
} else {
|
||||
nameCode = productInfoFilterRequest.getNameCode();
|
||||
}
|
||||
}
|
||||
Map<String, Object> paramMap = new HashMap<>(16);
|
||||
paramMap.put("page", productInfoFilterRequest.getPage());
|
||||
paramMap.put("limit", productInfoFilterRequest.getLimit());
|
||||
paramMap.put("ylqxzcrbarmc", productInfoFilterRequest.getYlqxzcrbarmc());
|
||||
paramMap.put("cpmctymc", productInfoFilterRequest.getCpmctymc());
|
||||
paramMap.put("nameCode", nameCode);
|
||||
paramMap.put("ggxh", productInfoFilterRequest.getGgxh());
|
||||
paramMap.put("zczbhhzbapzbh", productInfoFilterRequest.getZczbhhzbapzbh());
|
||||
paramMap.put("uuid", productInfoFilterRequest.getUuid());
|
||||
|
||||
String response = HttpClient.mipsGet(udiUrl + "/udidl/device/filterUdi", paramMap);
|
||||
try {
|
||||
|
||||
BaseResponse<PageSimpleResponse<UdiInfoEntity>> udiDlDeviceResponse =
|
||||
JSONObject.parseObject(response, new TypeReference<BaseResponse<PageSimpleResponse<UdiInfoEntity>>>() {
|
||||
|
||||
});
|
||||
if (udiDlDeviceResponse != null) {
|
||||
List<UdiInfoEntity> udiInfoEntities = udiDlDeviceResponse.getData().getList();
|
||||
return udiInfoEntities;
|
||||
}
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
return null;
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
}
|
@ -1,214 +0,0 @@
|
||||
package com.glxp.api.admin.thread;
|
||||
|
||||
import com.glxp.api.admin.entity.basic.UdiInfoEntity;
|
||||
import com.glxp.api.admin.entity.basic.UdiRelevanceEntity;
|
||||
import com.glxp.api.admin.entity.thrsys.ThrProductsEntity;
|
||||
import com.glxp.api.admin.httpclient.ErpBasicClient;
|
||||
import com.glxp.api.admin.httpclient.ErpInvClient;
|
||||
import com.glxp.api.admin.req.basic.CombineRequest;
|
||||
import com.glxp.api.admin.req.basic.FilterErpGoodsRequest;
|
||||
import com.glxp.api.admin.req.inventory.ErpOnhandRequest;
|
||||
import com.glxp.api.admin.req.thrsys.FilterThrProductsRequest;
|
||||
import com.glxp.api.admin.res.PageSimpleResponse;
|
||||
import com.glxp.api.admin.res.basic.ErpProductsResponse;
|
||||
import com.glxp.api.admin.res.inventory.ErpInvProductResponse;
|
||||
import com.glxp.api.admin.res.inventory.ErpOnHandResponse;
|
||||
import com.glxp.api.admin.service.basic.UdiInfoService;
|
||||
import com.glxp.api.admin.service.basic.UdiRelevanceService;
|
||||
import com.glxp.api.admin.service.thrsys.ThrProductsService;
|
||||
import com.glxp.api.admin.util.CustomUtil;
|
||||
import com.glxp.api.admin.util.DateUtil;
|
||||
import com.glxp.api.common.res.BaseResponse;
|
||||
import org.springframework.beans.BeanUtils;
|
||||
import org.springframework.beans.factory.annotation.Value;
|
||||
import org.springframework.scheduling.annotation.Async;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
import java.util.stream.Collectors;
|
||||
|
||||
@Service
|
||||
public class BasicUpdateproductService {
|
||||
@Resource
|
||||
UdiRelevanceService udiRelevanceService;
|
||||
@Resource
|
||||
UdiInfoService udiInfoService;
|
||||
@Resource
|
||||
ThrProductsService thrProductsService;
|
||||
|
||||
@Async
|
||||
public void updateProduct(String productUrl, String onHandUrl, String thirdSysId) {
|
||||
int page = 1;
|
||||
int limit = 100;
|
||||
while (page != -1) {
|
||||
page = getInvmandoc(null, page, limit, productUrl, onHandUrl, thirdSysId);
|
||||
}
|
||||
}
|
||||
|
||||
public void addProduct(CombineRequest combineRequest, String url) {
|
||||
List<String> inventoryCodes = new ArrayList<>();
|
||||
inventoryCodes.add(combineRequest.getThirdId());
|
||||
if (inventoryCodes.size() > 0) {
|
||||
UdiRelevanceEntity udiRelevanceEntity1 = new UdiRelevanceEntity();
|
||||
udiRelevanceEntity1.setThirdId(combineRequest.getThirdId());
|
||||
udiRelevanceEntity1.setThirdName(combineRequest.getErpName());
|
||||
|
||||
FilterErpGoodsRequest filterErpGoodsRequest = new FilterErpGoodsRequest();
|
||||
filterErpGoodsRequest.setCode(combineRequest.getThirdId());
|
||||
filterErpGoodsRequest.setPage(1);
|
||||
filterErpGoodsRequest.setLimit(1);
|
||||
BaseResponse<PageSimpleResponse<ErpProductsResponse>> erpProducts = new ErpBasicClient().getErpProducts(filterErpGoodsRequest, url);
|
||||
List<ErpProductsResponse> erpProductsResponses = erpProducts.getData().getList();
|
||||
if (erpProductsResponses != null & erpProductsResponses.size() > 0) {
|
||||
ErpProductsResponse erpProductsResponse = erpProductsResponses.get(0);
|
||||
UdiInfoEntity udiInfoEntity = new UdiInfoEntity();
|
||||
BeanUtils.copyProperties(erpProductsResponse, udiInfoEntity);
|
||||
// udiInfoEntity.setNameCode(erpProductsResponse.getCode());
|
||||
udiInfoEntity.setCpmctymc(erpProductsResponse.getName());
|
||||
udiInfoEntity.setGgxh(erpProductsResponse.getSpec());
|
||||
udiInfoEntity.setZczbhhzbapzbh(erpProductsResponse.getRegisterNo());
|
||||
udiInfoEntity.setUuid(CustomUtil.getUUId());
|
||||
udiInfoService.insertUdiInfo(udiInfoEntity);
|
||||
udiRelevanceEntity1.setUuid(udiInfoEntity.getUuid());
|
||||
udiRelevanceEntity1.setUpdateTime(DateUtil.getDateTime());
|
||||
|
||||
}
|
||||
udiRelevanceService.insertUdiRelevance(udiRelevanceEntity1);
|
||||
}
|
||||
}
|
||||
|
||||
@Async
|
||||
public void loadLocal(String thirdSysId) {
|
||||
FilterThrProductsRequest filterThrInvProductsRequest = new FilterThrProductsRequest();
|
||||
List<ThrProductsEntity> thrProductsEntities = thrProductsService.filterThrProductsRequest(filterThrInvProductsRequest);
|
||||
if (thrProductsEntities != null && thrProductsEntities.size() > 0) {
|
||||
for (ThrProductsEntity thrProductsEntity : thrProductsEntities) {
|
||||
UdiInfoEntity udiInfoEntity = new UdiInfoEntity();
|
||||
udiInfoEntity.setNameCode(thrProductsEntity.getCode());
|
||||
udiInfoEntity.setCpmctymc(thrProductsEntity.getName());
|
||||
udiInfoEntity.setGgxh(thrProductsEntity.getSpec());
|
||||
udiInfoEntity.setUuid(CustomUtil.getUUId());
|
||||
udiInfoEntity.setYlqxzcrbarmc(thrProductsEntity.getManufactory());
|
||||
udiInfoEntity.setZczbhhzbapzbh(thrProductsEntity.getRegisterNo());
|
||||
udiInfoService.insertUdiInfo(udiInfoEntity);
|
||||
UdiRelevanceEntity udiRelevanceEntity1 = new UdiRelevanceEntity();
|
||||
udiRelevanceEntity1.setUuid(udiInfoEntity.getUuid());
|
||||
|
||||
|
||||
if ("thirdId".equals(thirdSysId)) {
|
||||
udiRelevanceEntity1.setThirdId(thrProductsEntity.getCode());
|
||||
udiRelevanceEntity1.setThirdName(thrProductsEntity.getName());
|
||||
} else if ("thirdId1".equals(thirdSysId)) {
|
||||
udiRelevanceEntity1.setThirdId1(thrProductsEntity.getCode());
|
||||
udiRelevanceEntity1.setThirdName1(thrProductsEntity.getName());
|
||||
} else if ("thirdId2".equals(thirdSysId)) {
|
||||
udiRelevanceEntity1.setThirdId4(thrProductsEntity.getCode());
|
||||
udiRelevanceEntity1.setThirdName4(thrProductsEntity.getName());
|
||||
} else if ("thirdId3".equals(thirdSysId)) {
|
||||
udiRelevanceEntity1.setThirdId3(thrProductsEntity.getCode());
|
||||
udiRelevanceEntity1.setThirdName3(thrProductsEntity.getName());
|
||||
} else if ("thirdId4".equals(thirdSysId)) {
|
||||
udiRelevanceEntity1.setThirdId4(thrProductsEntity.getCode());
|
||||
udiRelevanceEntity1.setThirdName4(thrProductsEntity.getName());
|
||||
}
|
||||
|
||||
udiRelevanceEntity1.setThirdId(thrProductsEntity.getCode());
|
||||
udiRelevanceEntity1.setThirdName(thrProductsEntity.getName());
|
||||
udiRelevanceEntity1.setUpdateTime(DateUtil.getDateTime());
|
||||
udiRelevanceService.insertUdiRelevance(udiRelevanceEntity1);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
public int getInvmandoc(String invcode, int page, int limit, String productUrl, String onHandUrl, String thirdSysId) {
|
||||
|
||||
FilterErpGoodsRequest filterErpGoodsRequest = new FilterErpGoodsRequest();
|
||||
filterErpGoodsRequest.setPage(page);
|
||||
filterErpGoodsRequest.setLimit(limit);
|
||||
if (invcode != null) {
|
||||
filterErpGoodsRequest.setCode(invcode);
|
||||
}
|
||||
BaseResponse<PageSimpleResponse<ErpProductsResponse>> erpProducts = new ErpBasicClient().getErpProducts(filterErpGoodsRequest, productUrl);
|
||||
List<ErpProductsResponse> invmandocResponses = erpProducts.getData().getList();
|
||||
if (invmandocResponses != null && invmandocResponses.size() > 0) {
|
||||
List<String> inventoryCodes = new ArrayList<>();
|
||||
if (invcode != null) {
|
||||
inventoryCodes.add(invcode);
|
||||
} else {
|
||||
for (ErpProductsResponse invmandocResponse : invmandocResponses) {
|
||||
UdiRelevanceEntity udiRelevanceEntity = udiRelevanceService.selectByThirdId(invmandocResponse.getCode(), thirdSysId);
|
||||
if (udiRelevanceEntity == null) {
|
||||
inventoryCodes.add(invmandocResponse.getCode());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (inventoryCodes.size() > 0) {
|
||||
|
||||
ErpOnhandRequest erpOnhandRequest = new ErpOnhandRequest();
|
||||
erpOnhandRequest.setInventoryCodes(inventoryCodes);
|
||||
List<ErpInvProductResponse> erpOnHandResponses = new ErpInvClient().getInvPrdoduct(erpOnhandRequest, onHandUrl);
|
||||
if (erpOnHandResponses != null) {
|
||||
Map<String, List<ErpInvProductResponse>> map = erpOnHandResponses.stream().collect(Collectors.groupingBy(ErpInvProductResponse::getCode));
|
||||
for (List<ErpInvProductResponse> onHandResponses : map.values()) {
|
||||
if (onHandResponses != null && onHandResponses.size() > 0) {
|
||||
ErpInvProductResponse onhandQueryResponse = onHandResponses.get(0);
|
||||
if (onhandQueryResponse.getCount() > 0) {
|
||||
UdiInfoEntity udiInfoEntity = new UdiInfoEntity();
|
||||
udiInfoEntity.setNameCode(onhandQueryResponse.getCode());
|
||||
udiInfoEntity.setCpmctymc(onhandQueryResponse.getName());
|
||||
udiInfoEntity.setGgxh(onhandQueryResponse.getSpec());
|
||||
udiInfoEntity.setUuid(CustomUtil.getUUId());
|
||||
udiInfoEntity.setYlqxzcrbarmc(invmandocResponses.get(0).getManufactory());
|
||||
udiInfoEntity.setZczbhhzbapzbh(invmandocResponses.get(0).getRegisterNo());
|
||||
udiInfoService.insertUdiInfo(udiInfoEntity);
|
||||
UdiRelevanceEntity udiRelevanceEntity1 = new UdiRelevanceEntity();
|
||||
udiRelevanceEntity1.setUuid(udiInfoEntity.getUuid());
|
||||
|
||||
if ("thirdId".equals(thirdSysId)) {
|
||||
udiRelevanceEntity1.setThirdId(onhandQueryResponse.getCode());
|
||||
udiRelevanceEntity1.setThirdName(onhandQueryResponse.getName());
|
||||
} else if ("thirdId1".equals(thirdSysId)) {
|
||||
udiRelevanceEntity1.setThirdId1(onhandQueryResponse.getCode());
|
||||
udiRelevanceEntity1.setThirdName1(onhandQueryResponse.getName());
|
||||
} else if ("thirdId2".equals(thirdSysId)) {
|
||||
udiRelevanceEntity1.setThirdId4(onhandQueryResponse.getCode());
|
||||
udiRelevanceEntity1.setThirdName4(onhandQueryResponse.getName());
|
||||
} else if ("thirdId3".equals(thirdSysId)) {
|
||||
udiRelevanceEntity1.setThirdId3(onhandQueryResponse.getCode());
|
||||
udiRelevanceEntity1.setThirdName3(onhandQueryResponse.getName());
|
||||
} else if ("thirdId4".equals(thirdSysId)) {
|
||||
udiRelevanceEntity1.setThirdId4(onhandQueryResponse.getCode());
|
||||
udiRelevanceEntity1.setThirdName4(onhandQueryResponse.getName());
|
||||
}
|
||||
|
||||
udiRelevanceEntity1.setThirdId(onhandQueryResponse.getCode());
|
||||
udiRelevanceEntity1.setThirdName(onhandQueryResponse.getName());
|
||||
udiRelevanceEntity1.setUpdateTime(DateUtil.getDateTime());
|
||||
udiRelevanceService.insertUdiRelevance(udiRelevanceEntity1);
|
||||
}
|
||||
}
|
||||
}
|
||||
} else {
|
||||
UdiRelevanceEntity udiRelevanceEntity1 = new UdiRelevanceEntity();
|
||||
udiRelevanceEntity1.setThirdId(invcode);
|
||||
udiRelevanceEntity1.setThirdName(invmandocResponses.get(0).getName());
|
||||
udiRelevanceEntity1.setUpdateTime(DateUtil.getDateTime());
|
||||
udiRelevanceService.insertUdiRelevance(udiRelevanceEntity1);
|
||||
}
|
||||
}
|
||||
page++;
|
||||
if (page * limit < erpProducts.getData().getTotal()) {
|
||||
return page;
|
||||
}
|
||||
} else {
|
||||
return -1;
|
||||
}
|
||||
|
||||
return -1;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue