{{ datos.cia_nombre | upper }}
{% if datos.ram_nombre != '' %}
- {{ datos.ram_nombre | upper }}
{% endif %}
{% if datos.tipoPoliza == 1 %}
- PRODUCCIÓN
{% elseif datos.tipoPoliza == 2 %}
- CARTERA
{% elseif datos.tipoPoliza == 5 %}
- CRECIMIENTO
{% endif %}
{% if dato.computaVida %}
- COMPUTA VIDA
{% else %}
- NO COMPUTA VIDA
{% endif %}
{% if dato.esCompromiso %}
- COMPROMISO
{% endif %}
{{ fecha }}
De {{ mesDesde }} a {{ mesHasta }} de {{ anio }}
| Correduría |
Compromiso |
Emitido |
Acumulado |
Anualizado |
{% for index, row in datos.corredurias %}
| {{ row.CORR_Nombre }} |
{% if datos.tipoPoliza == 5 %}
{{ (row.CMO_Objetivo + row.CMO_Anterior) | number_format(0, ",", ".") }}{% if datos.tipoMedicion != 3 %} €{% else %} pol.{% endif %}
({{ row.CMO_Objetivo | number_format(0, ",", ".") }}{% if datos.tipoMedicion != 3 %} €{% else %} pol.{% endif %})
{% else %}
{{ row.CMO_Objetivo | number_format(0, ",", ".") }}{% if datos.tipoMedicion != 3 %} €{% else %} pol.{% endif %}
{% endif %}
|
{{ row.CMO_Cumplimiento | number_format(0, ",", ".") }}{% if datos.tipoMedicion != 3 %} €{% else %} pol.{% endif %}
|
{% if row.CMO_Porcentaje < 40 %}
{% set class = 'red' %}
{% elseif row.CMO_Porcentaje < 75 %}
{% set class = 'orange' %}
{% else %}
{% set class = 'green' %}
{% endif %}
{{ row.CMO_Porcentaje | number_format(0, ",", ".") }} %
|
{% if row.CMO_PorcentajePeriodo < 40 %}
{% set class = 'red' %}
{% elseif row.CMO_PorcentajePeriodo < 75 %}
{% set class = 'orange' %}
{% else %}
{% set class = 'green' %}
{% endif %}
{{ row.CMO_PorcentajePeriodo | number_format(0, ",", ".") }} %
|
{% endfor %}