Skip to content

Commit

Permalink
Fix dict. Boxoffice api send receipt_no
Browse files Browse the repository at this point in the history
  • Loading branch information
vidya-ram committed Jul 4, 2024
1 parent 9d729f2 commit e0eeeb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion funnel/extapi/boxoffice.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def get_tickets(self, ic: str) -> list[ExtTicketsDict]:
'ticket_type': line_item.get('ticket', {}).get('title', '')[
:80
],
'order_no': str(order.get('invoice_no', '')),
'order_no': str(order.get('receipt_no', '')),
'status': status,
}
)
Expand Down

0 comments on commit e0eeeb9

Please sign in to comment.