Added qr code

Added qr code on ticket pdf and ticket show page.
This commit is contained in:
siddhantbajaj 2017-07-27 17:25:17 +05:30
parent d0a9610992
commit 4b735cff69
4 changed files with 11 additions and 1 deletions

View file

@ -77,5 +77,9 @@ class TicketPdf < Prawn::Document
move_up 180
end
def draw_fourth_square; end
def draw_fourth_square
x = @mid_horizontal + (@right - @mid_horizontal - 180) / 2
y = cursor - (bounds.top - @mid_vertical - 180) / 2
print_qr_code(@physical_ticket.token, pos: [x, y], extent: 180, stroke: false)
end
end