|
|
|
@ -1,10 +1,13 @@
|
|
|
|
|
package com.glxp.udidl.admin.service.dataSync;
|
|
|
|
|
|
|
|
|
|
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.entity.udi.ProductInfoEntity;
|
|
|
|
|
import com.glxp.udidl.admin.entity.udid.*;
|
|
|
|
|
import com.glxp.udidl.admin.req.ProductInfoFilterRequest;
|
|
|
|
|
import com.glxp.udidl.admin.req.udid.DeviceRequest;
|
|
|
|
|
import com.glxp.udidl.admin.res.BaseResponse;
|
|
|
|
|
import com.glxp.udidl.admin.res.udid.DataSetResult;
|
|
|
|
|
import com.glxp.udidl.admin.res.udid.DataSetSingleHistoryResult;
|
|
|
|
@ -13,6 +16,7 @@ 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.util.DateUtil;
|
|
|
|
|
import com.glxp.udidl.admin.util.RedisUtil;
|
|
|
|
|
import com.glxp.udidl.admin.util.ResultVOUtils;
|
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
|
import org.springframework.beans.BeanUtils;
|
|
|
|
@ -39,6 +43,9 @@ public class DeviceSyncService {
|
|
|
|
|
@Resource
|
|
|
|
|
private ProductInfoService productInfoService;
|
|
|
|
|
|
|
|
|
|
@Resource
|
|
|
|
|
private RedisUtil redisUtil;
|
|
|
|
|
|
|
|
|
|
public void downloadAndSave(String day, String downloadType) {
|
|
|
|
|
//1.下载唯一标识数据
|
|
|
|
|
DataSetTotalResult result;
|
|
|
|
@ -309,4 +316,113 @@ public class DeviceSyncService {
|
|
|
|
|
downloadUdi(day, "auto");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 下载UDI国家库数据
|
|
|
|
|
*
|
|
|
|
|
* @param deviceRequest
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
@Async
|
|
|
|
|
public void downloadUdiData(DeviceRequest deviceRequest) {
|
|
|
|
|
if (StrUtil.isBlank(deviceRequest.getRangeValue())) {
|
|
|
|
|
switch (deviceRequest.getRequestType()) {
|
|
|
|
|
case "1":
|
|
|
|
|
//按天下载
|
|
|
|
|
deviceRequest.setRangeValue(DateUtil.getDate());
|
|
|
|
|
break;
|
|
|
|
|
case "2":
|
|
|
|
|
deviceRequest.setRangeValue(DateUtil.formatDate(new Date(), "yyyy-MM"));
|
|
|
|
|
break;
|
|
|
|
|
case "3":
|
|
|
|
|
//当下载类型为时间段,但值为空时,默认下载当天的
|
|
|
|
|
deviceRequest.setRangeValue(DateUtil.getDate());
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
deviceRequest.setRangeValue(DateUtil.getDate());
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
List<String> dates = new ArrayList<>();
|
|
|
|
|
if (deviceRequest.getRequestType().equals("3")) {
|
|
|
|
|
deviceRequest.setRequestType("1");
|
|
|
|
|
//按时间段下载
|
|
|
|
|
if (deviceRequest.getRangeValue().contains("--")) {
|
|
|
|
|
String[] dateArr = deviceRequest.getRangeValue().split("--");
|
|
|
|
|
int compareResult = DateUtil.compareDate(dateArr[0], dateArr[1], "yyyy-MM-dd");
|
|
|
|
|
|
|
|
|
|
if (compareResult == -1) {
|
|
|
|
|
long between = cn.hutool.core.date.DateUtil.between(cn.hutool.core.date.DateUtil.parseDate(dateArr[0]), cn.hutool.core.date.DateUtil.parseDate(dateArr[1]), DateUnit.DAY);
|
|
|
|
|
between += 1; //包括自身
|
|
|
|
|
for (int i = 0; i < between; i++) {
|
|
|
|
|
dates.add(cn.hutool.core.date.DateUtil.offsetDay(DateUtil.parseDate(dateArr[0]), i).toString("yyyy-MM-dd"));
|
|
|
|
|
}
|
|
|
|
|
} else if (compareResult == 0) {
|
|
|
|
|
dates.add(dateArr[0]);
|
|
|
|
|
} else {
|
|
|
|
|
dates.add(DateUtil.getDate());
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
dates.add(deviceRequest.getRangeValue());
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
dates.add(deviceRequest.getRangeValue());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (deviceRequest.getDataType().equals("3")) {
|
|
|
|
|
deviceRequest.setDataType(null);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
log.info("开始下载国家UDI库数据");
|
|
|
|
|
redisUtil.set("开始下载时间", DateUtil.getDateTime());
|
|
|
|
|
for (String date : dates) {
|
|
|
|
|
deviceRequest.setRangeValue(date);
|
|
|
|
|
|
|
|
|
|
//插入日志
|
|
|
|
|
JobLog jobLog = new JobLog();
|
|
|
|
|
jobLog.setDownloadType("manual");
|
|
|
|
|
jobLog.setDownloadDate(DateUtil.parseDate(date));
|
|
|
|
|
jobLog.setType("info");
|
|
|
|
|
jobLog.setMsg("下载中");
|
|
|
|
|
jobLog.setCreateTime(new Date());
|
|
|
|
|
jobLog.setStatus(0);
|
|
|
|
|
jobLogService.insertLog(jobLog);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//开始下载数据
|
|
|
|
|
DataSetTotalResult data = deviceDownloadService.getData(deviceRequest);
|
|
|
|
|
if (data.getCode() != 1) {
|
|
|
|
|
log.error(date + " 数据下载失败");
|
|
|
|
|
jobLog.setStatus(1);
|
|
|
|
|
jobLog.setType("error");
|
|
|
|
|
jobLog.setMsg(data.getMsg());
|
|
|
|
|
jobLog.setUpdateTime(new Date());
|
|
|
|
|
jobLogService.update(jobLog);
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
jobLog.setRealCount(data.realRecordCount());
|
|
|
|
|
jobLog.setTotalCount(data.getTotalRecordCount());
|
|
|
|
|
try {
|
|
|
|
|
int insertCount = deviceSaveService.DeviceSave(data.getData(), DateUtil.parseDate(date));
|
|
|
|
|
jobLog.setStatus(1);
|
|
|
|
|
jobLog.setType("success");
|
|
|
|
|
jobLog.setMsg("下载成功,总条数:" + data.getTotalRecordCount() + " ;插入数据:" + insertCount + " 条");
|
|
|
|
|
jobLog.setUpdateTime(new Date());
|
|
|
|
|
jobLog.setInsertCount(insertCount);
|
|
|
|
|
jobLogService.update(jobLog);
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
log.error("插入数据失败", e);
|
|
|
|
|
jobLog.setStatus(1);
|
|
|
|
|
jobLog.setType("error");
|
|
|
|
|
jobLog.setMsg("下载成功,数据插入失败");
|
|
|
|
|
jobLog.setUpdateTime(new Date());
|
|
|
|
|
jobLog.setInsertCount(0);
|
|
|
|
|
jobLogService.update(jobLog);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
redisUtil.set("下载结束时间", DateUtil.getDateTime());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|