|
|
@ -1,13 +1,18 @@
|
|
|
|
package com.glxp.udidl.admin.service.DataSync;
|
|
|
|
package com.glxp.udidl.admin.service.DataSync;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import cn.hutool.core.collection.CollUtil;
|
|
|
|
import com.alibaba.fastjson.JSON;
|
|
|
|
import com.alibaba.fastjson.JSON;
|
|
|
|
|
|
|
|
import com.glxp.udidl.admin.entity.udi.ProductInfoEntity;
|
|
|
|
import com.glxp.udidl.admin.entity.udid.*;
|
|
|
|
import com.glxp.udidl.admin.entity.udid.*;
|
|
|
|
|
|
|
|
import com.glxp.udidl.admin.req.ProductInfoFilterRequest;
|
|
|
|
import com.glxp.udidl.admin.res.udid.DataSetResult;
|
|
|
|
import com.glxp.udidl.admin.res.udid.DataSetResult;
|
|
|
|
import com.glxp.udidl.admin.res.udid.DataSetSingleHistoryResult;
|
|
|
|
import com.glxp.udidl.admin.res.udid.DataSetSingleHistoryResult;
|
|
|
|
import com.glxp.udidl.admin.res.udid.DataSetSingleResult;
|
|
|
|
import com.glxp.udidl.admin.res.udid.DataSetSingleResult;
|
|
|
|
import com.glxp.udidl.admin.res.udid.DataSetTotalResult;
|
|
|
|
import com.glxp.udidl.admin.res.udid.DataSetTotalResult;
|
|
|
|
|
|
|
|
import com.glxp.udidl.admin.service.inout.ProductInfoService;
|
|
|
|
import com.glxp.udidl.admin.service.udi.JobLogService;
|
|
|
|
import com.glxp.udidl.admin.service.udi.JobLogService;
|
|
|
|
import com.glxp.udidl.admin.util.DateUtil;
|
|
|
|
import com.glxp.udidl.admin.util.DateUtil;
|
|
|
|
|
|
|
|
import com.glxp.udidl.admin.util.FilterUdiUtils;
|
|
|
|
import com.glxp.udidl.common.res.BaseResponse;
|
|
|
|
import com.glxp.udidl.common.res.BaseResponse;
|
|
|
|
import com.glxp.udidl.common.util.ResultVOUtils;
|
|
|
|
import com.glxp.udidl.common.util.ResultVOUtils;
|
|
|
|
import org.springframework.beans.BeanUtils;
|
|
|
|
import org.springframework.beans.BeanUtils;
|
|
|
@ -16,6 +21,7 @@ import org.springframework.scheduling.annotation.Async;
|
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
import org.springframework.util.CollectionUtils;
|
|
|
|
import org.springframework.util.CollectionUtils;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.Date;
|
|
|
|
import java.util.Date;
|
|
|
|
import java.util.List;
|
|
|
|
import java.util.List;
|
|
|
@ -29,8 +35,10 @@ public class DeviceSyncService {
|
|
|
|
private DeviceDownloadService deviceDownloadService;
|
|
|
|
private DeviceDownloadService deviceDownloadService;
|
|
|
|
@Autowired
|
|
|
|
@Autowired
|
|
|
|
JobLogService jobLogService; //日志
|
|
|
|
JobLogService jobLogService; //日志
|
|
|
|
|
|
|
|
@Resource
|
|
|
|
|
|
|
|
ProductInfoService productInfoService;
|
|
|
|
|
|
|
|
|
|
|
|
public void downloadAndSave(String day,String downloadType){
|
|
|
|
public void downloadAndSave(String day, String downloadType) {
|
|
|
|
//1.下载唯一标识数据
|
|
|
|
//1.下载唯一标识数据
|
|
|
|
DataSetTotalResult result;
|
|
|
|
DataSetTotalResult result;
|
|
|
|
String rangeValue = "";
|
|
|
|
String rangeValue = "";
|
|
|
@ -47,9 +55,9 @@ public class DeviceSyncService {
|
|
|
|
jobLog.setMsg(result.getMsg());
|
|
|
|
jobLog.setMsg(result.getMsg());
|
|
|
|
jobLog.setCreateTime(new Date());
|
|
|
|
jobLog.setCreateTime(new Date());
|
|
|
|
jobLogService.insert(jobLog);
|
|
|
|
jobLogService.insert(jobLog);
|
|
|
|
return ;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
int insertCount = deviceSaveService.DeviceSave(result.getData(),DateUtil.parseDate(rangeValue));
|
|
|
|
int insertCount = deviceSaveService.DeviceSave(result.getData(), DateUtil.parseDate(rangeValue));
|
|
|
|
//2.下载历史记录
|
|
|
|
//2.下载历史记录
|
|
|
|
List<String> keyList = new ArrayList<String>();
|
|
|
|
List<String> keyList = new ArrayList<String>();
|
|
|
|
for (DataSetResult.DataSet ds : result.getData()) {
|
|
|
|
for (DataSetResult.DataSet ds : result.getData()) {
|
|
|
@ -69,8 +77,8 @@ public class DeviceSyncService {
|
|
|
|
List<DataSetResult.DataSet> data = result.getData();
|
|
|
|
List<DataSetResult.DataSet> data = result.getData();
|
|
|
|
data.addAll(res.getData());
|
|
|
|
data.addAll(res.getData());
|
|
|
|
result.setData(data);
|
|
|
|
result.setData(data);
|
|
|
|
int hisInsertCount = deviceSaveService.DeviceSave(res.getData(),null);
|
|
|
|
int hisInsertCount = deviceSaveService.DeviceSave(res.getData(), null);
|
|
|
|
insertCount = insertCount+hisInsertCount;
|
|
|
|
insertCount = insertCount + hisInsertCount;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
JobLog jobLog = new JobLog();
|
|
|
|
JobLog jobLog = new JobLog();
|
|
|
@ -90,7 +98,7 @@ public class DeviceSyncService {
|
|
|
|
jobLog.setTotalCount(result.getTotalRecordCount());
|
|
|
|
jobLog.setTotalCount(result.getTotalRecordCount());
|
|
|
|
jobLog.setRealCount(result.realRecordCount());
|
|
|
|
jobLog.setRealCount(result.realRecordCount());
|
|
|
|
jobLog.setInsertCount(insertCount);
|
|
|
|
jobLog.setInsertCount(insertCount);
|
|
|
|
if(result.realRecordCount() != result.getTotalRecordCount()) {
|
|
|
|
if (result.realRecordCount() != result.getTotalRecordCount()) {
|
|
|
|
jobLog.setType("warning");
|
|
|
|
jobLog.setType("warning");
|
|
|
|
jobLog.setMsg("接口总行数和实际行数不一致");
|
|
|
|
jobLog.setMsg("接口总行数和实际行数不一致");
|
|
|
|
jobLog.setCreateTime(new Date());
|
|
|
|
jobLog.setCreateTime(new Date());
|
|
|
@ -101,8 +109,10 @@ public class DeviceSyncService {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
jobLogService.insert(jobLog);
|
|
|
|
jobLogService.insert(jobLog);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* 下载1天数据,并保存
|
|
|
|
* 下载1天数据,并保存
|
|
|
|
|
|
|
|
*
|
|
|
|
* @param day
|
|
|
|
* @param day
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
/* private void downloadUdi2(String day,String downloadType) {
|
|
|
|
/* private void downloadUdi2(String day,String downloadType) {
|
|
|
@ -129,12 +139,11 @@ public class DeviceSyncService {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}*/
|
|
|
|
}*/
|
|
|
|
@Async
|
|
|
|
@Async
|
|
|
|
public void downloadUdi(String day,String downloadType){
|
|
|
|
public void downloadUdi(String day, String downloadType) {
|
|
|
|
try
|
|
|
|
try {
|
|
|
|
{
|
|
|
|
downloadAndSave(day, downloadType);
|
|
|
|
downloadAndSave(day,downloadType);
|
|
|
|
|
|
|
|
//downloadUdi2(day,downloadType);
|
|
|
|
//downloadUdi2(day,downloadType);
|
|
|
|
}catch (Exception e){
|
|
|
|
} catch (Exception e) {
|
|
|
|
e.printStackTrace();
|
|
|
|
e.printStackTrace();
|
|
|
|
JobLog jobLog = new JobLog();
|
|
|
|
JobLog jobLog = new JobLog();
|
|
|
|
jobLog.setDownloadType(downloadType);
|
|
|
|
jobLog.setDownloadType(downloadType);
|
|
|
@ -149,114 +158,149 @@ public class DeviceSyncService {
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* 手动下载
|
|
|
|
* 手动下载
|
|
|
|
|
|
|
|
*
|
|
|
|
* @param startDate
|
|
|
|
* @param startDate
|
|
|
|
* @param endDate
|
|
|
|
* @param endDate
|
|
|
|
* @return
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
@Async
|
|
|
|
@Async
|
|
|
|
public BaseResponse downloadUdi(Date startDate, Date endDate){
|
|
|
|
public BaseResponse downloadUdi(Date startDate, Date endDate) {
|
|
|
|
if(startDate.getTime() > endDate.getTime())
|
|
|
|
if (startDate.getTime() > endDate.getTime())
|
|
|
|
return ResultVOUtils.error(-1,"起始日期不能大于结束日期!");
|
|
|
|
return ResultVOUtils.error(-1, "起始日期不能大于结束日期!");
|
|
|
|
Date fdate=startDate;
|
|
|
|
Date fdate = startDate;
|
|
|
|
while (fdate.getTime()<=endDate.getTime()){
|
|
|
|
while (fdate.getTime() <= endDate.getTime()) {
|
|
|
|
String day=DateUtil.formatDate(fdate);
|
|
|
|
String day = DateUtil.formatDate(fdate);
|
|
|
|
downloadUdi(day,"manual");
|
|
|
|
downloadUdi(day, "manual");
|
|
|
|
fdate = DateUtil.addDays(fdate,1);
|
|
|
|
fdate = DateUtil.addDays(fdate, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/*for (int i=0;fdate.getTime()<=endDate.getTime();i++){
|
|
|
|
|
|
|
|
String day=DateUtil.formatDate(fdate);
|
|
|
|
|
|
|
|
downloadUdi(day,"manual");
|
|
|
|
|
|
|
|
//System.out.println(fdate);
|
|
|
|
|
|
|
|
i++;
|
|
|
|
|
|
|
|
fdate = DateUtil.addDays(fdate,1);
|
|
|
|
|
|
|
|
}*/
|
|
|
|
|
|
|
|
return ResultVOUtils.success("执行完成,详情请查看日志!");
|
|
|
|
return ResultVOUtils.success("执行完成,详情请查看日志!");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
public BaseResponse downloadByDi(String deviceId){
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public BaseResponse searchDlByDi(String deviceId) {
|
|
|
|
|
|
|
|
ProductInfoFilterRequest productInfoFilterRequest = new ProductInfoFilterRequest();
|
|
|
|
|
|
|
|
productInfoFilterRequest.setNameCode(deviceId);
|
|
|
|
|
|
|
|
List<ProductInfoEntity> productInfoEntityList = productInfoService.findAll(productInfoFilterRequest);
|
|
|
|
|
|
|
|
if (CollUtil.isEmpty(productInfoEntityList)) {
|
|
|
|
|
|
|
|
DataSetSingleResult result1 = deviceDownloadService.downloadByDi(deviceId);
|
|
|
|
|
|
|
|
if (result1.getReturnCode() != 1)
|
|
|
|
|
|
|
|
return ResultVOUtils.error(-1, result1.getReturnMsg());
|
|
|
|
|
|
|
|
List<DataSetResult.DataSet> dataSets = new ArrayList<>();
|
|
|
|
|
|
|
|
dataSets.add(result1.getDataSet());
|
|
|
|
|
|
|
|
deviceSaveService.DeviceSave(dataSets, new Date());
|
|
|
|
|
|
|
|
productInfoEntityList = productInfoService.findAll(productInfoFilterRequest);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return ResultVOUtils.success(productInfoEntityList);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void dlHistory(DataSetSingleResult result1) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
DataSetSingleHistoryResult result = new DataSetSingleHistoryResult();
|
|
|
|
|
|
|
|
result.setDataSet(result1.getDataSet());
|
|
|
|
|
|
|
|
if (result1.getDataSet().getDeviceInfo() != null && result1.getDataSet().getDeviceInfo().size() > 0) {
|
|
|
|
|
|
|
|
List<String> keyList = deviceDownloadService.getKeyList(result1.getDataSet());
|
|
|
|
|
|
|
|
if (keyList.size() > 0) {
|
|
|
|
|
|
|
|
DataSetTotalResult result2 = deviceDownloadService.getHistoryData(keyList);
|
|
|
|
|
|
|
|
result.setDataList(result2.getData());
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public BaseResponse downloadByDi(String deviceId) {
|
|
|
|
DataSetSingleResult result1 = deviceDownloadService.downloadByDi(deviceId);
|
|
|
|
DataSetSingleResult result1 = deviceDownloadService.downloadByDi(deviceId);
|
|
|
|
if(result1.getReturnCode() != 1)
|
|
|
|
if (result1.getReturnCode() != 1)
|
|
|
|
return ResultVOUtils.error(-1,result1.getReturnMsg());
|
|
|
|
return ResultVOUtils.error(-1, result1.getReturnMsg());
|
|
|
|
DataSetSingleHistoryResult result = new DataSetSingleHistoryResult();
|
|
|
|
DataSetSingleHistoryResult result = new DataSetSingleHistoryResult();
|
|
|
|
result.setDataSet(result1.getDataSet());
|
|
|
|
result.setDataSet(result1.getDataSet());
|
|
|
|
if(result1.getDataSet().getDeviceInfo() != null && result1.getDataSet().getDeviceInfo().size()>0){
|
|
|
|
if (result1.getDataSet().getDeviceInfo() != null && result1.getDataSet().getDeviceInfo().size() > 0) {
|
|
|
|
List<String> keyList = deviceDownloadService.getKeyList(result1.getDataSet());
|
|
|
|
List<String> keyList = deviceDownloadService.getKeyList(result1.getDataSet());
|
|
|
|
if(keyList.size()>0){
|
|
|
|
if (keyList.size() > 0) {
|
|
|
|
DataSetTotalResult result2 = deviceDownloadService.getHistoryData(keyList);
|
|
|
|
DataSetTotalResult result2 = deviceDownloadService.getHistoryData(keyList);
|
|
|
|
result.setDataList(result2.getData());
|
|
|
|
result.setDataList(result2.getData());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
List<DataSetResult.DataSet> dataSets = new ArrayList<>();
|
|
|
|
|
|
|
|
dataSets.add(result1.getDataSet());
|
|
|
|
|
|
|
|
deviceSaveService.DeviceSave(dataSets, new Date());
|
|
|
|
return ResultVOUtils.success(result);
|
|
|
|
return ResultVOUtils.success(result);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
public BaseResponse downloadSingle(String deviceId){
|
|
|
|
|
|
|
|
|
|
|
|
public BaseResponse downloadSingle(String deviceId) {
|
|
|
|
DataSetSingleResult res = deviceDownloadService.downloadByDi(deviceId);
|
|
|
|
DataSetSingleResult res = deviceDownloadService.downloadByDi(deviceId);
|
|
|
|
if(res.getReturnCode() != 1)
|
|
|
|
if (res.getReturnCode() != 1)
|
|
|
|
return ResultVOUtils.error(-1,res.getReturnMsg());
|
|
|
|
return ResultVOUtils.error(-1, res.getReturnMsg());
|
|
|
|
|
|
|
|
List<DataSetResult.DataSet> dataSets = new ArrayList<>();
|
|
|
|
|
|
|
|
dataSets.add(res.getDataSet());
|
|
|
|
|
|
|
|
deviceSaveService.DeviceSave(dataSets, new Date());
|
|
|
|
return ResultVOUtils.success(Convert(res.getDataSet()));
|
|
|
|
return ResultVOUtils.success(Convert(res.getDataSet()));
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* 下载单个历史记录,并转换格式
|
|
|
|
* 下载单个历史记录,并转换格式
|
|
|
|
|
|
|
|
*
|
|
|
|
* @param key
|
|
|
|
* @param key
|
|
|
|
* @return
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
public BaseResponse downloadHistory(String key){
|
|
|
|
public BaseResponse downloadHistory(String key) {
|
|
|
|
List<String> keyList = new ArrayList<>();
|
|
|
|
List<String> keyList = new ArrayList<>();
|
|
|
|
keyList.add(key);
|
|
|
|
keyList.add(key);
|
|
|
|
DataSetTotalResult res = deviceDownloadService.getHistoryData(keyList);
|
|
|
|
DataSetTotalResult res = deviceDownloadService.getHistoryData(keyList);
|
|
|
|
if(res.getCode() != 1)
|
|
|
|
if (res.getCode() != 1)
|
|
|
|
return ResultVOUtils.error(-1,res.getMsg());
|
|
|
|
return ResultVOUtils.error(-1, res.getMsg());
|
|
|
|
List<DeviceEntity> result = new ArrayList<>();
|
|
|
|
List<DeviceEntity> result = new ArrayList<>();
|
|
|
|
for(DataSetResult.DataSet ds: res.getData())
|
|
|
|
for (DataSetResult.DataSet ds : res.getData())
|
|
|
|
result.addAll(Convert(ds));
|
|
|
|
result.addAll(Convert(ds));
|
|
|
|
return ResultVOUtils.success(result);
|
|
|
|
return ResultVOUtils.success(result);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* 格式转换
|
|
|
|
* 格式转换
|
|
|
|
|
|
|
|
*
|
|
|
|
* @param dataSet
|
|
|
|
* @param dataSet
|
|
|
|
* @return
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
private List<DeviceEntity> Convert(DataSetResult.DataSet dataSet){
|
|
|
|
private List<DeviceEntity> Convert(DataSetResult.DataSet dataSet) {
|
|
|
|
List<DeviceEntity> result = new ArrayList<>();
|
|
|
|
List<DeviceEntity> result = new ArrayList<>();
|
|
|
|
List<DataSetResult.DeviceInfo> deviceInfoList = dataSet.getDeviceInfo();
|
|
|
|
List<DataSetResult.DeviceInfo> deviceInfoList = dataSet.getDeviceInfo();
|
|
|
|
List<DataSetResult.ClinicalInfo> clinicalInfos = dataSet.getClinicalInfo();
|
|
|
|
List<DataSetResult.ClinicalInfo> clinicalInfos = dataSet.getClinicalInfo();
|
|
|
|
List<DataSetResult.StorageInfo> storageInfos = dataSet.getStorageInfo();
|
|
|
|
List<DataSetResult.StorageInfo> storageInfos = dataSet.getStorageInfo();
|
|
|
|
List<DataSetResult.PackingInfo> packingInfos = dataSet.getPackingInfo();
|
|
|
|
List<DataSetResult.PackingInfo> packingInfos = dataSet.getPackingInfo();
|
|
|
|
|
|
|
|
|
|
|
|
if (deviceInfoList != null && deviceInfoList.size()>0){
|
|
|
|
if (deviceInfoList != null && deviceInfoList.size() > 0) {
|
|
|
|
for(DataSetResult.DeviceInfo ds: deviceInfoList){
|
|
|
|
for (DataSetResult.DeviceInfo ds : deviceInfoList) {
|
|
|
|
DeviceEntity deviceEntity = new DeviceEntity();
|
|
|
|
DeviceEntity deviceEntity = new DeviceEntity();
|
|
|
|
BeanUtils.copyProperties(ds, deviceEntity);
|
|
|
|
BeanUtils.copyProperties(ds, deviceEntity);
|
|
|
|
deviceEntity.setDevicerecordkey(ds.getDeviceRecordKey());
|
|
|
|
deviceEntity.setDevicerecordkey(ds.getDeviceRecordKey());
|
|
|
|
deviceEntity.setVersionnumber(ds.getVersionNumber()+"");
|
|
|
|
deviceEntity.setVersionnumber(ds.getVersionNumber() + "");
|
|
|
|
deviceEntity.setVersionstatus(ds.getVersionStatus());
|
|
|
|
deviceEntity.setVersionstatus(ds.getVersionStatus());
|
|
|
|
deviceEntity.setVersiontime(ds.getVersionTime());
|
|
|
|
deviceEntity.setVersiontime(ds.getVersionTime());
|
|
|
|
deviceEntity.setContactlistList(convertList2List(ds.getContactList(), Contactlist.class));
|
|
|
|
deviceEntity.setContactlistList(convertList2List(ds.getContactList(), Contactlist.class));
|
|
|
|
if(clinicalInfos != null && clinicalInfos.size()>0){
|
|
|
|
if (clinicalInfos != null && clinicalInfos.size() > 0) {
|
|
|
|
List<DataSetResult.ClinicalInfo> clinicalInfos1 = clinicalInfos.stream().filter(p->p.getDeviceRecordKey().equals(ds.getDeviceRecordKey())).
|
|
|
|
List<DataSetResult.ClinicalInfo> clinicalInfos1 = clinicalInfos.stream().filter(p -> p.getDeviceRecordKey().equals(ds.getDeviceRecordKey())).
|
|
|
|
collect(Collectors.toList());
|
|
|
|
collect(Collectors.toList());
|
|
|
|
if(clinicalInfos1 != null && clinicalInfos1.size()>0){
|
|
|
|
if (clinicalInfos1 != null && clinicalInfos1.size() > 0) {
|
|
|
|
deviceEntity.setDeviceclinicals(convertList2List(clinicalInfos1, Deviceclinical.class));
|
|
|
|
deviceEntity.setDeviceclinicals(convertList2List(clinicalInfos1, Deviceclinical.class));
|
|
|
|
deviceEntity.getDeviceclinicals().forEach(p->p.setDevicerecordkey(ds.getDeviceRecordKey()));
|
|
|
|
deviceEntity.getDeviceclinicals().forEach(p -> p.setDevicerecordkey(ds.getDeviceRecordKey()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(storageInfos != null && storageInfos.size()>0){
|
|
|
|
if (storageInfos != null && storageInfos.size() > 0) {
|
|
|
|
List<DataSetResult.StorageInfo> storageInfos1 = storageInfos.stream().filter(p->p.getDeviceRecordKey().equals(ds.getDeviceRecordKey())).
|
|
|
|
List<DataSetResult.StorageInfo> storageInfos1 = storageInfos.stream().filter(p -> p.getDeviceRecordKey().equals(ds.getDeviceRecordKey())).
|
|
|
|
collect(Collectors.toList());
|
|
|
|
collect(Collectors.toList());
|
|
|
|
if(storageInfos1 != null && storageInfos1.size()>0){
|
|
|
|
if (storageInfos1 != null && storageInfos1.size() > 0) {
|
|
|
|
deviceEntity.setDevicestorages(convertList2List(storageInfos1, Devicestorage.class));
|
|
|
|
deviceEntity.setDevicestorages(convertList2List(storageInfos1, Devicestorage.class));
|
|
|
|
deviceEntity.getDevicestorages().forEach(p->p.setDevicerecordkey(ds.getDeviceRecordKey()));
|
|
|
|
deviceEntity.getDevicestorages().forEach(p -> p.setDevicerecordkey(ds.getDeviceRecordKey()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(packingInfos != null && packingInfos.size()>0){
|
|
|
|
if (packingInfos != null && packingInfos.size() > 0) {
|
|
|
|
List<DataSetResult.PackingInfo> packingInfos1 = packingInfos.stream().filter(p->p.getDeviceRecordKey().equals(ds.getDeviceRecordKey())).
|
|
|
|
List<DataSetResult.PackingInfo> packingInfos1 = packingInfos.stream().filter(p -> p.getDeviceRecordKey().equals(ds.getDeviceRecordKey())).
|
|
|
|
collect(Collectors.toList());
|
|
|
|
collect(Collectors.toList());
|
|
|
|
if(packingInfos1 != null && packingInfos1.size()>0){
|
|
|
|
if (packingInfos1 != null && packingInfos1.size() > 0) {
|
|
|
|
deviceEntity.setDevicepackages(convertList2List(packingInfos1, Devicepackage.class));
|
|
|
|
deviceEntity.setDevicepackages(convertList2List(packingInfos1, Devicepackage.class));
|
|
|
|
deviceEntity.getDevicepackages().forEach(p->p.setDevicerecordkey(ds.getDeviceRecordKey()));
|
|
|
|
deviceEntity.getDevicepackages().forEach(p -> p.setDevicerecordkey(ds.getDeviceRecordKey()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -266,25 +310,28 @@ public class DeviceSyncService {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
private <E,T> List<T> convertList2List(List<E> input,Class<T> clzz){
|
|
|
|
|
|
|
|
|
|
|
|
private <E, T> List<T> convertList2List(List<E> input, Class<T> clzz) {
|
|
|
|
List<T> output = new ArrayList<>();
|
|
|
|
List<T> output = new ArrayList<>();
|
|
|
|
if(!CollectionUtils.isEmpty(input)){
|
|
|
|
if (!CollectionUtils.isEmpty(input)) {
|
|
|
|
for(E source:input){
|
|
|
|
for (E source : input) {
|
|
|
|
T target = BeanUtils.instantiate(clzz);
|
|
|
|
T target = BeanUtils.instantiate(clzz);
|
|
|
|
BeanUtils.copyProperties(source,target);
|
|
|
|
BeanUtils.copyProperties(source, target);
|
|
|
|
output.add(target);
|
|
|
|
output.add(target);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return output;
|
|
|
|
return output;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* 下载从今天开始前几天的数据并保存 自动下载
|
|
|
|
* 下载从今天开始前几天的数据并保存 自动下载
|
|
|
|
|
|
|
|
*
|
|
|
|
* @param days
|
|
|
|
* @param days
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
public void downloadUdi(int days) {
|
|
|
|
public void downloadUdi(int days) {
|
|
|
|
for (int i = 1; i <= days; i++) {
|
|
|
|
for (int i = 1; i <= days; i++) {
|
|
|
|
String day = DateUtil.getLastDay(-i);
|
|
|
|
String day = DateUtil.getLastDay(-i);
|
|
|
|
downloadUdi(day,"auto");
|
|
|
|
downloadUdi(day, "auto");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|