Skip to content

Commit

Permalink
fix-9127: Add the unique ticket code into the downlad CSV file (#9132)
Browse files Browse the repository at this point in the history
  • Loading branch information
lthanhhieu committed Mar 22, 2024
1 parent 38d20b3 commit 7b0fdd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/models/ticket_holder.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def qr_code(self):
box_size=10,
border=0,
)
qr.add_data(self.order.identifier + "-" + str(self.id))
qr.add_data(self.order.identifier)
qr.make(fit=True)
img = qr.make_image()

Expand Down

0 comments on commit 7b0fdd1

Please sign in to comment.