Skip to content

Commit

Permalink
#138 Hotfix error de texto
Browse files Browse the repository at this point in the history
Arreglado error de tipeo en controlador de graficos, funcion de proyectos
  • Loading branch information
izentenosmith committed Dec 28, 2019
1 parent 722f705 commit ed925be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/app/Http/Controllers/GraficasController.php
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,8 @@ public function getEstadisticasProyectos()
$proyectosAprobadosPorcentaje = 0;
$proyectosNoAprobadosPorcentaje = 0;
} else {
$proyectosAprobadosPorcentaje = round($proyectosAprobadosCount / $total * 100, 2);
$proyectosNoAprobadosPorcentaje = round($proyectosNoAprobadosCount / $total * 100, 2);
$proyectosAprobadosPorcentaje = round($proyectosAprobadosCount / $totalAprobados * 100, 2);
$proyectosNoAprobadosPorcentaje = round($proyectosNoAprobadosCount / $totalAprobados * 100, 2);
}
/* ******************************** Proyectos Inscritos ******************************** */
//Proyectos Inscritos --> Paso 4 = 4 o 2
Expand Down

0 comments on commit ed925be

Please sign in to comment.