QR code in Print Template?

Getting Print-view url (authenticated):

{{frappe.get_url()}}/{{doc.doctype}}/{{doc.name}}

Getting Print-view url (guests):

{{frappe.get_url()}}/{{doc.doctype}}/{{doc.name}}?key={{frappe.get_doc(doc.doctype, doc.name).get_signature()}}

and you need to enable this for guest links to work:

Using either jinja blocks above in your print format as the src of <img>

Similar to:

2 Likes