| | |
| | | @Autowired |
| | | private PayMoneyUtil payMoneyUtil; |
| | | @Autowired |
| | | private IOrderLogisticsService orderLogisticsService; |
| | | private TAbnormalPayOrderMapper abnormalPayOrderMapper; |
| | | @Autowired |
| | | private ITaxiCardPaymentService taxiCardPaymentService; |
| | | @Autowired |
| | |
| | | this.baseMapper.updateById(orderPrivateCar); |
| | | } |
| | | } |
| | | |
| | | // 是否异常订单 |
| | | if (orderPrivateCar.getResponsibilityType() !=null && orderPrivateCar.getResponsibilityType() >2) { |
| | | TAbnormalPayOrder tAbnormalPayOrder = abnormalPayOrderMapper.selectList(new EntityWrapper<TAbnormalPayOrder>().eq("type", 1).eq("orderNum", orderPrivateCar.getOrderNum())).stream().findFirst().orElse(null); |
| | | if (tAbnormalPayOrder != null) { |
| | | tAbnormalPayOrder.setPayStatus(2); |
| | | tAbnormalPayOrder.setPayTime(new Date()); |
| | | abnormalPayOrderMapper.updateById(tAbnormalPayOrder); |
| | | } |
| | | } |
| | | } |
| | | } |