Skip to content

Commit

Permalink
feat: print tax id on invoice header
Browse files Browse the repository at this point in the history
  • Loading branch information
barredterra committed Aug 30, 2023
1 parent b1bf4ff commit aa01698
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions print_format/sales_invoice.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,12 @@
<td class="text-right">{{ doc.po_no }}</td>
</tr>
{% endif %}
{% if doc.tax_id %}
<tr>
<td>{{ _("Your Tax ID") }}:</td>
<td class="text-right">{{ doc.tax_id }}</td>
</tr>
{% endif %}
{% if doc.from_date and doc.to_date %}
<tr>
<td>{{ _("Performance Period") }}:</td>
Expand Down

0 comments on commit aa01698

Please sign in to comment.