{% if showGeneralData is defined %}
{{ 'Product type'|trans }}:
{{ entity.productType.name}}
{{ 'Contract number'|trans }}:
{{ entity.contractNumber}}
{{ 'Sale date'|trans }}:
{{ entity.saleDate|date('d-m-Y')}}
{{ 'Life years'|trans }}:
{{ entity.lifeYears}}
{{ 'Expiration date'|trans }}:
{{ entity.expirationDate|date('d-m-Y')}}
{{ 'Annuities'|trans }}:
{{ entity.annuities}}
{{ 'Annual quota'|trans }}:
{{ entity.annualQuota|price}}
{{ 'Start payment date'|trans }}:
{{ entity.startPaymentDate|date('d-m-Y')}}
{% if entity.commentsZeroAnnualQuote %}
{% endif %}
{{ 'Total price'|trans }}:
{{ entity.totalPrice|price}}
{{ 'Closing cost'|trans }}:
{{ entity.closingCost|price}}
{{ 'Total sale'|trans }}:
{{ entity.totalSale|price}}
{{ '% de pago inicial'|capitalize }}:
{{ entity.initialPaymentPercentage }} %
{{ 'Enganche a mensualidades'|trans }}:
{{ entity.initialPaymentException ? 'SI' : 'NO'}}
{{ 'Primera mensualidad'|trans }}:
{{ entity.monthlyPaymentsStartDate|date('d-m-Y')}}
{{ 'Observations'|trans }}:
{{ entity.observations}}
{% endif %}
| {{ '#' }} |
{{ 'Movement type'|trans }} |
{{ 'proposedPaymentDate'|trans }} |
{{ 'A pagar'|trans }} |
{% if entity.productType.name == 'Traveler' %}
{{ 'Pago a tiempo'|trans }} |
{{ 'Descueto'|trans }} |
{% endif %}
{% if entity.productType.name == 'Con-tacto' %}
{{ 'interestAmount'|trans|capitalize }} |
{% endif %}
{{ 'payedAmount'|trans|capitalize }} |
{{ 'realPaymentDate'|trans|capitalize }} |
{{ 'paymentmethod'|trans|capitalize }} |
{{ 'Balance' }} |
{% for transaction in accountStatus.movements %}
| {{ transaction.number }} |
{{ transaction.concept }} |
{{ transaction.proposedPaymentDate|date('d-m-Y') }} |
{{ transaction.transactionAmount }} |
{% if entity.productType.name == 'Traveler' %}
{{ transaction.timelyPayment }} |
{{ transaction.timelyPaymentDiscount }} |
{% endif %}
{% if entity.productType.name == 'Con-tacto' %}
{{ transaction.interestAmount }} |
{% endif %}
{{ transaction.payedAmount }} |
{{ transaction.realPaymentDate }} |
{{ transaction.paymentMethod }} |
{{ transaction.balance }} |
{% endfor %}
| {{ 'Totales' |trans|upper }} |
{% if accountStatus.totalInterestAmount is defined %}
{{ accountStatus.totalFinancing }} |
{{ accountStatus.totalInterestAmount }} |
{{ accountStatus.totalPayedAmount }} |
{% else %}
{{ accountStatus.totalFinancing }} |
{{ accountStatus.totalFinancingTimelyPayment }} |
{{ accountStatus.totalTimelyPaymentDiscount }} |
{{ accountStatus.totalPayedAmount }} |
{% endif %}