{{ from_and_to[0] | date('Y-m-d') }} - {{ from_and_to[1] | date('Y-m-d') }} |
{{ key | trim }} |
{{ entity.account_number | trim }} |
{{ entity.account_name | trim }} |
{% if app.request.get('age') | number_format(0, '', '') >= 120 %}
{{ d2_config('currency_symbol') }} {{ entity.total_120 | number_format(2, '.', ' ') }} |
{% endif %}
{% if app.request.get('age') | number_format(0, '', '') >= 90 %}
{{ d2_config('currency_symbol') }} {{ entity.total_90 | number_format(2, '.', ' ') }} |
{% endif %}
{% if app.request.get('age') | number_format(0, '', '') >= 60 %}
{{ d2_config('currency_symbol') }} {{ entity.total_60 | number_format(2, '.', ' ') }} |
{% endif %}
{% if app.request.get('age') | number_format(0, '', '') >= 30 or app.request.get('age') is null%}
{{ d2_config('currency_symbol') }} {{ entity.total_30 | number_format(2, '.', ' ') }} |
{% endif %}
{{ d2_config('currency_symbol') }} {{ entity.total_current | number_format(2, '.', ' ') }} |
{{ d2_config('currency_symbol') }} {{ entity.total | number_format(2, '.', ' ') }} |
{% endfor %}
{% endfor %}