|
|
@ -104,7 +104,8 @@ public class OuPaiFactoryServiceImpl implements IOuPaiFactoryService { |
|
|
|
// 对返回i的数据进行处理 按照 发车单-->订单-->包件 完成保存
|
|
|
|
// 对返回i的数据进行处理 按照 发车单-->订单-->包件 完成保存
|
|
|
|
handleData(code); |
|
|
|
handleData(code); |
|
|
|
if (ObjectUtils.isNotNull(code)) { |
|
|
|
if (ObjectUtils.isNotNull(code)) { |
|
|
|
asyncDataService.handlerOuPaiDataToHt(code); |
|
|
|
// 暂停推送
|
|
|
|
|
|
|
|
// asyncDataService.handlerOuPaiDataToHt(code);
|
|
|
|
} |
|
|
|
} |
|
|
|
return code; |
|
|
|
return code; |
|
|
|
|
|
|
|
|
|
|
@ -739,10 +740,9 @@ public class OuPaiFactoryServiceImpl implements IOuPaiFactoryService { |
|
|
|
String selfCode = orderEntity.getString("SelfCode");//订单自编码
|
|
|
|
String selfCode = orderEntity.getString("SelfCode");//订单自编码
|
|
|
|
//先查询是否存在订单自编码
|
|
|
|
//先查询是否存在订单自编码
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// factoryOrderService.selectEntityBySelfCode(selfCode,receivingId);
|
|
|
|
FactoryOrderEntity factoryOrderEntity = factoryOrderService.selectEntityBySelfCode(selfCode, receivingId); |
|
|
|
|
|
|
|
if(Objects.isNull(factoryOrderEntity)){ |
|
|
|
|
|
|
|
factoryOrderEntity = new FactoryOrderEntity(); |
|
|
|
FactoryOrderEntity factoryOrderEntity = new FactoryOrderEntity(); |
|
|
|
|
|
|
|
factoryOrderEntity.setCode(orderEntity.getString("Code")); |
|
|
|
factoryOrderEntity.setCode(orderEntity.getString("Code")); |
|
|
|
factoryOrderEntity.setSelfCode(selfCode); |
|
|
|
factoryOrderEntity.setSelfCode(selfCode); |
|
|
|
factoryOrderEntity.setContractNumber(orderEntity.getString("ContractNumber")); |
|
|
|
factoryOrderEntity.setContractNumber(orderEntity.getString("ContractNumber")); |
|
|
@ -838,16 +838,14 @@ public class OuPaiFactoryServiceImpl implements IOuPaiFactoryService { |
|
|
|
factoryOrderEntity.setReceiptStatus(0); |
|
|
|
factoryOrderEntity.setReceiptStatus(0); |
|
|
|
factoryOrderEntity.setPushStatus(0); |
|
|
|
factoryOrderEntity.setPushStatus(0); |
|
|
|
factoryOrderEntity.setTurnStatus(0); |
|
|
|
factoryOrderEntity.setTurnStatus(0); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
boolean save = factoryOrderService.save(factoryOrderEntity); |
|
|
|
boolean save = factoryOrderService.save(factoryOrderEntity); |
|
|
|
if (!save) { |
|
|
|
if (!save) { |
|
|
|
log.error("############handleData: 保存订单失败 selfCode={}", selfCode); |
|
|
|
log.error("############handleData: 保存订单失败 selfCode={}", selfCode); |
|
|
|
throw new CustomerException(403, "保存订单失败"); |
|
|
|
throw new CustomerException(403, "保存订单失败"); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
//保存订单成功,继续保存包件
|
|
|
|
//保存订单成功,继续保存包件
|
|
|
|
Long orderId = factoryOrderEntity.getId(); |
|
|
|
Long orderId = factoryOrderEntity.getId(); |
|
|
|
String packageCode = packageEntity.getString("Code"); |
|
|
|
String packageCode = packageEntity.getString("Code"); |
|
|
|