I have created two entities, otherIncome and bonus, which have a one-to-many relationship. When I generate a PDF by printing otherIncome, I need to include fields from the bonus table. How can I achieve this? When printing otherIncome, I cannot find the placeholders for fields from the bonus table.
Announcement
Collapse
No announcement yet.
How to generate a PDF including fields of son entity?
Collapse
X
-
How to generate a PDF including fields of son entity?
I have created two entities, otherIncome and bonus, which have a one-to-many relationship. When I generate a PDF by printing otherIncome, I need to include fields from the bonus table. How can I achieve this? When printing otherIncome, I cannot find the placeholders for fields from the bonus table.Tags: None
-
In case of related records, the placeholders ar not provided in the drop down. You will have to find them in your realted entity and type in manually, like:
{{account.name}}, where account is the related entity, name the field you want to print out.
See also here: https://docs.espocrm.com/user-guide/printing-to-pdf/
Comment