|
|
|
@ -6,6 +6,10 @@ import com.glxp.api.dao.thrsys.ThrManufacturerMapper;
|
|
|
|
|
import com.glxp.api.entity.dev.*;
|
|
|
|
|
import com.glxp.api.res.inv.InnerOrderPrintResponse;
|
|
|
|
|
import com.glxp.api.service.dev.*;
|
|
|
|
|
import com.glxp.api.service.purchase.impl.PurApplyDetailService;
|
|
|
|
|
import com.glxp.api.service.purchase.impl.PurApplyService;
|
|
|
|
|
import com.glxp.api.service.purchase.impl.PurContractDetailService;
|
|
|
|
|
import com.glxp.api.service.purchase.impl.PurContractService;
|
|
|
|
|
import org.junit.Test;
|
|
|
|
|
import org.springframework.beans.BeanUtils;
|
|
|
|
|
import cn.hutool.core.collection.CollUtil;
|
|
|
|
@ -56,6 +60,7 @@ import org.apache.ibatis.session.ExecutorType;
|
|
|
|
|
import org.apache.ibatis.session.SqlSession;
|
|
|
|
|
import org.apache.ibatis.session.SqlSessionFactory;
|
|
|
|
|
import org.apache.ibatis.session.TransactionIsolationLevel;
|
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
|
|
|
import org.springframework.context.ApplicationContext;
|
|
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
@ -69,6 +74,7 @@ import java.io.IOException;
|
|
|
|
|
import java.time.LocalDateTime;
|
|
|
|
|
import java.util.*;
|
|
|
|
|
import java.util.function.Function;
|
|
|
|
|
import java.util.stream.Collectors;
|
|
|
|
|
|
|
|
|
|
import static com.glxp.api.constant.BasicProcessStatus.NEW_ALL_ORDER;
|
|
|
|
|
import static com.glxp.api.constant.BasicProcessStatus.NEW_ALL_UDIS;
|
|
|
|
@ -110,6 +116,16 @@ public class HeartService {
|
|
|
|
|
@Resource
|
|
|
|
|
IoOrderInvoiceMapper ioOrderInvoiceMapper;
|
|
|
|
|
private final ApplicationContext applicationContext;
|
|
|
|
|
@Autowired
|
|
|
|
|
private PurContractService purContractService;
|
|
|
|
|
@Autowired
|
|
|
|
|
private PurContractDetailService purContractDetailService;
|
|
|
|
|
@Autowired
|
|
|
|
|
private PurApplyDao purApplyDao;
|
|
|
|
|
@Autowired
|
|
|
|
|
private PurContractDetailMapper purContractDetailMapper;
|
|
|
|
|
@Autowired
|
|
|
|
|
private PurContractMapper purContractMapper;
|
|
|
|
|
|
|
|
|
|
//上传最近更新扫码单据
|
|
|
|
|
public BaseResponse uploadAllOrder(String syncTime) {
|
|
|
|
@ -1077,6 +1093,7 @@ public class HeartService {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (dataResponse != null) {
|
|
|
|
|
dataResponse.setTaskId(taskId);
|
|
|
|
|
dataResponse.setType(BasicExportTypeEnum.SYS_SET_DATA.getRemark());
|
|
|
|
@ -1114,6 +1131,11 @@ public class HeartService {
|
|
|
|
|
@Resource
|
|
|
|
|
FileService fileService;
|
|
|
|
|
|
|
|
|
|
@Resource
|
|
|
|
|
PurApplyService purApplyService;
|
|
|
|
|
@Resource
|
|
|
|
|
PurApplyDetailService purApplyDetailService;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param info
|
|
|
|
|
* @param taskId
|
|
|
|
@ -1156,7 +1178,80 @@ public class HeartService {
|
|
|
|
|
}
|
|
|
|
|
fileService.upload(files);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//pur apply
|
|
|
|
|
List<PurApplyEntity> purApplyEntities = purApplyService.list(Wrappers.lambdaQuery(PurApplyEntity.class)
|
|
|
|
|
.le(!ge && (boolean) map.get("isNew"), PurApplyEntity::getUpdateTime, now)
|
|
|
|
|
.between(ge, PurApplyEntity::getUpdateTime, syncTime, now)
|
|
|
|
|
.between(!ge && !(boolean) map.get("isNew"), PurApplyEntity::getUpdateTime
|
|
|
|
|
, map.get("oldDate"), now)
|
|
|
|
|
);
|
|
|
|
|
if (CollectionUtil.isNotEmpty(purApplyEntities)) {
|
|
|
|
|
if (dataResponse == null) {
|
|
|
|
|
dataResponse = new SpsSyncDeviceTaskResponse();
|
|
|
|
|
}
|
|
|
|
|
dataResponse.setPurApplyEntities(purApplyEntities);
|
|
|
|
|
remark.append("申购单据:").append(purApplyEntities.size()).append("条\n");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
List<Long> ids = purApplyEntities.stream()
|
|
|
|
|
.map(PurApplyEntity::getId)
|
|
|
|
|
.filter(Objects::nonNull) // 过滤掉可能的null值
|
|
|
|
|
.distinct() // 去重
|
|
|
|
|
.collect(Collectors.toList());
|
|
|
|
|
List<PurApplyDetailEntity> purApplyDetailEntityList = purApplyDetailService.list(Wrappers.lambdaQuery(PurApplyDetailEntity.class)
|
|
|
|
|
.in(CollectionUtil.isNotEmpty(ids), PurApplyDetailEntity::getOrderIdFk, ids)
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
if (CollectionUtil.isNotEmpty(purApplyDetailEntityList)) {
|
|
|
|
|
if (dataResponse == null) {
|
|
|
|
|
dataResponse = new SpsSyncDeviceTaskResponse();
|
|
|
|
|
}
|
|
|
|
|
dataResponse.setPurApplyDetailEntityList(purApplyDetailEntityList);
|
|
|
|
|
remark.append("申购单据明细:").append(purApplyDetailEntityList.size()).append("条\n");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//pur contract
|
|
|
|
|
List<PurContractEntity> purContractEntities = purContractService.list(Wrappers.lambdaQuery(PurContractEntity.class)
|
|
|
|
|
.le(!ge && (boolean) map.get("isNew"), PurContractEntity::getUpdateTime, now)
|
|
|
|
|
.between(ge, PurContractEntity::getUpdateTime, syncTime, now)
|
|
|
|
|
.between(!ge && !(boolean) map.get("isNew"), PurContractEntity::getUpdateTime
|
|
|
|
|
, map.get("oldDate"), now)
|
|
|
|
|
);
|
|
|
|
|
if (CollectionUtil.isNotEmpty(purContractEntities)) {
|
|
|
|
|
if (dataResponse == null) {
|
|
|
|
|
dataResponse = new SpsSyncDeviceTaskResponse();
|
|
|
|
|
}
|
|
|
|
|
dataResponse.setPurContractEntities(purContractEntities);
|
|
|
|
|
remark.append("合同单据:").append(purContractEntities.size()).append("条\n");
|
|
|
|
|
|
|
|
|
|
List<Long> ids = purContractEntities.stream()
|
|
|
|
|
.map(PurContractEntity::getId)
|
|
|
|
|
.filter(Objects::nonNull) // 过滤掉可能的null值
|
|
|
|
|
.distinct() // 去重
|
|
|
|
|
.collect(Collectors.toList());
|
|
|
|
|
List<PurContractDetailEntity> purContractDetailEntities = purContractDetailService.list(Wrappers.lambdaQuery(PurContractDetailEntity.class)
|
|
|
|
|
.in(CollectionUtil.isNotEmpty(ids), PurContractDetailEntity::getOrderIdFk, ids)
|
|
|
|
|
);
|
|
|
|
|
if (CollectionUtil.isNotEmpty(purContractDetailEntities)) {
|
|
|
|
|
if (dataResponse == null) {
|
|
|
|
|
dataResponse = new SpsSyncDeviceTaskResponse();
|
|
|
|
|
}
|
|
|
|
|
dataResponse.setPurContractDetailEntities(purContractDetailEntities);
|
|
|
|
|
remark.append("合同单据明细:").append(purContractDetailEntities.size()).append("条\n");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (dataResponse != null) {
|
|
|
|
|
dataResponse.setTaskId(taskId);
|
|
|
|
|
dataResponse.setType(BasicExportTypeEnum.THIRD_DATA.getRemark());
|
|
|
|
@ -1917,6 +2012,9 @@ public class HeartService {
|
|
|
|
|
cn.hutool.json.JSONObject jsonObject = JSONUtil.parseObj(content);
|
|
|
|
|
List<DeviceInspectTaskEntity> deviceInspectTaskEntities = JSONUtil.toList(jsonObject.getJSONArray(DeviceInspectTaskEntity.class.getSimpleName()), DeviceInspectTaskEntity.class);
|
|
|
|
|
List<DeviceInspectTaskDetailEntity> deviceInspectTaskDetailEntities = JSONUtil.toList(jsonObject.getJSONArray(DeviceInspectTaskDetailEntity.class.getSimpleName()), DeviceInspectTaskDetailEntity.class);
|
|
|
|
|
List<PurApplyEntity> purApplyEntities = JSONUtil.toList(jsonObject.getJSONArray(PurApplyEntity.class.getSimpleName()), PurApplyEntity.class);
|
|
|
|
|
List<PurContractEntity> purContractEntities = JSONUtil.toList(jsonObject.getJSONArray(PurContractEntity.class.getSimpleName()), PurContractEntity.class);
|
|
|
|
|
|
|
|
|
|
if (CollectionUtil.isNotEmpty(deviceInspectTaskEntities)) {
|
|
|
|
|
for (DeviceInspectTaskEntity deviceInspectTaskEntity : deviceInspectTaskEntities) {
|
|
|
|
|
deviceInspectTaskEntity.setUpdateTime(null);
|
|
|
|
@ -1927,6 +2025,14 @@ public class HeartService {
|
|
|
|
|
deviceInspectTaskDetailMapper.replaceBatchs(deviceInspectTaskDetailEntities);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (CollectionUtil.isNotEmpty(purApplyEntities)) {
|
|
|
|
|
purApplyDao.replaceBatchs(purApplyEntities);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (CollectionUtil.isNotEmpty(purContractEntities)) {
|
|
|
|
|
purContractMapper.replaceBatchs(purContractEntities);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
List<String> syncFiles = JSONUtil.toList(jsonObject.getJSONArray("syncFiles"), String.class);
|
|
|
|
|
if (CollUtil.isNotEmpty(syncFiles)) {
|
|
|
|
|
fileService.download(syncFiles);
|
|
|
|
@ -2721,14 +2827,14 @@ public class HeartService {
|
|
|
|
|
list.add(deviceRepairApplyDetailEntity.getDiagnosisLivePath());
|
|
|
|
|
}
|
|
|
|
|
log.error("当前数据接受到的报修单明细list{}",list);
|
|
|
|
|
// BaseResponse<String> response = spGetHttp.postTemplateFile(list);
|
|
|
|
|
// if (response.getCode() == 20000) {
|
|
|
|
|
// log.error("图片列表上传成功");
|
|
|
|
|
//// uploadFileLog = "\n模板文件列表上传成功";
|
|
|
|
|
// } else {
|
|
|
|
|
// log.info("模板文件上传失败,响应信息:{}", response.getMessage());
|
|
|
|
|
//// uploadFileLog = "\n模板文件列表上传失败,错误信息:" + response.getMessage();
|
|
|
|
|
// }
|
|
|
|
|
BaseResponse<String> response = spGetHttp.postTemplateFile(list);
|
|
|
|
|
if (response.getCode() == 20000) {
|
|
|
|
|
log.error("图片列表上传成功");
|
|
|
|
|
// uploadFileLog = "\n模板文件列表上传成功";
|
|
|
|
|
} else {
|
|
|
|
|
log.info("模板文件上传失败,响应信息:{}", response.getMessage());
|
|
|
|
|
// uploadFileLog = "\n模板文件列表上传失败,错误信息:" + response.getMessage();
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|