Skip to content

Commit

Permalink
Fix del cálculo para beneficios de Bancos 3
Browse files Browse the repository at this point in the history
  • Loading branch information
elyambay committed Aug 31, 2017
1 parent 2bf60c5 commit efe3284
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions app/Detalle_encuesta.php
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ public function getBeneficiosBancosAttribute(){
$this->monto_km_recorrido +
$this->monto_ayuda_escolar +
$this->monto_comedor_interno +
$this->monto_curso_idioma * ($this->cobertura_curso_idioma/100)/12 +
$this->monto_curso_idioma * ($this->cobertura_curso_idioma/100) +
$this->monto_post_grado * ($this->cobertura_post_grado/100)/ 24 +
$this->monto_celular_corporativo +
$this->monto_vivienda +
Expand All @@ -123,7 +123,7 @@ public function getBeneficiosBancosAttribute(){

public function getBeneficiosNavierasAttribute(){
$beneficios = $this->refrigerio +
$this->costo_seguro_medico +
$this->costo_seguro_medico * ($this->cobertura_seguro_medico/100) +
$this->costo_seguro_vida +
//$this->costo_poliza_muerte_accidente +
//$this->costo_poliza_muerte_natural +
Expand All @@ -133,8 +133,8 @@ public function getBeneficiosNavierasAttribute(){
$this->monto_km_recorrido +
$this->monto_ayuda_escolar +
$this->monto_comedor_interno +
$this->monto_curso_idioma * $this->cobertura_curso_idioma +
$this->monto_post_grado / 24 +
$this->monto_curso_idioma * ($this->cobertura_curso_idioma/100) +
$this->monto_post_grado * ($this->cobertura_post_grado/100)/ 24 +
$this->monto_celular_corporativo +
$this->monto_vivienda +
$this->monto_colegiatura_hijos;
Expand Down
2 changes: 1 addition & 1 deletion app/Http/Controllers/ReporteController.php
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@ private function segmenter( &$collection,
}
$this->pusher( $collection,
$countCasos,
"Compensación Efectiva Anual Total",
"Compensación Anual Total",
$totalCompAnualMin,
$totalCompAnualMax,
$totalCompAnualProm,
Expand Down

0 comments on commit efe3284

Please sign in to comment.