Hello!
I am using the Print Designer app to create a purchase order format. When I try to display my company email in the “Ship to” box, it doesn’t display:

Where do I edit this field? The email is in the address book. I’m not sure why it’s not showing up here.
I am using Frappe cloud with ERPNext version 15. Here’s another screenshot. I have the company address in the address book. I found that I had two addresses, both with the “Company address” checkbox checked. I unchecked one of them, still not showing up.
Still not working. I’m also unable to get the manufacturer and manufacturer part number to follow the item. They are in the item’s data, and the item shows up on the PO, but those fields show up blank when printing.
If anyone is taking feedback on the print designer… it’s better than the “Customize” feature, but it’s still bug ridden. Key improvements are needed with icons that display what’s going on. It’s not intuitive that the header and footer need to be double clicked to enter or what the rules are to get boxes lined up.
It would be great if this tool generated custom CSS or HTML
From ChatGPT, here’s the response. You’ll use a custom HTML section in your print format.
{% set company_doc = frappe.get_doc("Company", doc.company) %}
{{ company_doc.email }}
For an example:
{% set company_doc = frappe.get_doc("Company", doc.company) %}
<p><strong>Email: </strong> {{ company_doc.email }}</p>