|
|
|
@ -1,6 +1,9 @@
|
|
|
|
|
package com.glxp.udidl.admin.service.dataUpdate;
|
|
|
|
|
|
|
|
|
|
import cn.hutool.core.util.StrUtil;
|
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
|
|
import com.glxp.udidl.admin.dao.udi.ProductInfoMapper;
|
|
|
|
|
import com.glxp.udidl.admin.dao.udid.DeviceMapper;
|
|
|
|
|
import com.glxp.udidl.admin.entity.udi.CountProductEntity;
|
|
|
|
|
import com.glxp.udidl.admin.entity.udi.ProductClassify;
|
|
|
|
|
import com.glxp.udidl.admin.entity.udi.ProductInfoEntity;
|
|
|
|
@ -30,11 +33,15 @@ public class DeviceParseService {
|
|
|
|
|
@Resource
|
|
|
|
|
private DeviceService deviceService;
|
|
|
|
|
@Resource
|
|
|
|
|
ProductClassifyService productClassifyService;
|
|
|
|
|
private ProductClassifyService productClassifyService;
|
|
|
|
|
@Resource
|
|
|
|
|
ProductInfoService productInfoService;
|
|
|
|
|
private ProductInfoService productInfoService;
|
|
|
|
|
@Resource
|
|
|
|
|
UdiCompanyService udiCompanyService;
|
|
|
|
|
private UdiCompanyService udiCompanyService;
|
|
|
|
|
@Resource
|
|
|
|
|
private DeviceMapper deviceMapper;
|
|
|
|
|
@Resource
|
|
|
|
|
private ProductInfoMapper productInfoMapper;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 存储设备信息
|
|
|
|
@ -50,11 +57,13 @@ public class DeviceParseService {
|
|
|
|
|
List<DataSetResult.PackingInfo> packingInfoAll = ds.getPackingInfo();
|
|
|
|
|
|
|
|
|
|
for (DataSetResult.DeviceInfo item : ds.getDeviceInfo()) {
|
|
|
|
|
//1:判断数据是否存在
|
|
|
|
|
if (StrUtil.isNotEmpty(deviceService.selectDiIsSame(item.getZxxsdycpbs(), item.getVersionNumber() + "")))
|
|
|
|
|
continue;
|
|
|
|
|
//1:不判断数据是否存在,直接以当前拉取到的最新数据进行更新
|
|
|
|
|
String uuid = deviceService.selectDiIsSame(item.getZxxsdycpbs(), item.getVersionNumber() + "");
|
|
|
|
|
//此版本数据存在,使用当前数据库存在的数据的ID进行更新
|
|
|
|
|
Device device = responseToDevice(item);
|
|
|
|
|
String uuid = getUUId();
|
|
|
|
|
if (StrUtil.isBlank(uuid)) {
|
|
|
|
|
uuid = getUUId();
|
|
|
|
|
}
|
|
|
|
|
Boolean isHistory = false;
|
|
|
|
|
if (item.getDeviceHistoryKey() != null && !item.getDeviceHistoryKey().isEmpty()) {
|
|
|
|
|
isHistory = true;
|
|
|
|
@ -148,7 +157,6 @@ public class DeviceParseService {
|
|
|
|
|
}
|
|
|
|
|
deviceService.updateDevicepackage(devicepackageList);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//7存储productInfo信息
|
|
|
|
@ -280,7 +288,12 @@ public class DeviceParseService {
|
|
|
|
|
public void transUdi(String key) {
|
|
|
|
|
DeviceEntity deviceEntity = deviceService.searchById(key);
|
|
|
|
|
String di = deviceEntity.getZxxsdycpbs();
|
|
|
|
|
//查询产品表的数据ID
|
|
|
|
|
ProductInfoEntity oldData = productInfoMapper.selectOne(new QueryWrapper<ProductInfoEntity>().select("id").eq("uuid", key).eq("nameCode", deviceEntity.getZxxsdycpbs()));
|
|
|
|
|
ProductInfoEntity productInfoEntity = new ProductInfoEntity();
|
|
|
|
|
if (null != oldData) {
|
|
|
|
|
productInfoEntity.setId(oldData.getId());
|
|
|
|
|
}
|
|
|
|
|
org.springframework.beans.BeanUtils.copyProperties(deviceEntity, productInfoEntity);
|
|
|
|
|
productInfoEntity.setUuid(key);
|
|
|
|
|
productInfoEntity.setDeviceRecordKey(deviceEntity.getDevicerecordkey());
|
|
|
|
@ -355,7 +368,7 @@ public class DeviceParseService {
|
|
|
|
|
productInfoEntity.setNameCode(deviceEntity.getSydycpbs());
|
|
|
|
|
productInfoEntity.setSjcpbm(deviceEntity.getZxxsdycpbs());
|
|
|
|
|
productInfoEntity.setUpdateTime(new Date());
|
|
|
|
|
productInfoService.insertProductInfo(productInfoEntity);
|
|
|
|
|
productInfoService.updateProductInfoData(productInfoEntity);
|
|
|
|
|
productInfoEntity.setBhxjcpbm(deviceEntity.getSydycpbs());
|
|
|
|
|
productInfoEntity.setBhxjsl(1);
|
|
|
|
|
productInfoEntity.setPackLevel(2 + "");
|
|
|
|
@ -373,7 +386,7 @@ public class DeviceParseService {
|
|
|
|
|
productInfoEntity.setSjcpbm(deviceEntity.getZxxsdycpbs());
|
|
|
|
|
productInfoEntity.setNameCode(deviceEntity.getBtcpbs());
|
|
|
|
|
productInfoEntity.setUpdateTime(new Date());
|
|
|
|
|
productInfoService.insertProductInfo(productInfoEntity);
|
|
|
|
|
productInfoService.updateProductInfoData(productInfoEntity);
|
|
|
|
|
productInfoEntity.setBhxjcpbm(deviceEntity.getBtcpbs());
|
|
|
|
|
productInfoEntity.setBhxjsl(1);
|
|
|
|
|
productInfoEntity.setPackLevel(2 + "");
|
|
|
|
@ -391,7 +404,7 @@ public class DeviceParseService {
|
|
|
|
|
List<Devicepackage> devicepackages = deviceEntity.getDevicepackages();
|
|
|
|
|
productInfoEntity.setSjcpbm(getSjcpbm(devicepackages, productInfoEntity.getNameCode()));
|
|
|
|
|
productInfoEntity.setUpdateTime(new Date());
|
|
|
|
|
productInfoService.insertProductInfo(productInfoEntity);
|
|
|
|
|
productInfoService.updateProductInfoData(productInfoEntity);
|
|
|
|
|
|
|
|
|
|
List<CountProductEntity> countProductEntities = new ArrayList<>();
|
|
|
|
|
int curLevel = Integer.parseInt(productInfoEntity.getPackLevel()) + 1;
|
|
|
|
@ -436,7 +449,7 @@ public class DeviceParseService {
|
|
|
|
|
productInfoEntity.setSjcpbm(getSjcpbm(devicepackages, productInfoEntity.getNameCode()));
|
|
|
|
|
productInfoEntity.setDiType(4);
|
|
|
|
|
productInfoEntity.setUpdateTime(new Date());
|
|
|
|
|
productInfoService.insertProductInfo(productInfoEntity);
|
|
|
|
|
productInfoService.updateProductInfoData(productInfoEntity);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -461,7 +474,7 @@ public class DeviceParseService {
|
|
|
|
|
for (ProductInfoEntity change : temps) {
|
|
|
|
|
change.setIsNewest(false);
|
|
|
|
|
change.setUpdateTime(new Date());
|
|
|
|
|
productInfoService.updateProductInfo(change);
|
|
|
|
|
productInfoService.updateProductInfoData(change);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|