| {{ contractItem.contract.contractNumber }}
| Recibos:
{% for payment in contractItem.stcPayments %}
(
{{ payment.invoiceReceipt }} )
{% endfor %}
|
{{ contractItem.contract.saleDate|date('d-m-Y') }} |
{{ contractItem.contract.totalSale|price('') }} |
{{ contractItem.totalInitialPayments|price('') }}
|
{{ contractItem.paymentPercentage|price('') }} |
{{ contractItem.commissionableAmount|price('') }} |
{% set totalSale = totalSale + contractItem.contract.totalSale %}
{% set totalInitial = totalInitial + contractItem.totalInitialPayments %}
{% set commissionable = commissionable + contractItem.commissionableAmount %}
{% endfor %}