记得上下班打卡 | git大法好,push需谨慎

Commit 54951284 authored by zhoujianping's avatar zhoujianping

1.退款失败定时处理

parent f75b5038
...@@ -147,6 +147,9 @@ public class OrderRefundsCallbackServiceImpl extends ServiceImpl<KylinOrderRefun ...@@ -147,6 +147,9 @@ public class OrderRefundsCallbackServiceImpl extends ServiceImpl<KylinOrderRefun
Wrappers.lambdaQuery(KylinOrderRefunds.class) Wrappers.lambdaQuery(KylinOrderRefunds.class)
.eq(KylinOrderRefunds::getOrderRefundsId, orderRefundsId) .eq(KylinOrderRefunds::getOrderRefundsId, orderRefundsId)
); );
if(null==refund){
ResponseDto.failure("退款订单不存在");
}
KylinOrderTickets oderInfo = kylinOrderTicketsMapper.selectOne( KylinOrderTickets oderInfo = kylinOrderTicketsMapper.selectOne(
new QueryWrapper<KylinOrderTickets>() new QueryWrapper<KylinOrderTickets>()
.eq("order_tickets_id", refund.getOrderTicketsId()) .eq("order_tickets_id", refund.getOrderTicketsId())
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment