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

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

代理修改

parent 98e21b93
...@@ -204,17 +204,18 @@ public class KylinPerformancesServiceImpl implements IKylinPerformancesService { ...@@ -204,17 +204,18 @@ public class KylinPerformancesServiceImpl implements IKylinPerformancesService {
// 会员状态 // 会员状态
Integer isMemberStatus = getIsMemberStatus(ticket); Integer isMemberStatus = getIsMemberStatus(ticket);
ticket.setIsMemberStatus(isMemberStatus); ticket.setIsMemberStatus(isMemberStatus);
if (1 >= isAgent) { if (null == isAgent || 0 == isAgent) {
ticketListNew.add(ticket);
} else if (1 >= isAgent) {
if (1 == ticket.getIsAgent()) { if (1 == ticket.getIsAgent()) {
ticketListNew.add(ticket); ticketListNew.add(ticket);
} }
} else if (null == isAgent || 0 == isAgent) {
ticketListNew.add(ticket);
} }
} }
partner.setTicketList(ticketListNew); partner.setTicketList(ticketListNew);
if (ticketListNew.size() == 0) { if (ticketListNew.size() == 0) {
ticketTimesList.remove(i); ticketTimesList.remove(i);
i--;
} }
} }
} }
......
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