Skip to content

Commit

Permalink
#92
Browse files Browse the repository at this point in the history
Se corrige porcentajes de reporte
  • Loading branch information
matudelatower committed Apr 17, 2017
1 parent d525af6 commit a8d3526
Showing 1 changed file with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -108,21 +108,25 @@
{% set nps = itemR %}
{% else %}
{% if keyR =='promotores' %}
{% set promotores = itemR %}
{#{% set promotores = itemR %}#}
{% set promotores = ((itemR * 100 )/cantidadEncuestas) %}
{% set color = '#39ac73' %}
{% endif %}
{% if keyR =='neutros' %}
{% set neutros = itemR %}
{#{% set neutros = itemR %}#}
{% set neutros = ((itemR * 100 )/cantidadEncuestas) %}
{% set color = '#f2f2f2' %}
{% endif %}
{% if keyR =='detractores' %}
{% set detractores = itemR %}
{#{% set detractores = itemR %}#}
{% set detractores = ((itemR * 100 )/cantidadEncuestas) %}
{% set color = '#ff3333' %}
{% endif %}
{% set pregunta = '' %}
{% if opciones[keyR]['texto_opcion'] is defined and aValoresIpc[opciones[keyR]['texto_opcion']] is defined %}
{% set pregunta = opciones[keyR]['texto_opcion'] ~' - '~ opciones[keyR]['valor_literal'] %}
{% set sumaIpc = sumaIpc + aValoresIpc[opciones[keyR]['texto_opcion']] %}
{# suma ipc basada en tabla de valor#}
{% set sumaIpc = sumaIpc + (aValoresIpc[opciones[keyR]['texto_opcion']] * itemR) %}
{% if opciones[keyR]['texto_opcion'] == 1 %}
{% set color = '#ff3333' %}
{% elseif opciones[keyR]['texto_opcion'] == 2 %}
Expand Down

0 comments on commit a8d3526

Please sign in to comment.