|
|
|
@ -4,6 +4,7 @@ import cn.hutool.core.collection.CollUtil;
|
|
|
|
|
import cn.hutool.core.date.DateUnit;
|
|
|
|
|
import cn.hutool.core.util.StrUtil;
|
|
|
|
|
import com.alibaba.fastjson.JSON;
|
|
|
|
|
import com.glxp.udidl.admin.constant.Constant;
|
|
|
|
|
import com.glxp.udidl.admin.entity.udi.ProductInfoEntity;
|
|
|
|
|
import com.glxp.udidl.admin.entity.udid.*;
|
|
|
|
|
import com.glxp.udidl.admin.req.ProductInfoFilterRequest;
|
|
|
|
@ -59,7 +60,7 @@ public class DeviceSyncService {
|
|
|
|
|
JobLog jobLog = new JobLog();
|
|
|
|
|
jobLog.setDownloadType(downloadType);
|
|
|
|
|
jobLog.setDownloadDate(DateUtil.parseDate(rangeValue));
|
|
|
|
|
jobLog.setType("error");
|
|
|
|
|
jobLog.setType(Constant.LOG_TYPE_ERROR);
|
|
|
|
|
jobLog.setMsg(result.getMsg());
|
|
|
|
|
jobLog.setCreateTime(new Date());
|
|
|
|
|
jobLogService.insert(jobLog);
|
|
|
|
@ -92,7 +93,7 @@ public class DeviceSyncService {
|
|
|
|
|
JobLog jobLog = new JobLog();
|
|
|
|
|
jobLog.setDownloadType(downloadType);
|
|
|
|
|
jobLog.setDownloadDate(DateUtil.parseDate(rangeValue));
|
|
|
|
|
jobLog.setType("error");
|
|
|
|
|
jobLog.setType(Constant.LOG_TYPE_ERROR);
|
|
|
|
|
jobLog.setMsg("下载历史记录出错:" + res.getMsg());
|
|
|
|
|
jobLog.setCreateTime(new Date());
|
|
|
|
|
jobLogService.insert(jobLog);
|
|
|
|
@ -107,11 +108,11 @@ public class DeviceSyncService {
|
|
|
|
|
jobLog.setRealCount(result.realRecordCount());
|
|
|
|
|
jobLog.setInsertCount(insertCount);
|
|
|
|
|
if (result.realRecordCount() != result.getTotalRecordCount()) {
|
|
|
|
|
jobLog.setType("warning");
|
|
|
|
|
jobLog.setType(Constant.LOG_TYPE_WARNING);
|
|
|
|
|
jobLog.setMsg("接口总行数和实际行数不一致");
|
|
|
|
|
jobLog.setCreateTime(new Date());
|
|
|
|
|
} else {
|
|
|
|
|
jobLog.setType("info");
|
|
|
|
|
jobLog.setType(Constant.LOG_TYPE_INFO);
|
|
|
|
|
jobLog.setMsg("执行成功!");
|
|
|
|
|
jobLog.setCreateTime(new Date());
|
|
|
|
|
}
|
|
|
|
@ -127,7 +128,7 @@ public class DeviceSyncService {
|
|
|
|
|
JobLog jobLog = new JobLog();
|
|
|
|
|
jobLog.setDownloadType(downloadType);
|
|
|
|
|
jobLog.setDownloadDate(DateUtil.parseDate(day));
|
|
|
|
|
jobLog.setType("error");
|
|
|
|
|
jobLog.setType(Constant.LOG_TYPE_ERROR);
|
|
|
|
|
jobLog.setMsg(e.getMessage());
|
|
|
|
|
jobLog.setContent(JSON.toJSONString(e.getStackTrace()));
|
|
|
|
|
jobLog.setCreateTime(new Date());
|
|
|
|
@ -210,12 +211,34 @@ public class DeviceSyncService {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public BaseResponse downloadSingle(String deviceId) {
|
|
|
|
|
DataSetSingleResult res = deviceDownloadService.downloadByDi(deviceId);
|
|
|
|
|
if (res.getReturnCode() != 1)
|
|
|
|
|
return ResultVOUtils.error(-1, res.getReturnMsg());
|
|
|
|
|
List<DataSetResult.DataSet> dataSets = new ArrayList<>();
|
|
|
|
|
dataSets.add(res.getDataSet());
|
|
|
|
|
deviceSaveService.DeviceSave(dataSets, new Date());
|
|
|
|
|
//插入日志
|
|
|
|
|
JobLog jobLog = new JobLog();
|
|
|
|
|
jobLog.setDownloadType(Constant.DOWNLOAD_TYPE_MANUAL);
|
|
|
|
|
jobLog.setDownloadDate(new Date());
|
|
|
|
|
jobLog.setType(Constant.LOG_TYPE_INFO);
|
|
|
|
|
jobLog.setMsg("下载中");
|
|
|
|
|
jobLog.setCreateTime(new Date());
|
|
|
|
|
jobLog.setStatus(0);
|
|
|
|
|
jobLogService.insertLog(jobLog);
|
|
|
|
|
|
|
|
|
|
DataSetSingleResult res = null;
|
|
|
|
|
try {
|
|
|
|
|
res = deviceDownloadService.downloadByDi(deviceId);
|
|
|
|
|
if (res.getReturnCode() != 1)
|
|
|
|
|
return ResultVOUtils.error(-1, res.getReturnMsg());
|
|
|
|
|
List<DataSetResult.DataSet> dataSets = new ArrayList<>();
|
|
|
|
|
dataSets.add(res.getDataSet());
|
|
|
|
|
int insertCount = deviceSaveService.DeviceSave(dataSets, new Date());
|
|
|
|
|
|
|
|
|
|
jobLog.setMsg("下载成功,总条数:" + dataSets.size() + " ;插入数据:" + insertCount + " 条");
|
|
|
|
|
jobLog.setType(Constant.LOG_TYPE_SUCCESS);
|
|
|
|
|
jobLogService.update(jobLog);
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
log.error("下载产品信息失败", e);
|
|
|
|
|
jobLog.setMsg("下载失败:" + res.getReturnMsg());
|
|
|
|
|
jobLog.setType(Constant.LOG_TYPE_ERROR);
|
|
|
|
|
jobLogService.update(jobLog);
|
|
|
|
|
}
|
|
|
|
|
return ResultVOUtils.success(Convert(res.getDataSet()));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -389,7 +412,7 @@ public class DeviceSyncService {
|
|
|
|
|
JobLog jobLog = new JobLog();
|
|
|
|
|
jobLog.setDownloadType(deviceRequest.getDownloadType());
|
|
|
|
|
jobLog.setDownloadDate(DateUtil.parseDate(date));
|
|
|
|
|
jobLog.setType("info");
|
|
|
|
|
jobLog.setType(Constant.LOG_TYPE_INFO);
|
|
|
|
|
jobLog.setMsg("下载中");
|
|
|
|
|
jobLog.setCreateTime(new Date());
|
|
|
|
|
jobLog.setStatus(0);
|
|
|
|
@ -401,7 +424,7 @@ public class DeviceSyncService {
|
|
|
|
|
if (data.getCode() != 1) {
|
|
|
|
|
log.error(date + " 数据下载失败");
|
|
|
|
|
jobLog.setStatus(1);
|
|
|
|
|
jobLog.setType("error");
|
|
|
|
|
jobLog.setType(Constant.LOG_TYPE_ERROR);
|
|
|
|
|
jobLog.setMsg(data.getMsg());
|
|
|
|
|
jobLog.setUpdateTime(new Date());
|
|
|
|
|
jobLogService.update(jobLog);
|
|
|
|
@ -413,7 +436,7 @@ public class DeviceSyncService {
|
|
|
|
|
try {
|
|
|
|
|
int insertCount = deviceSaveService.DeviceSave(data.getData(), DateUtil.parseDate(date));
|
|
|
|
|
jobLog.setStatus(1);
|
|
|
|
|
jobLog.setType("success");
|
|
|
|
|
jobLog.setType(Constant.LOG_TYPE_SUCCESS);
|
|
|
|
|
jobLog.setMsg("下载成功,总条数:" + data.getTotalRecordCount() + " ;插入数据:" + insertCount + " 条");
|
|
|
|
|
jobLog.setUpdateTime(new Date());
|
|
|
|
|
jobLog.setInsertCount(insertCount);
|
|
|
|
@ -421,7 +444,7 @@ public class DeviceSyncService {
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
log.error("插入数据失败", e);
|
|
|
|
|
jobLog.setStatus(1);
|
|
|
|
|
jobLog.setType("error");
|
|
|
|
|
jobLog.setType(Constant.LOG_TYPE_ERROR);
|
|
|
|
|
jobLog.setMsg("下载成功,数据插入失败");
|
|
|
|
|
jobLog.setUpdateTime(new Date());
|
|
|
|
|
jobLog.setInsertCount(0);
|
|
|
|
|