|
|
|
@ -10,6 +10,7 @@ import cn.hutool.json.JSONArray;
|
|
|
|
|
import cn.hutool.json.JSONUtil;
|
|
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
|
|
import com.alibaba.fastjson.TypeReference;
|
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
|
|
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
|
|
|
|
|
import com.glxp.api.common.res.BaseResponse;
|
|
|
|
|
import com.glxp.api.common.util.ResultVOUtils;
|
|
|
|
@ -22,6 +23,8 @@ import com.glxp.api.dto.RelaySyncDto;
|
|
|
|
|
import com.glxp.api.entity.auth.*;
|
|
|
|
|
import com.glxp.api.entity.basic.*;
|
|
|
|
|
import com.glxp.api.entity.inout.*;
|
|
|
|
|
import com.glxp.api.entity.inv.DeviceInspectTaskDetailEntity;
|
|
|
|
|
import com.glxp.api.entity.inv.DeviceInspectTaskEntity;
|
|
|
|
|
import com.glxp.api.entity.purchase.*;
|
|
|
|
|
import com.glxp.api.entity.sync.BasicDownloadStatusEntity;
|
|
|
|
|
import com.glxp.api.entity.sync.BasicExportStatusEntity;
|
|
|
|
@ -37,6 +40,8 @@ import com.glxp.api.service.auth.*;
|
|
|
|
|
import com.glxp.api.service.basic.*;
|
|
|
|
|
import com.glxp.api.service.inout.*;
|
|
|
|
|
import com.glxp.api.service.inout.impl.IoOrderInvoiceService;
|
|
|
|
|
import com.glxp.api.service.inv.DeviceInspectTaskDetailService;
|
|
|
|
|
import com.glxp.api.service.inv.DeviceInspectTaskService;
|
|
|
|
|
import com.glxp.api.service.system.*;
|
|
|
|
|
import com.glxp.api.service.thrsys.*;
|
|
|
|
|
import com.glxp.api.util.CustomUtil;
|
|
|
|
@ -233,7 +238,6 @@ public class HeartService {
|
|
|
|
|
|
|
|
|
|
@Transactional(rollbackFor = Exception.class)
|
|
|
|
|
public void pushData(SyncDataSetEntity info, Date syncTime, BasicExportTypeEnum exportType) {
|
|
|
|
|
|
|
|
|
|
Date now = new Date();
|
|
|
|
|
String taskId = CustomUtil.getId();
|
|
|
|
|
switch (exportType) {
|
|
|
|
@ -270,6 +274,12 @@ public class HeartService {
|
|
|
|
|
case IO_ORDER:
|
|
|
|
|
if (needExec())
|
|
|
|
|
break;
|
|
|
|
|
break;
|
|
|
|
|
case DEVICE_TASK:
|
|
|
|
|
if (needExec(info.getDeviceTask())) {
|
|
|
|
|
uploadData(exportType, taskId, x -> x.getDeviceTaskData(info, taskId, now, syncTime));
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -1066,6 +1076,69 @@ public class HeartService {
|
|
|
|
|
return dataResponse;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Resource
|
|
|
|
|
DeviceInspectTaskService deviceInspectTaskService;
|
|
|
|
|
@Resource
|
|
|
|
|
DeviceInspectTaskDetailService deviceInspectTaskDetailService;
|
|
|
|
|
@Value("${file_path}")
|
|
|
|
|
private String filePath;
|
|
|
|
|
@Resource
|
|
|
|
|
FileService fileService;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param info
|
|
|
|
|
* @param taskId
|
|
|
|
|
* @param now
|
|
|
|
|
* @param syncTime
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
private SpsSyncDeviceTaskResponse getDeviceTaskData(SyncDataSetEntity info, String taskId, Date now, Date syncTime) {
|
|
|
|
|
SpsSyncDeviceTaskResponse dataResponse = null;
|
|
|
|
|
Map<String, Object> syncTimeMap = new WeakHashMap<>(3);
|
|
|
|
|
syncTimeMap.put("isNew", true);
|
|
|
|
|
boolean ge = false;
|
|
|
|
|
if (syncTime != null) {
|
|
|
|
|
ge = true;
|
|
|
|
|
}
|
|
|
|
|
StringBuffer remark = new StringBuffer();
|
|
|
|
|
//确认有开启第三方部门信息同步
|
|
|
|
|
if (needExec(info.getDeviceTask())) {
|
|
|
|
|
Map<String, Object> map = basicExportStatusTimeInfo(now, BasicExportStatusTimeEnum.DEVICE_TASK);
|
|
|
|
|
List<DeviceInspectTaskEntity> deviceInspectTaskEntities = deviceInspectTaskService.list(Wrappers.lambdaQuery(DeviceInspectTaskEntity.class)
|
|
|
|
|
.le(!ge && (boolean) map.get("isNew"), DeviceInspectTaskEntity::getUpdateTime, now)
|
|
|
|
|
.between(ge, DeviceInspectTaskEntity::getUpdateTime, syncTime, now)
|
|
|
|
|
.between(!ge && !(boolean) map.get("isNew"), DeviceInspectTaskEntity::getUpdateTime
|
|
|
|
|
, map.get("oldDate"), now)
|
|
|
|
|
);
|
|
|
|
|
if (CollectionUtil.isNotEmpty(deviceInspectTaskEntities)) {
|
|
|
|
|
dataResponse = new SpsSyncDeviceTaskResponse();
|
|
|
|
|
dataResponse.setDeviceInspectTaskEntities(deviceInspectTaskEntities);
|
|
|
|
|
|
|
|
|
|
remark.append("设备任务:").append(deviceInspectTaskEntities.size()).append("条\n");
|
|
|
|
|
List<DeviceInspectTaskDetailEntity> datas = new ArrayList<>();
|
|
|
|
|
List<String> files = new ArrayList<>();
|
|
|
|
|
for (DeviceInspectTaskEntity deviceInspectTaskEntity : deviceInspectTaskEntities) {
|
|
|
|
|
List<DeviceInspectTaskDetailEntity> deviceInspectTaskDetailEntities = deviceInspectTaskDetailService.list(new QueryWrapper<DeviceInspectTaskDetailEntity>().eq("taskOrderIdFk", deviceInspectTaskEntity.getOrderId()));
|
|
|
|
|
datas.addAll(deviceInspectTaskDetailEntities);
|
|
|
|
|
for (DeviceInspectTaskDetailEntity detailEntity : deviceInspectTaskDetailEntities) {
|
|
|
|
|
if (StrUtil.isNotEmpty(detailEntity.getInspectImage())) {
|
|
|
|
|
files.add(filePath + detailEntity.getInspectImage().replace(",", ""));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
fileService.upload(files);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (dataResponse != null) {
|
|
|
|
|
dataResponse.setTaskId(taskId);
|
|
|
|
|
dataResponse.setType(BasicExportTypeEnum.THIRD_DATA.getRemark());
|
|
|
|
|
dataResponse.setSyncRemark(remark.toString());
|
|
|
|
|
}
|
|
|
|
|
return dataResponse;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 判断是否需要执行 由内向外
|
|
|
|
|
*
|
|
|
|
@ -1716,8 +1789,6 @@ public class HeartService {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Resource
|
|
|
|
|
FileService fileService;
|
|
|
|
|
private final IdcService idcService;
|
|
|
|
|
|
|
|
|
|
private final IoCodeLostMapper ioCodeLostMapper;
|
|
|
|
|