Templating variables can be used to reference any field on any DocType in OneOfficeERP. This can simply be done by calling {{doc.field_name}} on a print format, where doc.name is the variable name for a certain field.
However this approach does not work for Child Tables inside a DocType. This article will help you traverse and display all rows pertaining to a child table inside any DocType.
We would require the variable name of the child table on the corresponding DocType. This can be viewed from the 'Customize Form' section for the required DocType. The same is illustrated below
We will also require the variable names of all the fields inside the child table which need to be referenced. This can be obtained from the 'Customize Form' section of the corresponding child table as shown below
{% for row in doc.items %}
* Item Code: {{ row.get_formatted("item_code", doc) }} Quantity: {{ row.get_formatted("qty", doc) }} Rate: {{ row.get_formatted("rate", doc) }} Amount: {{ row.get_formatted("amount", doc) }}
{% endfor %}
The output on a print format would be as follows
Item Code
Quantity
Rate
Amount
{% for item in doc.items %}
{{item.item_code }}
{{item.qty}}
{{item.rate}}
{{item.amount}}
{% endfor %}
The output on a print format would be as follows
This template can be used for reference. Any additional fields on the child table field can be fetched in a similar manner, by amending the Jinja template.