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

Commit ba959939 authored by 胡佳晨's avatar 胡佳晨

修改 票种库存为0 并且票种下线后 显示售罄的bug

parent cc298d6e
...@@ -593,7 +593,7 @@ public class KylinPerformancesServiceImpl implements IKylinPerformancesService { ...@@ -593,7 +593,7 @@ public class KylinPerformancesServiceImpl implements IKylinPerformancesService {
getStatus = 6; getStatus = 6;
} }
boolean isSellOut = dataUtils.ticketIsSoldOut(ticketItem.getTicketsId()); boolean isSellOut = dataUtils.ticketIsSoldOut(ticketItem.getTicketsId());
if (isSellOut) { if (isSellOut && getStatus != 7) {
status = 8; status = 8;
getStatus = 8; getStatus = 8;
} }
......
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