|
|
|
@ -318,7 +318,7 @@ public class OuPaiFactoryServiceImpl implements IOuPaiFactoryService {
|
|
|
|
|
String unitNo = orderStatusDTO.getUnitNo(); |
|
|
|
|
String operationTime = orderStatusDTO.getOperationTime(); |
|
|
|
|
if ("1".equals(status) || "2".equals(status) || "3".equals(status) || "5".equals(status) || "6".equals(status) || "7".equals(status) || "8".equals(status) || "9".equals(status)) { |
|
|
|
|
log.warn(FactoryConstant.OUPAI,"#############oupai-handleStatusData: 当前数据的状态不推送 status={}", status); |
|
|
|
|
log.warn("#############oupai-handleStatusData: 当前数据的状态不推送 status={}", status); |
|
|
|
|
return Resp.fail(400, "当前数据的状态不推送"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -332,12 +332,12 @@ public class OuPaiFactoryServiceImpl implements IOuPaiFactoryService {
|
|
|
|
|
} |
|
|
|
|
String destinationWarehouseId = supplyData.get("destinationWarehouseId");//目的仓id
|
|
|
|
|
if (StringUtil.isBlank(currentWarehouseId) || StringUtil.isBlank(destinationWarehouseId)) { |
|
|
|
|
log.warn(FactoryConstant.OUPAI,"##############oupai-handleStatusData: 仓库数据有问题currentWarehouseId={} destinationWarehouseId={}", currentWarehouseId, destinationWarehouseId); |
|
|
|
|
log.warn("##############oupai-handleStatusData: 仓库数据有问题currentWarehouseId={} destinationWarehouseId={}", currentWarehouseId, destinationWarehouseId); |
|
|
|
|
return Resp.fail(400, "仓库数据有误"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (!currentWarehouseId.equals(destinationWarehouseId)) { |
|
|
|
|
log.info(FactoryConstant.OUPAI,"##############oupai-handleStatusData: 不用处理的状态 currentWarehouseId={} destinationWarehouseId={}", currentWarehouseId, destinationWarehouseId); |
|
|
|
|
log.info("##############oupai-handleStatusData: 不用处理的状态 currentWarehouseId={} destinationWarehouseId={}", currentWarehouseId, destinationWarehouseId); |
|
|
|
|
return Resp.fail(400, "不是目的仓"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -350,7 +350,7 @@ public class OuPaiFactoryServiceImpl implements IOuPaiFactoryService {
|
|
|
|
|
// 如何判断这个包间是非干仓配的数据
|
|
|
|
|
|
|
|
|
|
if (!"经销商".equals(factoryOrder.getBusinessModel())) { |
|
|
|
|
log.info(FactoryConstant.OUPAI,"oupai- 该包条为干仓配的数据类型 不进行推送 >>> unitNo={} businessModel:{}", unitNo, factoryOrder.getBusinessModel()); |
|
|
|
|
log.info("oupai- 该包条为干仓配的数据类型 不进行推送 >>> unitNo={} businessModel:{}", unitNo, factoryOrder.getBusinessModel()); |
|
|
|
|
return Resp.fail(400, "包条为干仓配的数据类型"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -358,7 +358,7 @@ public class OuPaiFactoryServiceImpl implements IOuPaiFactoryService {
|
|
|
|
|
ReceivingOrderEntity receivingOrderEntity = receivingOrderMapper.selectById(factoryOrder.getReceivingId()); |
|
|
|
|
|
|
|
|
|
if (Objects.isNull(receivingOrderEntity)) { |
|
|
|
|
log.info(FactoryConstant.OUPAI,"oupai- 该订单为没有收货单 不进行推送 >>> receivingId={} ", factoryOrder.getReceivingId()); |
|
|
|
|
log.info(" 该订单为没有收货单 不进行推送 >>> receivingId={} ", factoryOrder.getReceivingId()); |
|
|
|
|
return Resp.fail(400, "未查询到该单据推送收货单信息"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -367,7 +367,7 @@ public class OuPaiFactoryServiceImpl implements IOuPaiFactoryService {
|
|
|
|
|
detailObject.put("WarehouseBelong", "oppein"); |
|
|
|
|
detailObject.put("Creator", orderStatusDTO.getUsername()); |
|
|
|
|
detailObject.put("PackageCode", unitNo); |
|
|
|
|
detailObject.put("Operate", "到货"); |
|
|
|
|
detailObject.put("Operate", "收货"); |
|
|
|
|
|
|
|
|
|
// 查询系统的包件对象
|
|
|
|
|
LambdaQueryWrapper<FactoryPackageEntity> lambdaQueryWrapper = new LambdaQueryWrapper<>(); |
|
|
|
@ -379,9 +379,10 @@ public class OuPaiFactoryServiceImpl implements IOuPaiFactoryService {
|
|
|
|
|
OpPackagePushLogEntity opPackagePushLogEntity = sendPushOuPaiData(factoryPackageEntity.getId(), url, 1, detailObject); |
|
|
|
|
// 需要盘点这个对象的
|
|
|
|
|
String resp = opPackagePushLogEntity.getResp(); |
|
|
|
|
|
|
|
|
|
// 转换为json
|
|
|
|
|
// JSONObject respJson = JSONObject.parseObject(resp);
|
|
|
|
|
log.info(FactoryConstant.OUPAI,">>>>>>>>>>>>>>>>>>>>>>> 推送欧派返回数据 {}", resp); |
|
|
|
|
log.info(" >>>>>>>>>>>>>>>>>>>>>>> 推送欧派返回数据 {}",resp); |
|
|
|
|
// TODO: 2023/10/25 不知道返回成功的状态是多少
|
|
|
|
|
|
|
|
|
|
// 需要修改包件对应的状态
|
|
|
|
@ -418,7 +419,7 @@ public class OuPaiFactoryServiceImpl implements IOuPaiFactoryService {
|
|
|
|
|
try { |
|
|
|
|
rabbitTemplate.convertAndSend(RabbitConstant.OUPAI_SIGN_EXCHANGE, RabbitConstant.OUPAI_SIGN_ROUTING, map); |
|
|
|
|
} catch (Exception e) { |
|
|
|
|
log.error(FactoryConstant.OUPAI,"############handlePackageData: {}", e.getMessage()); |
|
|
|
|
log.error("############handlePackageData: {}", e.getMessage()); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
@ -521,11 +522,11 @@ public class OuPaiFactoryServiceImpl implements IOuPaiFactoryService {
|
|
|
|
|
try { |
|
|
|
|
JSONObject jsonObject = JSONObject.parseObject(opOrderStatusLogEntity.getResponseBody()); |
|
|
|
|
JSONArray resultArray = jsonObject.getJSONArray("value"); |
|
|
|
|
log.info(FactoryConstant.OUPAI,"############handleData: 数据处理开始"); |
|
|
|
|
log.info("############handleData: 数据处理开始"); |
|
|
|
|
analyzeData(resultArray); |
|
|
|
|
opOrderStatusLogEntity.setDataStatus(1); |
|
|
|
|
} catch (Exception e) { |
|
|
|
|
log.error(FactoryConstant.OUPAI,">>>> error {}", e.getMessage()); |
|
|
|
|
log.error(">>>> TAG {} error {}",FactoryConstant.OUPAI, e.getMessage()); |
|
|
|
|
opOrderStatusLogEntity.setDataStatus(2); |
|
|
|
|
|
|
|
|
|
} |
|
|
|
@ -542,7 +543,7 @@ public class OuPaiFactoryServiceImpl implements IOuPaiFactoryService {
|
|
|
|
|
for (int i = 0; i < resultArray.size(); i++) { |
|
|
|
|
JSONObject valueObject = resultArray.getJSONObject(i); |
|
|
|
|
if (Objects.isNull(valueObject)) { |
|
|
|
|
log.warn(FactoryConstant.OUPAI,"############handleData: value中没有数据"); |
|
|
|
|
log.warn("############handleData: value中没有数据"); |
|
|
|
|
throw new CustomerException(403, "value中没有数据"); |
|
|
|
|
} |
|
|
|
|
JSONObject fromWarehouse = valueObject.getJSONObject("FromWarehouse"); |
|
|
|
@ -613,7 +614,7 @@ public class OuPaiFactoryServiceImpl implements IOuPaiFactoryService {
|
|
|
|
|
JSONObject packageEntity = packages.getJSONObject(j);//包件信息
|
|
|
|
|
JSONObject orderEntity = packageEntity.getJSONObject("Order");//订单信息
|
|
|
|
|
if(orderEntity==null){ |
|
|
|
|
log.info(FactoryConstant.OUPAI,"包件数据没有订单信息 packageCode {}",packageEntity.getString("Code")); |
|
|
|
|
log.info("包件数据没有订单信息 packageCode {}",packageEntity.getString("Code")); |
|
|
|
|
continue; |
|
|
|
|
} |
|
|
|
|
String selfCode = orderEntity.getString("SelfCode");//订单自编码
|
|
|
|
@ -719,7 +720,7 @@ public class OuPaiFactoryServiceImpl implements IOuPaiFactoryService {
|
|
|
|
|
factoryOrderEntity.setTurnStatus(0); |
|
|
|
|
boolean save = factoryOrderService.save(factoryOrderEntity); |
|
|
|
|
if (!save) { |
|
|
|
|
log.warn(FactoryConstant.OUPAI,"############handleData: 保存订单失败 selfCode={}", selfCode); |
|
|
|
|
log.warn("############handleData: 保存订单失败 selfCode={}", selfCode); |
|
|
|
|
throw new CustomerException(403, "保存订单失败"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
@ -824,19 +825,19 @@ public class OuPaiFactoryServiceImpl implements IOuPaiFactoryService {
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
|
log.info(FactoryConstant.OUPAI,"############handleData: 包件码已存在 packageCode={}", packageCode); |
|
|
|
|
log.info("############handleData: 包件码已存在 packageCode={}", packageCode); |
|
|
|
|
throw new CustomerException(403, "包件码已存在"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
|
log.error(FactoryConstant.OUPAI,"############handleData: 保存发货单数据失败 code={}", code); |
|
|
|
|
log.error("############handleData: 保存发货单数据失败 code={}", code); |
|
|
|
|
throw new CustomerException(403, "保存发货单数据失败"); |
|
|
|
|
} |
|
|
|
|
Date end = new Date(); |
|
|
|
|
long startLong = start.getTime(); |
|
|
|
|
long endLong = end.getTime(); |
|
|
|
|
long l = endLong - startLong; |
|
|
|
|
log.info(FactoryConstant.OUPAI,"############handleData: 数据处理完成 耗时 {} 毫秒", l); |
|
|
|
|
log.info("############handleData: 数据处理完成 耗时 {} 毫秒", l); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|