{% include "pdfPrintAssets/header.html.twig" %}
{{ 'Invoice' }}
{{ 'Recipient' | trans }}
{{ getFreshAppSetting('school_name',true) is empty ? 'School name is missing' }}
{{ "Description" | trans }} |
{{ "Price" | trans }} |
{% for invItem in invoice.getInvoiceItems.toArray() %}
{{ invItem.getInvItemDescription }} |
{{ getFreshAppSetting('currencyPreFix') }}{{ invItem.getInvItemAmount() }}
{{ getFreshAppSetting('currencySuffex') }} |
{% endfor %}
{{ 'Total' | trans }} |
{{ getFreshAppSetting('currencyPreFix') }}{{ invoice.getTotalAmountOfInvoice }}
{{ getFreshAppSetting('currencySuffex') }}
|
{{ 'Amount Paid' | trans }} |
{{ getFreshAppSetting('currencyPreFix') }}{{ invoice.getTotalAmountOfInvoice - invoice.getTheInvoiceAmountWhichIsNotPaid }}
{{ getFreshAppSetting('currencySuffex') }} |
{{ 'Balance Due' | trans }} |
{{ getFreshAppSetting('currencyPreFix') }}{{ invoice.getTheInvoiceAmountWhichIsNotPaid }}
{{ getFreshAppSetting('currencySuffex') }} |