| | |
| | | |
| | | import cc.mrbird.febs.mall.service.IAgentService; |
| | | import cc.mrbird.febs.mall.service.IApiMallOrderInfoService; |
| | | import cc.mrbird.febs.mall.service.IMemberProfitService; |
| | | import cc.mrbird.febs.rabbit.constants.QueueConstants; |
| | | import cc.mrbird.febs.rabbit.enumerates.RabbitQueueEnum; |
| | | import cc.mrbird.febs.vip.service.IVipCommonService; |
| | | import com.rabbitmq.client.Channel; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.springframework.amqp.core.Message; |
| | |
| | | private IApiMallOrderInfoService orderInfoService; |
| | | @Autowired |
| | | private IAgentService agentService; |
| | | @Autowired |
| | | private IMemberProfitService memberProfitService; |
| | | |
| | | @RabbitListener(queues = QueueConstants.QUEUE_DEFAULT) |
| | | public void agentReturn(Message message, Channel channel) { |
| | | log.info("消费者:{}", new String(message.getBody())); |
| | | } |
| | | |
| | | @RabbitListener(queues = "queue_order_delay") |
| | | @RabbitListener(queues = "queue_order_delay_qay") |
| | | public void orderCancelDelay(String id) { |
| | | try { |
| | | orderInfoService.autoCancelOrder(Long.parseLong(id)); |
| | |
| | | @RabbitListener(queues = QueueConstants.AGENT_RETURN_MONEY) |
| | | public void agentReturnMoney(String orderId) { |
| | | log.info("收到返利消息:{}", orderId); |
| | | try{ |
| | | try { |
| | | agentService.returnMoneyToAgent(Long.parseLong(orderId)); |
| | | } catch (Exception e) { |
| | | log.error("返利异常", e); |
| | | } |
| | | } |
| | | |
| | | @RabbitListener(queues = QueueConstants.ORDER_RETURN_MONEY) |
| | | public void orderReturnMoney(String orderId) { |
| | | log.info("收到订单返利消息:{}", orderId); |
| | | try { |
| | | memberProfitService.dynamicProfit(Long.parseLong(orderId)); |
| | | } catch (Exception e) { |
| | | log.error("订单返利异常:", e); |
| | | } |
| | | } |
| | | |
| | | @RabbitListener(queues = QueueConstants.ORDER_COUPON) |
| | | public void getOrderCoupon(Long orderId) { |
| | | log.info("收到使用优惠卷消息:{}", orderId); |
| | | try { |
| | | memberProfitService.getOrderCoupon(orderId); |
| | | } catch (Exception e) { |
| | | log.error("使用优惠卷异常:", e); |
| | | } |
| | | } |
| | | |
| | | @Autowired |
| | | private IVipCommonService vipCommonService; |
| | | |
| | | @RabbitListener(queues = QueueConstants.GET_SCORE_MSG) |
| | | public void getScoreMsg(Long orderId) { |
| | | log.info("收到积分消息:{}", orderId); |
| | | try { |
| | | vipCommonService.getScore(orderId); |
| | | } catch (Exception e) { |
| | | log.error("获取积分消息异常", e); |
| | | } |
| | | } |
| | | |
| | | @RabbitListener(queues = QueueConstants.VIP_LEVEL_UP) |
| | | public void vipLevelUp(Long orderId) { |
| | | log.info("收到会员升级消息:{}", orderId); |
| | | try { |
| | | vipCommonService.levelUp(orderId); |
| | | } catch (Exception e) { |
| | | log.error("会员升级消息异常", e); |
| | | } |
| | | } |
| | | } |