|
|
|
@ -3,6 +3,7 @@ package com.logpm.distribution.service.impl;
|
|
|
|
|
import cn.hutool.json.JSONObject; |
|
|
|
|
import cn.hutool.json.JSONUtil; |
|
|
|
|
import com.logpm.distribution.entity.DistributionParcelListEntity; |
|
|
|
|
import com.logpm.distribution.pros.DistributionProperties; |
|
|
|
|
import com.logpm.distribution.service.IDistributionNodeWorkService; |
|
|
|
|
import com.logpm.factorydata.enums.BrandEnums; |
|
|
|
|
import com.logpm.factorydata.util.FactoryDataMessageSender; |
|
|
|
@ -11,7 +12,16 @@ import com.logpm.factorydata.vo.PushData;
|
|
|
|
|
import lombok.extern.slf4j.Slf4j; |
|
|
|
|
import org.springblade.common.constant.WorkNodeEnums; |
|
|
|
|
import org.springblade.common.constant.broadcast.FanoutConstants; |
|
|
|
|
import org.springblade.common.model.*; |
|
|
|
|
import org.springblade.common.model.CarStartVO; |
|
|
|
|
import org.springblade.common.model.ConsigneeArriveVO; |
|
|
|
|
import org.springblade.common.model.DistributionLoadVO; |
|
|
|
|
import org.springblade.common.model.DistributionReCheckSignVO; |
|
|
|
|
import org.springblade.common.model.DistributionSignforVO; |
|
|
|
|
import org.springblade.common.model.DistributionTaskVO; |
|
|
|
|
import org.springblade.common.model.FanoutMsg; |
|
|
|
|
import org.springblade.common.model.NodeFanoutMsg; |
|
|
|
|
import org.springblade.common.model.ReservationVO; |
|
|
|
|
import org.springblade.common.model.StockUpVO; |
|
|
|
|
import org.springblade.common.model.workNode.DeliveryOfPickupPlanVO; |
|
|
|
|
import org.springblade.common.model.workNode.FinishDistributionTrainVO; |
|
|
|
|
import org.springblade.common.model.workNode.PickUpByReCheckVO; |
|
|
|
@ -36,14 +46,17 @@ public class DistributionNodeWorkServiceImpl implements IDistributionNodeWorkSer
|
|
|
|
|
private RabbitTemplate rabbitTemplate; |
|
|
|
|
@Autowired |
|
|
|
|
private FactoryDataMessageSender factoryDataMessageSender; |
|
|
|
|
|
|
|
|
|
@Autowired |
|
|
|
|
private DistributionProperties distributionProperties; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public void planReservation(NodeFanoutMsg<ReservationVO> nodeFanoutMsg, BladeUser user) { |
|
|
|
|
|
|
|
|
|
try { |
|
|
|
|
// rabbitTemplate.convertAndSend(FanoutConstants.reservation.OwnReservation.EXCHANGE, null, com.alibaba.fastjson.JSONObject.toJSONString(nodeFanoutMsg));
|
|
|
|
|
if (distributionProperties.getSendFanoutMsg()) { |
|
|
|
|
rabbitTemplate.convertAndSend(FanoutConstants.reservation.OwnReservation.EXCHANGE, null, com.alibaba.fastjson.JSONObject.toJSONString(nodeFanoutMsg)); |
|
|
|
|
} |
|
|
|
|
} catch (AmqpException e) { |
|
|
|
|
log.error(">>>>>>>>>>>>>>>>>>>>>>>>>> 消息推送失败~ 请联系管理员! ", e); |
|
|
|
|
} |
|
|
|
@ -53,18 +66,21 @@ public class DistributionNodeWorkServiceImpl implements IDistributionNodeWorkSer
|
|
|
|
|
@Override |
|
|
|
|
public void planDelivery(NodeFanoutMsg<DistributionTaskVO> nodeFanoutMsg, BladeUser user) { |
|
|
|
|
try { |
|
|
|
|
// rabbitTemplate.convertAndSend(FanoutConstants.distribution.DeliveryAndPlan.EXCHANGE, null, com.alibaba.fastjson.JSONObject.toJSONString(nodeFanoutMsg));
|
|
|
|
|
if (distributionProperties.getSendFanoutMsg()) { |
|
|
|
|
rabbitTemplate.convertAndSend(FanoutConstants.distribution.DeliveryAndPlan.EXCHANGE, null, com.alibaba.fastjson.JSONObject.toJSONString(nodeFanoutMsg)); |
|
|
|
|
} |
|
|
|
|
} catch (AmqpException e) { |
|
|
|
|
log.error(">>>>>>>>>>>>>>>>>>>>>>>>>> 消息推送失败~ 请联系管理员! ", e); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public void cancelReservation(NodeFanoutMsg<ReservationVO> nodeFanoutMsg, BladeUser user) { |
|
|
|
|
try { |
|
|
|
|
// rabbitTemplate.convertAndSend(FanoutConstants.reservation.OwnReservation.EXCHANGE, null, com.alibaba.fastjson.JSONObject.toJSONString(nodeFanoutMsg));
|
|
|
|
|
if (distributionProperties.getSendFanoutMsg()) { |
|
|
|
|
rabbitTemplate.convertAndSend(FanoutConstants.reservation.OwnReservation.EXCHANGE, null, com.alibaba.fastjson.JSONObject.toJSONString(nodeFanoutMsg)); |
|
|
|
|
} |
|
|
|
|
} catch (AmqpException e) { |
|
|
|
|
log.error(">>>>>>>>>>>>>>>>>>>>>>>>>> 消息推送失败~ 请联系管理员! ", e); |
|
|
|
|
} |
|
|
|
@ -74,7 +90,9 @@ public class DistributionNodeWorkServiceImpl implements IDistributionNodeWorkSer
|
|
|
|
|
public void planStock(NodeFanoutMsg<StockUpVO> nodeFanoutMsg, BladeUser user) { |
|
|
|
|
// 备货信息主表
|
|
|
|
|
try { |
|
|
|
|
// rabbitTemplate.convertAndSend(FanoutConstants.distribution.stock.EXCHANGE, null, com.alibaba.fastjson.JSONObject.toJSONString(nodeFanoutMsg));
|
|
|
|
|
if (distributionProperties.getSendFanoutMsg()) { |
|
|
|
|
rabbitTemplate.convertAndSend(FanoutConstants.distribution.stock.EXCHANGE, null, com.alibaba.fastjson.JSONObject.toJSONString(nodeFanoutMsg)); |
|
|
|
|
} |
|
|
|
|
} catch (AmqpException e) { |
|
|
|
|
log.error(">>>>>>>>>>>>>>>>>>>>>>>>>> 消息推送失败~ 请联系管理员! ", e); |
|
|
|
|
} |
|
|
|
@ -84,7 +102,9 @@ public class DistributionNodeWorkServiceImpl implements IDistributionNodeWorkSer
|
|
|
|
|
@Override |
|
|
|
|
public void nodeLoading(NodeFanoutMsg<DistributionLoadVO> nodeFanoutMsg, BladeUser user) { |
|
|
|
|
try { |
|
|
|
|
// rabbitTemplate.convertAndSend(FanoutConstants.distribution.DeliveryAndLoading.EXCHANGE, null, com.alibaba.fastjson.JSONObject.toJSONString(nodeFanoutMsg));
|
|
|
|
|
if (distributionProperties.getSendFanoutMsg()) { |
|
|
|
|
rabbitTemplate.convertAndSend(FanoutConstants.distribution.DeliveryAndLoading.EXCHANGE, null, com.alibaba.fastjson.JSONObject.toJSONString(nodeFanoutMsg)); |
|
|
|
|
} |
|
|
|
|
} catch (AmqpException e) { |
|
|
|
|
log.error(">>>>>>>>>>>>>>>>>>>>>>>>>> 消息推送失败~ 请联系管理员! ", e); |
|
|
|
|
} |
|
|
|
@ -93,7 +113,9 @@ public class DistributionNodeWorkServiceImpl implements IDistributionNodeWorkSer
|
|
|
|
|
@Override |
|
|
|
|
public void abnormalLoading(NodeFanoutMsg<DistributionLoadVO> nodeFanoutMsg, BladeUser user) { |
|
|
|
|
try { |
|
|
|
|
// rabbitTemplate.convertAndSend(FanoutConstants.distribution.DeliveryAndLoading.EXCHANGE, null, com.alibaba.fastjson.JSONObject.toJSONString(nodeFanoutMsg));
|
|
|
|
|
if (distributionProperties.getSendFanoutMsg()) { |
|
|
|
|
rabbitTemplate.convertAndSend(FanoutConstants.distribution.DeliveryAndLoading.EXCHANGE, null, com.alibaba.fastjson.JSONObject.toJSONString(nodeFanoutMsg)); |
|
|
|
|
} |
|
|
|
|
} catch (AmqpException e) { |
|
|
|
|
log.error(">>>>>>>>>>>>>>>>>>>>>>>>>> 消息推送失败~ 请联系管理员! ", e); |
|
|
|
|
} |
|
|
|
@ -107,7 +129,9 @@ public class DistributionNodeWorkServiceImpl implements IDistributionNodeWorkSer
|
|
|
|
|
@Override |
|
|
|
|
public void carStart(NodeFanoutMsg<CarStartVO> nodeFanoutMsg, BladeUser user) { |
|
|
|
|
try { |
|
|
|
|
// rabbitTemplate.convertAndSend(FanoutConstants.distribution.DeliveryAndCarStart.EXCHANGE, null, com.alibaba.fastjson.JSONObject.toJSONString(nodeFanoutMsg));
|
|
|
|
|
if (distributionProperties.getSendFanoutMsg()) { |
|
|
|
|
rabbitTemplate.convertAndSend(FanoutConstants.distribution.DeliveryAndCarStart.EXCHANGE, null, com.alibaba.fastjson.JSONObject.toJSONString(nodeFanoutMsg)); |
|
|
|
|
} |
|
|
|
|
} catch (AmqpException e) { |
|
|
|
|
log.error(">>>>>>>>>>>>>>>>>>>>>>>>>> 消息推送失败~ 请联系管理员! ", e); |
|
|
|
|
} |
|
|
|
@ -116,7 +140,9 @@ public class DistributionNodeWorkServiceImpl implements IDistributionNodeWorkSer
|
|
|
|
|
@Override |
|
|
|
|
public void carArrived(NodeFanoutMsg<ConsigneeArriveVO> nodeFanoutMsg, BladeUser user) { |
|
|
|
|
try { |
|
|
|
|
// rabbitTemplate.convertAndSend(FanoutConstants.distribution.DeliveryAndConsigneeArrive.EXCHANGE, null, com.alibaba.fastjson.JSONObject.toJSONString(nodeFanoutMsg));
|
|
|
|
|
if (distributionProperties.getSendFanoutMsg()) { |
|
|
|
|
rabbitTemplate.convertAndSend(FanoutConstants.distribution.DeliveryAndConsigneeArrive.EXCHANGE, null, com.alibaba.fastjson.JSONObject.toJSONString(nodeFanoutMsg)); |
|
|
|
|
} |
|
|
|
|
} catch (AmqpException e) { |
|
|
|
|
log.error(">>>>>>>>>>>>>>>>>>>>>>>>>> 消息推送失败~ 请联系管理员! ", e); |
|
|
|
|
} |
|
|
|
@ -125,11 +151,13 @@ public class DistributionNodeWorkServiceImpl implements IDistributionNodeWorkSer
|
|
|
|
|
@Override |
|
|
|
|
public void signFor(NodeFanoutMsg<DistributionSignforVO> nodeFanoutMsg, BladeUser user) { |
|
|
|
|
try { |
|
|
|
|
if(nodeFanoutMsg==null){ |
|
|
|
|
if (nodeFanoutMsg == null) { |
|
|
|
|
log.error(">>>>>>>>>>>>>>>>>>>>>>>>>> nodeFanoutMsg is null! "); |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
// rabbitTemplate.convertAndSend(FanoutConstants.distribution.DeliveryAndSignfor.EXCHANGE, null, com.alibaba.fastjson.JSONObject.toJSONString(nodeFanoutMsg));
|
|
|
|
|
if (distributionProperties.getSendFanoutMsg()) { |
|
|
|
|
rabbitTemplate.convertAndSend(FanoutConstants.distribution.DeliveryAndSignfor.EXCHANGE, null, com.alibaba.fastjson.JSONObject.toJSONString(nodeFanoutMsg)); |
|
|
|
|
} |
|
|
|
|
} catch (AmqpException e) { |
|
|
|
|
log.error(">>>>>>>>>>>>>>>>>>>>>>>>>> 签收节点消息推送失败~ 请联系管理员! ", e); |
|
|
|
|
} |
|
|
|
@ -168,19 +196,21 @@ public class DistributionNodeWorkServiceImpl implements IDistributionNodeWorkSer
|
|
|
|
|
@Override |
|
|
|
|
public void signForCheck(NodeFanoutMsg<DistributionReCheckSignVO> nodeFanoutMsg, BladeUser user) { |
|
|
|
|
try { |
|
|
|
|
// rabbitTemplate.convertAndSend(FanoutConstants.distribution.DeliveryAndrecheck.EXCHANGE, null, com.alibaba.fastjson.JSONObject.toJSONString(nodeFanoutMsg));
|
|
|
|
|
if (distributionProperties.getSendFanoutMsg()) { |
|
|
|
|
rabbitTemplate.convertAndSend(FanoutConstants.distribution.DeliveryAndrecheck.EXCHANGE, null, com.alibaba.fastjson.JSONObject.toJSONString(nodeFanoutMsg)); |
|
|
|
|
} |
|
|
|
|
} catch (AmqpException e) { |
|
|
|
|
log.error(">>>>>>>>>>>>>>>>>>>>>>>>>> 签收复核消息推送失败~ 请联系管理员! ", e); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public void planOfBill(NodeFanoutMsg<DeliveryOfPickupPlanVO> nodeFanoutMsg, BladeUser user) { |
|
|
|
|
try { |
|
|
|
|
// rabbitTemplate.convertAndSend(FanoutConstants.DeliveryOfPickup.BillPlan.EXCHANGE, null, com.alibaba.fastjson.JSONObject.toJSONString(nodeFanoutMsg));
|
|
|
|
|
if (distributionProperties.getSendFanoutMsg()) { |
|
|
|
|
rabbitTemplate.convertAndSend(FanoutConstants.DeliveryOfPickup.BillPlan.EXCHANGE, null, com.alibaba.fastjson.JSONObject.toJSONString(nodeFanoutMsg)); |
|
|
|
|
} |
|
|
|
|
} catch (AmqpException e) { |
|
|
|
|
log.error(">>>>>>>>>>>>>>>>>>>>>>>>>> 自提计划消息推送失败~ 请联系管理员! ", e); |
|
|
|
|
} |
|
|
|
@ -189,7 +219,9 @@ public class DistributionNodeWorkServiceImpl implements IDistributionNodeWorkSer
|
|
|
|
|
@Override |
|
|
|
|
public void signByBill(NodeFanoutMsg<PickUpByScanVO> nodeFanoutMsg, BladeUser user) { |
|
|
|
|
try { |
|
|
|
|
// rabbitTemplate.convertAndSend(FanoutConstants.DeliveryOfPickup.BillSign.EXCHANGE, null, com.alibaba.fastjson.JSONObject.toJSONString(nodeFanoutMsg));
|
|
|
|
|
if (distributionProperties.getSendFanoutMsg()) { |
|
|
|
|
rabbitTemplate.convertAndSend(FanoutConstants.DeliveryOfPickup.BillSign.EXCHANGE, null, com.alibaba.fastjson.JSONObject.toJSONString(nodeFanoutMsg)); |
|
|
|
|
} |
|
|
|
|
} catch (AmqpException e) { |
|
|
|
|
log.error(">>>>>>>>>>>>>>>>>>>>>>>>>> 自提签收消息推送失败~ 请联系管理员! ", e); |
|
|
|
|
} |
|
|
|
@ -198,7 +230,9 @@ public class DistributionNodeWorkServiceImpl implements IDistributionNodeWorkSer
|
|
|
|
|
@Override |
|
|
|
|
public void billofladingSignforCheck(NodeFanoutMsg<PickUpByReCheckVO> nodeFanoutMsg, BladeUser user) { |
|
|
|
|
try { |
|
|
|
|
// rabbitTemplate.convertAndSend(FanoutConstants.DeliveryOfPickup.BillSignReview.EXCHANGE, null, com.alibaba.fastjson.JSONObject.toJSONString(nodeFanoutMsg));
|
|
|
|
|
if (distributionProperties.getSendFanoutMsg()) { |
|
|
|
|
rabbitTemplate.convertAndSend(FanoutConstants.DeliveryOfPickup.BillSignReview.EXCHANGE, null, com.alibaba.fastjson.JSONObject.toJSONString(nodeFanoutMsg)); |
|
|
|
|
} |
|
|
|
|
} catch (AmqpException e) { |
|
|
|
|
log.error(">>>>>>>>>>>>>>>>>>>>>>>>>> 自提复核消息推送失败~ 请联系管理员! ", e); |
|
|
|
|
} |
|
|
|
@ -207,7 +241,9 @@ public class DistributionNodeWorkServiceImpl implements IDistributionNodeWorkSer
|
|
|
|
|
@Override |
|
|
|
|
public void finishDistributionTrain(NodeFanoutMsg<FinishDistributionTrainVO> nodeFanoutMsg, BladeUser user) { |
|
|
|
|
try { |
|
|
|
|
// rabbitTemplate.convertAndSend(FanoutConstants.distribution.DeliveryAndFinish.EXCHANGE, null, com.alibaba.fastjson.JSONObject.toJSONString(nodeFanoutMsg));
|
|
|
|
|
if (distributionProperties.getSendFanoutMsg()) { |
|
|
|
|
rabbitTemplate.convertAndSend(FanoutConstants.distribution.DeliveryAndFinish.EXCHANGE, null, com.alibaba.fastjson.JSONObject.toJSONString(nodeFanoutMsg)); |
|
|
|
|
} |
|
|
|
|
} catch (AmqpException e) { |
|
|
|
|
log.error(">>>>>>>>>>>>>>>>>>>>>>>>>> 车次完成消息推送失败~ 请联系管理员! ", e); |
|
|
|
|
} |
|
|
|
|