Commit dab97cde authored by Rafael Monnerat's avatar Rafael Monnerat

slapos_accounting: display customer VAT and Corporate code on the invoice

   If they exist.
parent cbe33814
......@@ -63,6 +63,12 @@
</tal:block>
<tal:block tal:content="python: destination_section_subordination.getDefaultRegionTitle()"></tal:block>
</p>
<tal:block tal:condition="python: destination_section_subordination.getCorporateRegistrationCode() is not None">
<p tal:content="python: 'Corporate Registration Code: %s' % destination_section_subordination.getCorporateRegistrationCode()"></p>
</tal:block>
<tal:block tal:condition="python: destination_section_subordination.getVatCode() is not None">
<p tal:content="python: 'VAT Code: %s' % destination_section_subordination.getVatCode()"></p>
</tal:block>
</tal:block>
<tal:block tal:condition="python: destination_section_subordination is None">
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment