Bootstrap

苍穹外卖的微信支付和接单和催单提醒

    /**
     * 订单支付
     *
     * @param ordersPaymentDTO
     * @return
     */
    @PutMapping("/payment")
    @ApiOperation("订单支付")
    public Result<OrderPaymentVO> payment(@RequestBody OrdersPaymentDTO ordersPaymentDTO) throws Exception {
        log.info("订单支付:{}", ordersPaymentDTO);
        OrderPaymentVO orderPaymentVO = orderService.payment(ordersPaymentDTO);
       // log.info("生成预支付交易单:{}", orderPaymentVO);
        //模拟交易成功,修改订单状态
        orderService.paySuccess(ordersPaymentDTO.getOrderNumber());
        return Result.success(orderPaymentVO);
    }

payment的方法:

其实就是生成空的JsonObject,不然按照老师来的话,会报错,空指针错误

    @Autowired
    UserMapper userMapper;
    public OrderPaymentVO payment(OrdersPaymentDTO ordersPaymentDTO) throws Exception {
//        // 当前登录用户id
//        Long userId = BaseContext.getCurrentId();
//        User user = userMapper.getById(userId);

//        // 调用微信支付接口,生成预支付交易单
//        JSONObject jsonObject = weChatPayUtil.pay(
//                ordersPaymentDTO.getOrderNumber(), // 商户订单号
//                new BigDecimal(0.01), // 支付金额,单位 元
//                "苍穹外卖订单", // 商品描述
//                user.getOpenid() // 微信用户的openid
//        );
//
//

        //生成空jsonObject
        JSONObject jsonObject = new JSONObject();
        if (jsonObject.getString("code") != null && jsonObject.getString("code").equals("ORDERPAID")) {
            throw new OrderBusinessException("该订单已支付");
        }

        OrderPaymentVO vo = jsonObject.toJavaObject(OrderPaymentVO.class);
        vo.setPackageStr(jsonObject.getString("package"));
        return vo;
    }

paySuccess:

在这里直接使用WebSocketServer此昂客户端(商家)传递接单消息。

    /**
     * 支付成功,修改订单状态
     *
     * @param outTradeNo
     */

    @Autowired
    WebSocketServer webSocketServer;
    public void paySuccess(String outTradeNo) {

        // 根据订单号查询订单
        Orders ordersDB = orderMapper.getByNumber(outTradeNo);

        // 根据订单id更新订单的状态、支付方式、支付状态、结账时间
        Orders orders = Orders.builder()
                .id(ordersDB.getId())
                .status(Orders.TO_BE_CONFIRMED)
                .payStatus(Orders.PAID)
                .checkoutTime(LocalDateTime.now())
                .build();

        orderMapper.update(orders);

        // 通过websocket向客户端浏览器推送消息 type orderId content
        Map map = new HashMap();
        map.put("type",1); // 1表示来单提醒 2 表示客户催单
        map.put("orderId",ordersDB.getId());
        map.put("content","订单号 :" + outTradeNo);
        String jsonString = JSON.toJSONString(map);
        webSocketServer.sendToAllClient(jsonString);
    }
    @Override
    public void reminder(Long id) {
        Orders order = orderMapper.getOrdersById(id);
        if ( (order == null || !order.getStatus().equals(Orders.TO_BE_CONFIRMED))){
            throw new OrderBusinessException(MessageConstant.ORDER_STATUS_ERROR);
        }
        Map map = new HashMap<>();
        map.put("type",2);
        map.put("orderId",id);
        map.put("content","订单号" + order.getNumber());

        // 给客户端浏览器(商家)推消息
        webSocketServer.sendToAllClient(    JSON.toJSONString(map));
    }

;