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

Commit 7be6f7a1 authored by 胡佳晨's avatar 胡佳晨

ticket counts 大于1 不可退款

parent 1eb145ca
...@@ -1153,6 +1153,10 @@ public class KylinOrderTicketsServiceImpl implements IKylinOrderTicketsService { ...@@ -1153,6 +1153,10 @@ public class KylinOrderTicketsServiceImpl implements IKylinOrderTicketsService {
return "无权查看"; return "无权查看";
} }
if (!orderTicketVo.getPayStatus().equals(1)) {
return "暂不支持退款";
}
KylinPerformanceVo performanceVo = dataUtils.getPerformanceVo(orderTicketVo.getPerformanceId()); KylinPerformanceVo performanceVo = dataUtils.getPerformanceVo(orderTicketVo.getPerformanceId());
KylinTicketVo ticketVo = null; KylinTicketVo ticketVo = null;
//获取购票数据 //获取购票数据
......
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