diff --git a/app/Detalle_encuesta.php b/app/Detalle_encuesta.php index 9cacf40..3aa47a0 100644 --- a/app/Detalle_encuesta.php +++ b/app/Detalle_encuesta.php @@ -20,6 +20,7 @@ class Detalle_encuesta extends Model 'comision', 'cantidad_comision', 'plus_rendimiento', + 'variable_viaje', 'cantidad_plus_rendimiento', 'fallo_caja', 'cantidad_fallo_caja', @@ -194,5 +195,11 @@ public function getBeneficiosRestoAttribute(){ return $beneficios; } + public function getSalBaseVarViajeNavierasAttribute(){ + $salBaseVarViaje = $this->salario_base + $this->variable_viaje; + + return $salBaseVarViaje; + + } } diff --git a/app/Http/Controllers/BeneficiosController.php b/app/Http/Controllers/BeneficiosController.php index 4b1c608..4dbb1fb 100644 --- a/app/Http/Controllers/BeneficiosController.php +++ b/app/Http/Controllers/BeneficiosController.php @@ -17,6 +17,7 @@ use App\Color; use App\Empresa; use Carbon\Carbon; +use App; use Hash; use Auth; use flash; @@ -355,6 +356,8 @@ public function getChartData(Request $request){ // Rubro de la empresa $rubro = $empresa->rubro_id; + $english = App::isLocale('en'); + // Ultima encuesta de la empresa $encuesta = beneficios_cabecera_encuesta::where("empresa_id", $empresa->id) ->orderBy('id', 'DESC') @@ -377,9 +380,19 @@ public function getChartData(Request $request){ // temporalmente hasta que las prácticas estén dentro de la tabla Items $itemPregunta = beneficios_item::where('beneficios_pregunta_id', $id)->first(); if(!$itemPregunta){ - $titulo = $pregunta->pregunta; + if($english){ + $titulo = $pregunta->pregunta_en; + }else{ + $titulo = $pregunta->pregunta; + } + }else{ - $titulo = $itemPregunta->titulo; + if($english){ + $titulo = $itemPregunta->titulo_en; + }else{ + $titulo = $itemPregunta->titulo; + } + } } @@ -425,10 +438,19 @@ public function getChartData(Request $request){ ->orderBy('id') ->pluck('descripcion'); }else{ - $labels = $pregunta->beneficiosOpcion - ->whereIn('id', $opcionesRespId) - ->sortBy('id') - ->pluck('opcion'); + if($english){ + $labels = $pregunta->beneficiosOpcion + ->whereIn('id', $opcionesRespId) + ->sortBy('id') + ->pluck('opcion_en'); + + }else{ + $labels = $pregunta->beneficiosOpcion + ->whereIn('id', $opcionesRespId) + ->sortBy('id') + ->pluck('opcion'); + + } } // tabulamos las respuestas $respuestas = collect(); diff --git a/app/Http/Controllers/EncuestasCargosController.php b/app/Http/Controllers/EncuestasCargosController.php index dd8c74b..6b5ebb9 100644 --- a/app/Http/Controllers/EncuestasCargosController.php +++ b/app/Http/Controllers/EncuestasCargosController.php @@ -254,7 +254,12 @@ public function getCargos($id){ } } $item['cargos'] = ''; - $item['salario_base'] = $item->detalleEncuestas->salario_base; + if($item->detalleEncuestas){ + $item['salario_base'] = $item->detalleEncuestas->salario_base; + }else{ + $item['salario_base'] = 0; + } + if($item->incluir){ $item['incluye'] = 'Sí'; }else{ @@ -262,6 +267,7 @@ public function getCargos($id){ } $item['editar'] = 'editRevisar'; $item['guardar'] = 'saveGuardar'; + $item['input'] = ''; $index++; return $item; @@ -275,7 +281,7 @@ public function getCargos($id){ $item->incluye, $item->editar, $item->guardar, - $item->id + $item->input ]; } diff --git a/app/Http/Controllers/EncuestasController.php b/app/Http/Controllers/EncuestasController.php index ef9f614..48a7ab4 100644 --- a/app/Http/Controllers/EncuestasController.php +++ b/app/Http/Controllers/EncuestasController.php @@ -214,4 +214,177 @@ public function clonePoll($id) return view('encuestas.create')->with('dbData', $dbData); } + + public function cloneBancard() + { + return view('encuestas.clonar_bancard')->with('toast', false); + } + + public function clonarBancard(Request $request){ + ini_set('max_execution_time', 0); + ini_set('memory_limit', '500M'); + $periodo = $request->periodo; + + $encuestas = Cabecera_encuesta::where('periodo', $periodo) + ->where('rubro_id', 1) + ->get(); + foreach($encuestas as $encuesta){ + $cabecera = $encuesta->replicate(); + $cabecera->rubro_id = 12; + + switch ($cabecera->empresa_id) { + case 1: + $cabecera->empresa_id = 130; + break; + case 2: + $cabecera->empresa_id = 131; + break; + case 3: + $cabecera->empresa_id = 132; + break; + + case 4: + $cabecera->empresa_id = 133; + break; + case 5: + $cabecera->empresa_id = 134; + break; + case 6: + $cabecera->empresa_id = 135; + break; + case 7: + $cabecera->empresa_id = 136; + break; + case 8: + $cabecera->empresa_id = 137; + break; + case 9: + $cabecera->empresa_id = 138; + break; + case 10: + $cabecera->empresa_id = 139; + break; + case 11: + $cabecera->empresa_id = 140; + break; + case 12: + $cabecera->empresa_id = 141; + break; + case 53: + $cabecera->empresa_id = 142; + break; + case 83: + $cabecera->empresa_id = 143; + break; + case 127: + $cabecera->empresa_id = 147; + break; + + default: + $cabecera->empresa_id = 130; + break; + } + $cabecera->save(); + $encuestaCargo = $encuesta->encuestasCargo; + foreach($encuestaCargo as $cargo){ + $newCargo = $cargo->replicate(); + $newCargo->cabecera_encuesta_id = $cabecera->id; + $newCargo->save(); + $detalle = $cargo->detalleEncuestas; + if($detalle){ + $newDetalle = $detalle->replicate(); + $newDetalle->cabecera_encuesta_id = $cabecera->id; + $newDetalle->encuestas_cargo_id = $newCargo->id; + $newDetalle->save(); + } + } + + } + $toast = true; + + return redirect()->route('clonar.bancard')->with('toast', $toast); + } + + public function clonePuente() + { + return view('encuestas.clonar_puente')->with('toast', false); + } + + public function clonarPuente(Request $request){ + ini_set('max_execution_time', 0); + ini_set('memory_limit', '500M'); + $periodo = $request->periodo; + + $encuestas = Cabecera_encuesta::where('periodo', $periodo) + ->where('rubro_id', 1) + ->get(); + foreach($encuestas as $encuesta){ + $cabecera = $encuesta->replicate(); + $cabecera->rubro_id = 13; + + switch ($cabecera->empresa_id) { + case 1: + $cabecera->empresa_id = 149; + break; + case 2: + $cabecera->empresa_id = 150; + break; + case 3: + $cabecera->empresa_id = 151; + break; + + case 4: + $cabecera->empresa_id = 152; + break; + case 5: + $cabecera->empresa_id = 153; + break; + case 6: + $cabecera->empresa_id = 154; + break; + case 7: + $cabecera->empresa_id = 155; + break; + case 8: + $cabecera->empresa_id = 156; + break; + case 9: + $cabecera->empresa_id = 157; + break; + case 10: + $cabecera->empresa_id = 158; + break; + case 11: + $cabecera->empresa_id = 159; + break; + case 12: + $cabecera->empresa_id = 160; + break; + case 53: + $cabecera->empresa_id = 161; + break; + default: + $cabecera->empresa_id = 149; + break; + } + $cabecera->save(); + $encuestaCargo = $encuesta->encuestasCargo; + foreach($encuestaCargo as $cargo){ + $newCargo = $cargo->replicate(); + $newCargo->cabecera_encuesta_id = $cabecera->id; + $newCargo->save(); + $detalle = $cargo->detalleEncuestas; + if($detalle){ + $newDetalle = $detalle->replicate(); + $newDetalle->cabecera_encuesta_id = $cabecera->id; + $newDetalle->encuestas_cargo_id = $newCargo->id; + $newDetalle->save(); + } + } + + } + $toast = true; + + return redirect()->route('clonar.puente')->with('toast', $toast); + } } diff --git a/app/Http/Controllers/HomeController.php b/app/Http/Controllers/HomeController.php index 06ba657..9a8f0dd 100644 --- a/app/Http/Controllers/HomeController.php +++ b/app/Http/Controllers/HomeController.php @@ -81,7 +81,6 @@ public function index() $dbEncuesta = $dbEncuestas->first(); } - $dbEncuestaAnt = $dbEncuestas->get(1); if($dbEncuestaAnt){ if($dbEncuestaAnt->periodo == $dbEncuesta->periodo){ @@ -102,7 +101,10 @@ public function index() ->get(); $dbEncuestaAnt = $dbEncuestas->get(3); } + }else{ + $dbEncuestaOld = null; } + $club = $this->club($dbEmpresa->rubro_id); diff --git a/app/Http/Controllers/ImportExportController.php b/app/Http/Controllers/ImportExportController.php index d239502..c43f46d 100644 --- a/app/Http/Controllers/ImportExportController.php +++ b/app/Http/Controllers/ImportExportController.php @@ -141,7 +141,7 @@ public function download(Request $request){ d.encuestas_cargo_id, convert(e.descripcion using utf8) cargo_cliente, d.area_id, convert(a.descripcion using utf8) area_cliente, d.nivel_id, n.descripcion nivel_cliente, c.rubro_id, r.descripcion rubro, ca.id, ca.descripcion cargo_oficial, ca.area_id id_area_oficial, convert(a1.descripcion using utf8) area_oficial, ca.nivel_id id_nivel_oficial, n1.descripcion nivel_oficial, cantidad_ocupantes, - salario_base, salario_base * 12 salario_anual, gratificacion, aguinaldo, comision, plus_rendimiento, fallo_caja, + salario_base, salario_base * 12 salario_anual, gratificacion, aguinaldo, comision, plus_rendimiento, variable_viaje, fallo_caja, fallo_caja_ext, gratificacion_contrato, adicional_nivel_cargo, adicional_titulo, adicional_amarre, adicional_tipo_combustible, adicional_embarque, adicional_carga, bono_anual, bono_anual_salarios, incentivo_largo_plazo, refrigerio, costo_seguro_medico, @@ -195,6 +195,7 @@ public function download(Request $request){ "Aguinaldo"=> $item->aguinaldo, "comision"=> $item->comision, "VariableAnual" => $item->plus_rendimiento, + "VariableViaje" => $item->variable_viaje, "AdicionalAmarre"=>$item->adicional_amarre, "AdicionalTipoCombustible"=>$item->adicional_tipo_combustible, "AdicionalEmbarque"=>$item->adicional_embarque, @@ -238,7 +239,7 @@ public function download(Request $request){ Excel::create($filename, function($excel) use($detalle, $periodo) { $excel->sheet($periodo, function($sheet) use($detalle){ - $sheet->cells('A1:BF1', function($cells){ + $sheet->cells('A1:BG1', function($cells){ $cells->setBackground('#00897b'); $cells->setFontColor("#FFFFFF"); $cells->setFontWeight("bold"); @@ -258,7 +259,7 @@ public function download(Request $request){ $cell->setBackground('#fd8282'); }); - $sheet->cell('BF1', function($cell){ + $sheet->cell('BG1', function($cell){ $cell->setBackground('#fd8282'); }); @@ -323,6 +324,7 @@ public function upload(Request $request){ $detalle->aguinaldo = $row->aguinaldo; $detalle->comision = $row->comision; $detalle->plus_rendimiento = $row->variableanual; + $detalle->variable_viaje = $row->variableviaje; $detalle->salario_base = $row->salariobase; $detalle->adicional_amarre = $row->adicionalamarre; $detalle->adicional_tipo_combustible = $row->adicionaltipocombustible; diff --git a/app/Http/Controllers/ReporteController.php b/app/Http/Controllers/ReporteController.php index cd32069..550b318 100644 --- a/app/Http/Controllers/ReporteController.php +++ b/app/Http/Controllers/ReporteController.php @@ -3,7 +3,6 @@ namespace App\Http\Controllers; use Illuminate\Http\Request; -use Illuminate\Support\Facades\Schema; use App\Cabecera_encuesta; use App\Encuestas_cargo; use App\Detalle_encuesta; @@ -18,54 +17,19 @@ use App\User; use App\Detalle_encuestas_nivel; use App\Traits\ClubsTrait; +use App\Traits\ReportTrait; use PHPExcel_Worksheet_Drawing; -use Hash; -use DB; use Auth; use Excel; use Session; -use Lang; +use DB; class ReporteController extends Controller { - use ClubsTrait; - /** - * Display a listing of the resource. - * - * @return \Illuminate\Http\Response - */ - public function index() - { - - } - - - /** - * Show the form for creating a new resource. - * - * @return \Illuminate\Http\Response - */ - public function create() - { - // - } - + use ClubsTrait, ReportTrait; - /** - * Store a newly created resource in storage. - * - * @param \Illuminate\Http\Request $request - * @return \Illuminate\Http\Response - */ - public function store(Request $request) - { - - return redirect()->route('encuestas.index'); - - } - /** * Display the specified resource. * @@ -117,7 +81,7 @@ public function lista($id){ } $cargosIds = $cargosIds->unique(); $cargos = Cargos_rubro::where('rubro_id', $rubro)->whereIn('cargo_id', $cargosIds)->get(); - //$cargos = Cargos_rubro::where('rubro_id', $rubro)->get(); + $cargos = $cargos->map(function($item){ $item['nivel_id'] = $item->cargo->nivel->id; $item['descripcion'] = $item->cargo->descripcion; @@ -255,25 +219,7 @@ public function ficha($id){ ->with('participantes', $participantes); } - private function countEmergentesSegmento($rubro, $subRubro, $periodo){ - - $results = DB::select( DB::raw( - "SELECT count(distinct cargo_id) cargos - FROM encuestas_cargos e - WHERE cabecera_encuesta_id in ( select id - from cabecera_encuestas - where rubro_id = :rubro - and sub_rubro_id = :subRubro - and periodo = :periodo)"), - array('rubro' => $rubro, 'subRubro' => $subRubro, 'periodo' => $periodo)); - //return $results; - if($results){ - $count = $results[0]->cargos; - }else{ - $count = 0; - } - return $count; - } + /** @@ -319,32 +265,12 @@ public function showCargosClub($id){ $dbEncuesta = Cabecera_encuesta::where('empresa_id', $id)->whereRaw('id = (select max(id) from cabecera_encuestas where empresa_id = '. $id.')')->first(); } $periodo = $dbEncuesta->periodo; // periodo de la encuesta actual - $empresasId = Empresa::where('rubro_id', $rubro)->pluck('id'); - $encuestasRubro = Cabecera_encuesta::whereIn('empresa_id', $empresasId)->where('periodo', $periodo)->pluck('id'); - $encuestasCargos = Encuestas_cargo::whereIn('cabecera_encuesta_id', $encuestasRubro)->whereNotNull('cargo_id')->get(); - $cargosEmpresas = collect(); - foreach ($encuestasCargos as $encuestaCargo) { - if($encuestaCargo->detalleEncuestas){ - if($encuestaCargo->detalleEncuestas->cantidad_ocupantes > 0){ - $cargosEmpresas->push(["cargo"=> $encuestaCargo->cargo_id, "empresa"=>$encuestaCargo->cabeceraEncuestas->empresa_id]); - } - } - } - - $groupedCargosEmpresas = $cargosEmpresas->groupBy('cargo'); - - $cargosIds = $groupedCargosEmpresas->map(function($item, $key){ - if($item->groupBy('empresa')->count() > 1){ - return $key; - } - })->values()->reject(function($value, $key){ - return is_null($value); - })->sort(); + $cargosIds = $this->getCargosHomologados($rubro, $periodo); $cargos = Cargos_rubro::where('rubro_id', $rubro) ->whereIn('cargo_id', $cargosIds)->get(); - //$cargos = Cargos_rubro::where('rubro_id', $rubro)->get(); + $cargos = $cargos->map(function($item) use($locale){ if($locale == "es"){ $item['nivel_id'] = $item->cargo->nivel->id; @@ -369,6 +295,7 @@ public function showCargosClub($id){ return view('report.cargos_club')->with('dbEmpresa', $dbEmpresa) ->with('club', $club) ->with('niveles', $niveles) + ->with('periodo', $periodo) ->with('cargos', $cargos); } @@ -408,18 +335,25 @@ public function cargoReportClubExcel(Request $request){ $periodo = $dbEncuesta->periodo; // rubro de la empresa del cliente $rubro = $dbEmpresa->rubro_id; + + $cargosIds = $this->getCargosHomologados($rubro, $periodo); + + $cargos = Cargos_rubro::where('rubro_id', $rubro) + ->whereIn('cargo_id', $cargosIds) + ->get(); + //dd($cargos); // recupera los cargos del periodo para todos los que tengan homologación - $encuestasCargos = Encuestas_cargo::where('cabecera_encuesta_id', $dbEncuesta->id) + /* $encuestasCargos = Encuestas_cargo::where('cabecera_encuesta_id', $dbEncuesta->id) ->whereNotNull('cargo_id') ->where('incluir', 1) - ->get(); + ->get(); */ // variables de detalle para cada segmento $detalleUniverso = collect(); $detalleNacional = collect(); $detalleInternacional = collect(); // Procesamiento por cargo - foreach ($encuestasCargos as $encuestaCargo) { - $request->request->add(["cargo_id"=> $encuestaCargo->cargo->id]); + foreach ($cargos as $cargo) { + $request->request->add(["cargo_id"=> $cargo->cargo_id]); // procesamos el reporte if($reporteEspecial){ $respuesta = $this->cargoReportEspecial($request, "clubExcel", true); @@ -428,10 +362,18 @@ public function cargoReportClubExcel(Request $request){ $respuesta = $this->cargoReportAll($request, "clubExcel", true); $filename = 'Resultados_'.$periodo; } - + $encuestaCargo = Encuestas_cargo::where('cabecera_encuesta_id', $dbEncuesta->id) + ->where('cargo_id', $cargo->cargo_id) + ->where('incluir', 1) + ->first(); + if($encuestaCargo){ + $descripcion = $encuestaCargo->descripcion; + }else{ + $descripcion = 'N/A'; + } // preparamos los datos para el array final del cargo - $itemArray = array( $encuestaCargo->descripcion, - $encuestaCargo->cargo->descripcion, + $itemArray = array( $descripcion, + $cargo->cargo->descripcion, ); $itemArrayNac = $itemArray; $itemArrayInt = $itemArray; @@ -1575,6 +1517,7 @@ public function cargoReportClubExcel(Request $request){ } public function cargoReportClubEspecial(Request $request){ + ini_set('max_execution_time', 0); // datos de la empresa del cliente $dbEmpresa = Empresa::find($request->empresa_id); @@ -1615,78 +1558,130 @@ public function cargoReportClubEspecial(Request $request){ $cargosTrip = Cargo::where('area_id', 57) ->pluck('id'); + + $encuestasId = Cabecera_encuesta::where('rubro_id', $dbEncuesta->rubro_id) + ->where('periodo', $dbEncuesta->periodo) + ->pluck('id'); + // recupera los cargos del periodo para todos los que tengan homologación - $encuestasCargos = Encuestas_cargo::where('cabecera_encuesta_id', $dbEncuesta->id) + $encuestasCargos = Encuestas_cargo::whereIn('cabecera_encuesta_id', $encuestasId) ->whereIn('cargo_id', $cargosTrip) ->whereNotNull('cargo_id') ->where('incluir', 1) ->get(); - + //dd($encuestasCargos->where('cargo_id', 538)); // variables de detalle para cada segmento $salarioBase = collect(); $efectivoTotalAnual = collect(); $variable = collect(); + $variableViaje = collect(); + $salBaseVarViaje = collect(); $adicionalTotal = collect(); $contratoNuevo = collect(); + if($request->usd){ + $convertir = 1; + $filename = 'Comparativo_interanual_usd_'.$periodo.'_'.$periodoAnt; + }else{ + $convertir = 0; + $filename = 'Comparativo_interanual_'.$periodo.'_'.$periodoAnt; + } + // Procesamiento por cargo foreach ($encuestasCargos as $encuestaCargo) { $cargoId = $encuestaCargo->cargo->id; // procesamos el reporte if(!$encuestaCargo->es_contrato_periodo){ - $respuesta = $this->cargoComparativoEspecial($dbEncuesta, $dbEncuestaAnt, $dbEmpresa, $cargoId, false); + $respuesta = $this->cargoComparativoEspecial($dbEncuesta, $dbEncuestaAnt, $dbEmpresa, $cargoId, $convertir, false); }else{ - $respuesta = $this->cargoComparativoEspecial($dbEncuesta, $dbEncuestaAnt, $dbEmpresa, $cargoId, true); - } - - $filename = 'Comparativo_interanual_'.$periodo.'_'.$periodoAnt; + $respuesta = $this->cargoComparativoEspecial($dbEncuesta, $dbEncuestaAnt, $dbEmpresa, $cargoId, $convertir, true); + } // preparamos los datos para el array final del cargo $itemArray = array( $encuestaCargo->cargo->descripcion); $itemArrayETA = array( $encuestaCargo->cargo->descripcion); $itemArrayVar = array( $encuestaCargo->cargo->descripcion); + $itemArrayVarViaje = array( $encuestaCargo->cargo->descripcion); + $itemArraySBVV = array( $encuestaCargo->cargo->descripcion); $itemArrayATA = array( $encuestaCargo->cargo->descripcion); if($encuestaCargo->es_contrato_periodo){ $itemArrayContNuevo = array($encuestaCargo->cargo->descripcion); } - // por cada item del detalle foreach ($respuesta as $key => $item) { - //dd($item); - switch ($key) { - case 'detalle_salario_base': - - if($encuestaCargo->es_contrato_periodo){ - $this->CargaDetalleComparativo($item[0], $itemArrayContNuevo, 1); - }else{ - $this->CargaDetalleComparativo($item[0], $itemArray, 0); - } - break; - - case 'detalle_efectivo_total_anual': - $this->CargaDetalleComparativo($item[0], $itemArrayETA, 0); - break; - case 'detalle_variable': - $this->CargaDetalleComparativo($item[0], $itemArrayVar, 0); - break; - case 'detalle_adicional_total_anual': - $this->CargaDetalleComparativo($item[0], $itemArrayATA, 0); - break; - } - + + switch ($key) { + case 'detalle_salario_base': + + if($encuestaCargo->es_contrato_periodo){ + $this->CargaDetalleComparativo($item[0], $itemArrayContNuevo, 1); + }else{ + $this->CargaDetalleComparativo($item[0], $itemArray, 0); + } + break; + + case 'detalle_efectivo_total_anual': + $this->CargaDetalleComparativo($item[0], $itemArrayETA, 0); + break; + case 'detalle_variable': + $this->CargaDetalleComparativo($item[0], $itemArrayVar, 0); + break; + case 'detalle_variable_viaje': + $this->CargaDetalleComparativo($item[0], $itemArrayVarViaje, 0); + break; + case 'detalle_sb_vv': + $this->CargaDetalleComparativo($item[0], $itemArraySBVV, 0); + break; + case 'detalle_adicional_total_anual': + $this->CargaDetalleComparativo($item[0], $itemArrayATA, 0); + break; + } + } - - $salarioBase->push($itemArray); - $efectivoTotalAnual->push($itemArrayETA); - $variable->push($itemArrayVar); - $adicionalTotal->push($itemArrayATA); + /* if( count($itemArray) == 1){ + dd($itemArray, $encuestaCargo); + } */ + + if($itemArrayETA[12] > 0){ + $efectivoTotalAnual->push($itemArrayETA); + } + if($itemArrayVar[12] > 0){ + $variable->push($itemArrayVar); + } + if($itemArrayVarViaje[12] > 0){ + $variableViaje->push($itemArrayVarViaje); + } + if($itemArraySBVV[12] > 0){ + $salBaseVarViaje->push($itemArraySBVV); + } + if($itemArrayATA[12] > 0){ + $adicionalTotal->push($itemArrayATA); + } + if($encuestaCargo->es_contrato_periodo){ - $contratoNuevo->push($itemArrayContNuevo); + if($itemArrayContNuevo[7] > 0){ + $contratoNuevo->push($itemArrayContNuevo); + } + + }else{ + if($itemArray[12] > 0){ + $salarioBase->push($itemArray); + } } } - Excel::create($filename, function($excel) use($salarioBase, $efectivoTotalAnual, $variable, $adicionalTotal, $contratoNuevo, $periodo, $periodoAnt) { - $excel->sheet("Salario Base", function($sheet) use($salarioBase, $periodo, $periodoAnt){ + Excel::create($filename, function($excel) use( $salarioBase, + $efectivoTotalAnual, + $variable, + $variableViaje, + $salBaseVarViaje, + $adicionalTotal, + $contratoNuevo, + $periodo, + $periodoAnt, + $convertir + ) { + $excel->sheet("Salario Base", function($sheet) use($salarioBase, $periodo, $periodoAnt, $convertir){ $salarioBase = $salarioBase->reject(function($item){ if(count($item) < 13){ return $item; @@ -1701,13 +1696,17 @@ public function cargoReportClubEspecial(Request $request){ $objDrawing->setWorksheet($sheet); - + if($convertir){ + $titulo = 'COMPARATIVO INTERANUAL SALARIO BASE USD'; + }else{ + $titulo = 'COMPARATIVO INTERANUAL SALARIO BASE'; + } // Título - $sheet->cell('A5', function($cell){ - $cell->setValue('COMPARATIVO INTERANUAL SALARIO BASE'); + $sheet->cell('A5', function($cell) use($titulo){ + $cell->setValue($titulo); }); - $sheet->mergeCells('A5:M5'); - $sheet->cells('A5:M5', function($cells){ + $sheet->mergeCells('A5:S5'); + $sheet->cells('A5:S5', function($cells){ $cells->setBackground('#0288d1'); $cells->setFontColor("#FFFFFF"); $cells->setFontWeight("bold"); @@ -1723,7 +1722,6 @@ public function cargoReportClubEspecial(Request $request){ $cells->setBackground('#7cb342'); $cells->setFontColor("#FFFFFF"); $cells->setFontWeight("bold"); - // $cells->setValignment('center'); $cells->setAlignment('center'); }); @@ -1735,12 +1733,23 @@ public function cargoReportClubEspecial(Request $request){ $cells->setBackground('#ffb300'); $cells->setFontColor("#FFFFFF"); $cells->setFontWeight("bold"); - // $cells->setValignment('center'); $cells->setAlignment('center'); }); - $topeHeader = 2; - $rango = 'A7:M7'; + $sheet->cell('N6', function($cell) use($periodo, $periodoAnt){ + $cell->setValue('BRECHA '.$periodo.' vs. '.$periodoAnt); + }); + $sheet->mergeCells('N6:S6'); + $sheet->cells('N6:S6', function($cells){ + $cells->setBackground('#ff7043'); + $cells->setFontColor("#FFFFFF"); + $cells->setFontWeight("bold"); + $cells->setAlignment('center'); + }); + + + $topeHeader = 3; + $rango = 'A7:S7'; $itemsHeader = array("Mínimo", "25 Perc.", "Promedio", "Mediana", "75 Perc.", "Máximo"); $cargoHeader = array("Cargo Oficial"); @@ -1753,14 +1762,14 @@ public function cargoReportClubEspecial(Request $request){ } $sheet->row(7, $cargoHeader); - $sheet->rows($salarioBase); + $sheet->rows($salarioBase->unique()); $sheet->cells($rango, function($cells){ $cells->setBackground('#a7ffeb'); }); $sheet->setFreeze('A7'); }); - $excel->sheet("Efectivo Total Anual", function($sheet) use($efectivoTotalAnual, $periodo, $periodoAnt){ + $excel->sheet("Efectivo Total Anual", function($sheet) use($efectivoTotalAnual, $periodo, $periodoAnt, $convertir){ $objDrawing = new PHPExcel_Worksheet_Drawing; $objDrawing->setPath(public_path('images/logo.jpg')); //your image path @@ -1769,13 +1778,18 @@ public function cargoReportClubEspecial(Request $request){ $objDrawing->setWorksheet($sheet); - + if($convertir){ + $titulo = 'COMPARATIVO INTERANUAL EFECTIVO TOTAL ANUAL USD'; + }else{ + $titulo = 'COMPARATIVO INTERANUAL EFECTIVO TOTAL ANUAL'; + } // Título - $sheet->cell('A5', function($cell){ - $cell->setValue('COMPARATIVO INTERANUAL EFECTIVO TOTAL ANUAL'); + $sheet->cell('A5', function($cell) use($titulo){ + $cell->setValue($titulo); }); - $sheet->mergeCells('A5:M5'); - $sheet->cells('A5:M5', function($cells){ + + $sheet->mergeCells('A5:S5'); + $sheet->cells('A5:S5', function($cells){ $cells->setBackground('#0288d1'); $cells->setFontColor("#FFFFFF"); $cells->setFontWeight("bold"); @@ -1807,8 +1821,19 @@ public function cargoReportClubEspecial(Request $request){ $cells->setAlignment('center'); }); - $topeHeader = 2; - $rango = 'A7:M7'; + $sheet->cell('N6', function($cell) use($periodo, $periodoAnt){ + $cell->setValue('BRECHA '.$periodo.' vs. '.$periodoAnt); + }); + $sheet->mergeCells('N6:S6'); + $sheet->cells('N6:S6', function($cells){ + $cells->setBackground('#ff7043'); + $cells->setFontColor("#FFFFFF"); + $cells->setFontWeight("bold"); + $cells->setAlignment('center'); + }); + + $topeHeader = 3; + $rango = 'A7:S7'; $itemsHeader = array("Mínimo", "25 Perc.", "Promedio", "Mediana", "75 Perc.", "Máximo"); $cargoHeader = array("Cargo Oficial"); @@ -1821,14 +1846,14 @@ public function cargoReportClubEspecial(Request $request){ } $sheet->row(7, $cargoHeader); - $sheet->rows($efectivoTotalAnual); + $sheet->rows($efectivoTotalAnual->unique()); $sheet->cells($rango, function($cells){ $cells->setBackground('#a7ffeb'); }); $sheet->setFreeze('A7'); }); - $excel->sheet("Variable", function($sheet) use($variable, $periodo, $periodoAnt){ + $excel->sheet("Variable", function($sheet) use($variable, $periodo, $periodoAnt, $convertir){ $objDrawing = new PHPExcel_Worksheet_Drawing; $objDrawing->setPath(public_path('images/logo.jpg')); //your image path @@ -1838,12 +1863,18 @@ public function cargoReportClubEspecial(Request $request){ + if($convertir){ + $titulo = 'COMPARATIVO INTERANUAL VARIABLE ANUAL USD'; + }else{ + $titulo = 'COMPARATIVO INTERANUAL VARIABLE ANUAL'; + } // Título - $sheet->cell('A5', function($cell){ - $cell->setValue('COMPARATIVO INTERANUAL VARIABLE'); + $sheet->cell('A5', function($cell) use($titulo) { + $cell->setValue($titulo); }); - $sheet->mergeCells('A5:M5'); - $sheet->cells('A5:M5', function($cells){ + + $sheet->mergeCells('A5:S5'); + $sheet->cells('A5:S5', function($cells){ $cells->setBackground('#0288d1'); $cells->setFontColor("#FFFFFF"); $cells->setFontWeight("bold"); @@ -1875,8 +1906,19 @@ public function cargoReportClubEspecial(Request $request){ $cells->setAlignment('center'); }); - $topeHeader = 2; - $rango = 'A7:M7'; + $sheet->cell('N6', function($cell) use($periodo, $periodoAnt){ + $cell->setValue('BRECHA '.$periodo.' vs. '.$periodoAnt); + }); + $sheet->mergeCells('N6:S6'); + $sheet->cells('N6:S6', function($cells){ + $cells->setBackground('#ff7043'); + $cells->setFontColor("#FFFFFF"); + $cells->setFontWeight("bold"); + $cells->setAlignment('center'); + }); + + $topeHeader = 3; + $rango = 'A7:S7'; $itemsHeader = array("Mínimo", "25 Perc.", "Promedio", "Mediana", "75 Perc.", "Máximo"); $cargoHeader = array("Cargo Oficial"); @@ -1889,14 +1931,14 @@ public function cargoReportClubEspecial(Request $request){ } $sheet->row(7, $cargoHeader); - $sheet->rows($variable); + $sheet->rows($variable->unique()); $sheet->cells($rango, function($cells){ $cells->setBackground('#a7ffeb'); }); $sheet->setFreeze('A7'); - }); - - $excel->sheet("Adicional Total Anual", function($sheet) use($adicionalTotal, $periodo, $periodoAnt){ + }); + + $excel->sheet("Variable Viaje", function($sheet) use($variableViaje, $periodo, $periodoAnt, $convertir){ $objDrawing = new PHPExcel_Worksheet_Drawing; $objDrawing->setPath(public_path('images/logo.jpg')); //your image path @@ -1906,12 +1948,18 @@ public function cargoReportClubEspecial(Request $request){ + if($convertir){ + $titulo = 'COMPARATIVO INTERANUAL VARIABLE POR VIAJE USD'; + }else{ + $titulo = 'COMPARATIVO INTERANUAL VARIABLE POR VIAJE ANUAL'; + } // Título - $sheet->cell('A5', function($cell){ - $cell->setValue('COMPARATIVO INTERANUAL ADICIONAL TOTAL ANUAL'); + $sheet->cell('A5', function($cell) use($titulo){ + $cell->setValue($titulo); }); - $sheet->mergeCells('A5:M5'); - $sheet->cells('A5:M5', function($cells){ + + $sheet->mergeCells('A5:S5'); + $sheet->cells('A5:S5', function($cells){ $cells->setBackground('#0288d1'); $cells->setFontColor("#FFFFFF"); $cells->setFontWeight("bold"); @@ -1943,8 +1991,19 @@ public function cargoReportClubEspecial(Request $request){ $cells->setAlignment('center'); }); - $topeHeader = 2; - $rango = 'A7:M7'; + $sheet->cell('N6', function($cell) use($periodo, $periodoAnt){ + $cell->setValue('BRECHA '.$periodo.' vs. '.$periodoAnt); + }); + $sheet->mergeCells('N6:S6'); + $sheet->cells('N6:S6', function($cells){ + $cells->setBackground('#ff7043'); + $cells->setFontColor("#FFFFFF"); + $cells->setFontWeight("bold"); + $cells->setAlignment('center'); + }); + + $topeHeader = 3; + $rango = 'A7:S7'; $itemsHeader = array("Mínimo", "25 Perc.", "Promedio", "Mediana", "75 Perc.", "Máximo"); $cargoHeader = array("Cargo Oficial"); @@ -1957,14 +2016,14 @@ public function cargoReportClubEspecial(Request $request){ } $sheet->row(7, $cargoHeader); - $sheet->rows($adicionalTotal); + $sheet->rows($variableViaje->unique()); $sheet->cells($rango, function($cells){ $cells->setBackground('#a7ffeb'); }); $sheet->setFreeze('A7'); - }); + }); - $excel->sheet("Tripulacion Incorporada", function($sheet) use($contratoNuevo, $periodo){ + $excel->sheet("SB + VV", function($sheet) use($salBaseVarViaje, $periodo, $periodoAnt, $convertir){ $objDrawing = new PHPExcel_Worksheet_Drawing; $objDrawing->setPath(public_path('images/logo.jpg')); //your image path @@ -1974,12 +2033,18 @@ public function cargoReportClubEspecial(Request $request){ + if($convertir){ + $titulo = 'COMPARATIVO SALARIO BASE + VARIABLE POR VIAJE USD'; + }else{ + $titulo = 'COMPARATIVO SALARIO BASE + VARIABLE POR VIAJE'; + } // Título - $sheet->cell('A5', function($cell){ - $cell->setValue('TRIPULACION INCORPORADA EN EL PERIODO'); + $sheet->cell('A5', function($cell) use($titulo){ + $cell->setValue($titulo); }); - $sheet->mergeCells('A5:H5'); - $sheet->cells('A5:H5', function($cells){ + + $sheet->mergeCells('A5:S5'); + $sheet->cells('A5:S5', function($cells){ $cells->setBackground('#0288d1'); $cells->setFontColor("#FFFFFF"); $cells->setFontWeight("bold"); @@ -1987,13 +2052,23 @@ public function cargoReportClubEspecial(Request $request){ $cells->setAlignment('center'); }); - + $sheet->cell('B6', function($cell) use($periodoAnt){ + $cell->setValue('PERIODO '.$periodoAnt); + }); + $sheet->mergeCells('B6:G6'); + $sheet->cells('B6:G6', function($cells){ + $cells->setBackground('#7cb342'); + $cells->setFontColor("#FFFFFF"); + $cells->setFontWeight("bold"); + // $cells->setValignment('center'); + $cells->setAlignment('center'); + }); - $sheet->cell('B6', function($cell) use($periodo){ + $sheet->cell('H6', function($cell) use($periodo){ $cell->setValue('PERIODO '.$periodo); }); - $sheet->mergeCells('B6:H6'); - $sheet->cells('B6:H6', function($cells){ + $sheet->mergeCells('H6:M6'); + $sheet->cells('H6:M6', function($cells){ $cells->setBackground('#ffb300'); $cells->setFontColor("#FFFFFF"); $cells->setFontWeight("bold"); @@ -2001,10 +2076,21 @@ public function cargoReportClubEspecial(Request $request){ $cells->setAlignment('center'); }); - $topeHeader = 1; - $rango = 'A7:H7'; + $sheet->cell('N6', function($cell) use($periodo, $periodoAnt){ + $cell->setValue('BRECHA '.$periodo.' vs. '.$periodoAnt); + }); + $sheet->mergeCells('N6:S6'); + $sheet->cells('N6:S6', function($cells){ + $cells->setBackground('#ff7043'); + $cells->setFontColor("#FFFFFF"); + $cells->setFontWeight("bold"); + $cells->setAlignment('center'); + }); + + $topeHeader = 3; + $rango = 'A7:S7'; - $itemsHeader = array("Ocupantes","Mínimo", "25 Perc.", "Promedio", "Mediana", "75 Perc.", "Máximo"); + $itemsHeader = array("Mínimo", "25 Perc.", "Promedio", "Mediana", "75 Perc.", "Máximo"); $cargoHeader = array("Cargo Oficial"); for ($i= 0; $i < $topeHeader; $i++) { @@ -2015,100 +2101,247 @@ public function cargoReportClubEspecial(Request $request){ } $sheet->row(7, $cargoHeader); - $sheet->rows($contratoNuevo); + $sheet->rows($salBaseVarViaje->unique()); $sheet->cells($rango, function($cells){ $cells->setBackground('#a7ffeb'); }); $sheet->setFreeze('A7'); }); - $excel->setActiveSheetIndex(0); - })->export('xlsx'); - } - public function nivelReportClubExcel(Request $request){ - ini_set('max_execution_time', 0); - // periodo de la encuesta actual (semestral para navieras) - $periodo = $request->periodo; - // rubro de la empresa del cliente - $rubro = $request->rubro_id; - - $encuestasIDs = Cabecera_encuesta::where('periodo', $periodo) - ->where('rubro_id', $rubro) - ->pluck('id'); - // recupera los cargos del periodo para todos los que tengan homologación con niveles - $nivelesCargos = Detalle_encuestas_nivel::distinct() - ->whereIn('cabecera_encuesta_id', $encuestasIDs) - ->whereNotNull('cargo_oficial_id') - ->pluck('nivel_oficial_id'); - // variables de detalle para cada segmento - $detalleUniverso = collect(); - $detalleNacional = collect(); - $detalleInternacional = collect(); - - $detalleInternacional = collect(); - // Procesamiento por cargo - foreach ($nivelesCargos as $value) { - $request->request->add(["nivel_id"=> $value]); - // procesamos el reporte - $respuesta = $this->nivelReport($request, $encuestasIDs, true); - $nivel = Nivel::find($value); - // preparamos los datos para el array final del cargo - $itemArray = array( $nivel->descripcion, - $nivel->descripcion, - ); - $itemArrayNac = $itemArray; - $itemArrayInt = $itemArray; - // por cada item del detalle - foreach ($respuesta as $key => $item) { + $excel->sheet("Adicional Total Anual", function($sheet) use($adicionalTotal, $periodo, $periodoAnt, $convertir){ - switch ($key) { - - case 'detalle_universo': - $this->cargaDetalleNivel($item, $itemArray); - break; - case 'detalle_nacional': - $this->cargaDetalleNivel($item, $itemArrayNac); - break; - case 'detalleInternacional': - $this->cargaDetalleNivel($item, $itemArrayInt); - break; - } - - } - - $detalleUniverso->push($itemArray); - $detalleNacional->push($itemArrayNac); - $detalleInternacional->push($itemArrayInt); - } - - - $filename = 'Resultados_Niveles'.$periodo; - - Excel::create($filename, function($excel) use($detalleUniverso, $detalleNacional, $detalleInternacional) { - //Excel::create($filename, function($excel) use($detalleNacional) { - $excel->sheet("universo", function($sheet) use($detalleUniverso){ $objDrawing = new PHPExcel_Worksheet_Drawing; $objDrawing->setPath(public_path('images/logo.jpg')); //your image path $objDrawing->setCoordinates('A1'); $objDrawing->setWidthAndHeight(304,60); - $objDrawing->setWorksheet($sheet); + $objDrawing->setWorksheet($sheet); - $sheet->cell('A5', function($cell){ - $cell->setValue('NIVEL'); + + + if($convertir){ + $titulo = 'COMPARATIVO INTERANUAL ADICIONAL TOTAL ANUAL USD'; + }else{ + $titulo = 'COMPARATIVO INTERANUAL ADICIONAL TOTAL ANUAL'; + } + // Título + $sheet->cell('A5', function($cell) use($titulo){ + $cell->setValue($titulo); }); - $sheet->mergeCells('A5:D5'); - $sheet->cells('A5:D5', function($cells){ - $cells->setBackground('#00897b'); + $sheet->mergeCells('A5:S5'); + $sheet->cells('A5:S5', function($cells){ + $cells->setBackground('#0288d1'); $cells->setFontColor("#FFFFFF"); $cells->setFontWeight("bold"); // $cells->setValignment('center'); $cells->setAlignment('center'); }); - // Salario Base Header - $sheet->cell('E5', function($cell){ - $cell->setValue('SALARIO BASE'); + + $sheet->cell('B6', function($cell) use($periodoAnt){ + $cell->setValue('PERIODO '.$periodoAnt); }); - $sheet->mergeCells('E5:J5'); + $sheet->mergeCells('B6:G6'); + $sheet->cells('B6:G6', function($cells){ + $cells->setBackground('#7cb342'); + $cells->setFontColor("#FFFFFF"); + $cells->setFontWeight("bold"); + // $cells->setValignment('center'); + $cells->setAlignment('center'); + }); + + $sheet->cell('H6', function($cell) use($periodo){ + $cell->setValue('PERIODO '.$periodo); + }); + $sheet->mergeCells('H6:M6'); + $sheet->cells('H6:M6', function($cells){ + $cells->setBackground('#ffb300'); + $cells->setFontColor("#FFFFFF"); + $cells->setFontWeight("bold"); + // $cells->setValignment('center'); + $cells->setAlignment('center'); + }); + + $sheet->cell('N6', function($cell) use($periodo, $periodoAnt){ + $cell->setValue('BRECHA '.$periodo.' vs. '.$periodoAnt); + }); + $sheet->mergeCells('N6:S6'); + $sheet->cells('N6:S6', function($cells){ + $cells->setBackground('#ff7043'); + $cells->setFontColor("#FFFFFF"); + $cells->setFontWeight("bold"); + $cells->setAlignment('center'); + }); + + $topeHeader = 3; + $rango = 'A7:S7'; + + $itemsHeader = array("Mínimo", "25 Perc.", "Promedio", "Mediana", "75 Perc.", "Máximo"); + $cargoHeader = array("Cargo Oficial"); + + for ($i= 0; $i < $topeHeader; $i++) { + foreach ($itemsHeader as $key => $value) { + array_push($cargoHeader, $value); + } + + } + + $sheet->row(7, $cargoHeader); + $sheet->rows($adicionalTotal->unique()); + $sheet->cells($rango, function($cells){ + $cells->setBackground('#a7ffeb'); + }); + $sheet->setFreeze('A7'); + }); + + $excel->sheet("Tripulacion Incorporada", function($sheet) use($contratoNuevo, $periodo, $convertir){ + + $objDrawing = new PHPExcel_Worksheet_Drawing; + $objDrawing->setPath(public_path('images/logo.jpg')); //your image path + $objDrawing->setCoordinates('A1'); + $objDrawing->setWidthAndHeight(304,60); + $objDrawing->setWorksheet($sheet); + + + + if($convertir){ + $titulo = 'TRIPULACION INCORPORADA EN EL PERIODO USD'; + }else{ + $titulo = 'TRIPULACION INCORPORADA EN EL PERIODO'; + } + // Título + $sheet->cell('A5', function($cell) use($titulo){ + $cell->setValue($titulo); + }); + $sheet->mergeCells('A5:H5'); + $sheet->cells('A5:H5', function($cells){ + $cells->setBackground('#0288d1'); + $cells->setFontColor("#FFFFFF"); + $cells->setFontWeight("bold"); + // $cells->setValignment('center'); + $cells->setAlignment('center'); + }); + + + + $sheet->cell('B6', function($cell) use($periodo){ + $cell->setValue('PERIODO '.$periodo); + }); + $sheet->mergeCells('B6:H6'); + $sheet->cells('B6:H6', function($cells){ + $cells->setBackground('#ffb300'); + $cells->setFontColor("#FFFFFF"); + $cells->setFontWeight("bold"); + // $cells->setValignment('center'); + $cells->setAlignment('center'); + }); + + $topeHeader = 1; + $rango = 'A7:H7'; + + $itemsHeader = array("Ocupantes","Mínimo", "25 Perc.", "Promedio", "Mediana", "75 Perc.", "Máximo"); + $cargoHeader = array("Cargo Oficial"); + + for ($i= 0; $i < $topeHeader; $i++) { + foreach ($itemsHeader as $key => $value) { + array_push($cargoHeader, $value); + } + + } + + $sheet->row(7, $cargoHeader); + $sheet->rows($contratoNuevo->unique()); + $sheet->cells($rango, function($cells){ + $cells->setBackground('#a7ffeb'); + }); + $sheet->setFreeze('A7'); + }); + $excel->setActiveSheetIndex(0); + })->export('xlsx'); + } + + public function nivelReportClubExcel(Request $request){ + ini_set('max_execution_time', 0); + // periodo de la encuesta actual (semestral para navieras) + $periodo = $request->periodo; + // rubro de la empresa del cliente + $rubro = $request->rubro_id; + + $encuestasIDs = Cabecera_encuesta::where('periodo', $periodo) + ->where('rubro_id', $rubro) + ->pluck('id'); + // recupera los cargos del periodo para todos los que tengan homologación con niveles + $nivelesCargos = Detalle_encuestas_nivel::distinct() + ->whereIn('cabecera_encuesta_id', $encuestasIDs) + ->whereNotNull('cargo_oficial_id') + ->pluck('nivel_oficial_id'); + // variables de detalle para cada segmento + $detalleUniverso = collect(); + $detalleNacional = collect(); + $detalleInternacional = collect(); + + $detalleInternacional = collect(); + // Procesamiento por cargo + foreach ($nivelesCargos as $value) { + $request->request->add(["nivel_id"=> $value]); + // procesamos el reporte + $respuesta = $this->nivelReport($request, $encuestasIDs, true); + $nivel = Nivel::find($value); + // preparamos los datos para el array final del cargo + $itemArray = array( $nivel->descripcion, + $nivel->descripcion, + ); + $itemArrayNac = $itemArray; + $itemArrayInt = $itemArray; + // por cada item del detalle + foreach ($respuesta as $key => $item) { + + switch ($key) { + + case 'detalle_universo': + $this->cargaDetalleNivel($item, $itemArray); + break; + case 'detalle_nacional': + $this->cargaDetalleNivel($item, $itemArrayNac); + break; + case 'detalleInternacional': + $this->cargaDetalleNivel($item, $itemArrayInt); + break; + } + + } + + $detalleUniverso->push($itemArray); + $detalleNacional->push($itemArrayNac); + $detalleInternacional->push($itemArrayInt); + } + + + $filename = 'Resultados_Niveles'.$periodo; + + Excel::create($filename, function($excel) use($detalleUniverso, $detalleNacional, $detalleInternacional) { + //Excel::create($filename, function($excel) use($detalleNacional) { + $excel->sheet("universo", function($sheet) use($detalleUniverso){ + $objDrawing = new PHPExcel_Worksheet_Drawing; + $objDrawing->setPath(public_path('images/logo.jpg')); //your image path + $objDrawing->setCoordinates('A1'); + $objDrawing->setWidthAndHeight(304,60); + $objDrawing->setWorksheet($sheet); + + $sheet->cell('A5', function($cell){ + $cell->setValue('NIVEL'); + }); + $sheet->mergeCells('A5:D5'); + $sheet->cells('A5:D5', function($cells){ + $cells->setBackground('#00897b'); + $cells->setFontColor("#FFFFFF"); + $cells->setFontWeight("bold"); + // $cells->setValignment('center'); + $cells->setAlignment('center'); + }); + // Salario Base Header + $sheet->cell('E5', function($cell){ + $cell->setValue('SALARIO BASE'); + }); + $sheet->mergeCells('E5:J5'); $sheet->cells('E5:J5', function($cells){ $cells->setBackground('#0288d1'); $cells->setFontColor("#FFFFFF"); @@ -2311,1461 +2544,9 @@ public function nivelReportClubExcel(Request $request){ $excel->setActiveSheetIndex(0); })->export('xlsx'); } - private function cargaDetalle($item, &$itemArray){ - $variableAnual = false; - $efectivoTotal = false; - $efectivoGarantizado = false; - $salarioEmpresa = 0; - $variableAnualEmp = 0; - //dd($item); - foreach ($item as $key => $value) { - switch ($value["Concepto"]) { - case "Comision": - $this->cargador($value, $itemArray, false); - break; - case Lang::get('reportReport.concept_salary'): - //dd("salario"); - $this->cargador($value, $itemArray, true); - $salarioEmpresa = intval(str_replace(".", "", $value["Empresa"])); - break; - case Lang::get('reportReport.concept_annual_cash'): - $efectivoGarantizado = true; - $this->cargador($value, $itemArray, false); - break; - case Lang::get('reportReport.concept_variable_pay'): - $variableAnual = true; - $this->cargador($value, $itemArray, false); - $variableAnualEmp = $value["Empresa"]; - break; - case Lang::get('reportReport.concept_total_incentives'): - $this->cargador($value, $itemArray, false); - break; - case Lang::get('reportReport.concept_bonus'): - $this->cargador($value, $itemArray, false); - break; - case Lang::get('reportReport.concept_total_compensation'): - $this->cargador($value, $itemArray, false); - break; - case Lang::get('reportReport.concept_annual_cash_total'): - $efectivoTotal = true; - $this->cargador($value, $itemArray, false); - break; - - } - } - - // comparativo salario base - if($itemArray[4] > 0){ - $compMinSal = round($salarioEmpresa/$itemArray[4] - 1, 2); - }else{ - $compMinSal = 0; - } - if($itemArray[5] > 0){ - $comp25PercSal = round($salarioEmpresa/$itemArray[5] - 1, 2); - }else{ - $comp25PercSal = 0; - } - if($itemArray[6] > 0){ - $compPromSal = round($salarioEmpresa/$itemArray[6] - 1, 2); - }else{ - $compPromSal = 0; - } - if($itemArray[7] > 0){ - $compMedSal = round($salarioEmpresa/$itemArray[7] - 1, 2); - }else{ - $compMedSal = 0; - } - - if($itemArray[8] > 0){ - $comp75PercSal = round($salarioEmpresa/$itemArray[8] - 1, 2); - }else{ - $comp75PercSal = 0; - } - if($itemArray[9] > 0){ - $compMaxSal = round($salarioEmpresa/$itemArray[9] - 1, 2); - }else{ - $compMaxSal = 0; - } - - //dd($itemArray); - - if($variableAnual){ - // comparativo variable anual - if($itemArray[10] > 0){ - $compMinVar = round($salarioEmpresa/$itemArray[10] - 1, 2); - }else{ - $compMinVar = 0; - } - if($itemArray[11] > 0){ - $comp25PercVar = round($salarioEmpresa/$itemArray[11] - 1 , 2); - }else{ - $comp25PercVar = 0; - } - if($itemArray[12] > 0){ - $compPromVar = round($salarioEmpresa/$itemArray[12] - 1 , 2); - }else{ - $compPromVar = 0; - } - if($itemArray[13] > 0){ - $compMedVar = round($salarioEmpresa/$itemArray[13] - 1, 2); - }else{ - $compMedVar = 0; - } - if($itemArray[14] > 0){ - $comp75PercVar = round($salarioEmpresa/$itemArray[14] - 1, 2); - }else{ - $comp75PercVar = 0; - } - if($itemArray[15] > 0){ - $compMaxVar = round($salarioEmpresa/$itemArray[15] - 1, 2); - }else{ - $compMaxVar = 0; - } - - if($itemArray[34] > 0){ - $ratioSalBaseTotalEfectivoMin = round(($itemArray[4]*12)/$itemArray[34], 2); - }else{ - $ratioSalBaseTotalEfectivoMin = 0; - } - if($itemArray[35] > 0){ - $ratioSalBaseTotalEfectivo25 = round(($itemArray[5]*12)/$itemArray[35], 2); - }else{ - $ratioSalBaseTotalEfectivo25 = 0; - } - if($itemArray[36] > 0){ - $ratioSalBaseTotalEfectivoProm = round(($itemArray[6]*12)/$itemArray[36], 2); - }else{ - $ratioSalBaseTotalEfectivoProm = 0; - } - if($itemArray[37] > 0){ - $ratioSalBaseTotalEfectivoMed = round(($itemArray[7]*12)/$itemArray[37], 2); - }else{ - $ratioSalBaseTotalEfectivoMed = 0; - } - if($itemArray[38] > 0){ - $ratioSalBaseTotalEfectivo75 = round(($itemArray[8]*12)/$itemArray[38], 2); - }else{ - $ratioSalBaseTotalEfectivo75 = 0; - } - if($itemArray[39] > 0){ - $ratioSalBaseTotalEfectivoMax = round(($itemArray[9]*12)/$itemArray[39], 2); - }else{ - $ratioSalBaseTotalEfectivoMax = 0; - } - array_push( $itemArray, - $compMinSal, - $comp25PercSal, - $compPromSal, - $compMedSal, - $comp75PercSal, - $compMaxSal, - $compMinVar, - $comp25PercVar, - $compPromVar, - $compMedVar, - $comp75PercVar, - $compMaxVar, - $ratioSalBaseTotalEfectivoMin, - $ratioSalBaseTotalEfectivo25, - $ratioSalBaseTotalEfectivoProm, - $ratioSalBaseTotalEfectivoMed, - $ratioSalBaseTotalEfectivo75, - $ratioSalBaseTotalEfectivoMax); - }elseif($efectivoTotal){ - // comparativo efectivo total anual - if($itemArray[34] > 0){ - $ratioSalBaseTotalEfectivoMin = round(($itemArray[4]*12)/$itemArray[34], 2); - }else{ - $ratioSalBaseTotalEfectivoMin = 0; - } - if($itemArray[35] > 0){ - $ratioSalBaseTotalEfectivo25 = round(($itemArray[5]*12)/$itemArray[35], 2); - }else{ - $ratioSalBaseTotalEfectivo25 = 0; - } - if($itemArray[36] > 0){ - $ratioSalBaseTotalEfectivoProm = round(($itemArray[6]*12)/$itemArray[36], 2); - }else{ - $ratioSalBaseTotalEfectivoProm = 0; - } - if($itemArray[37] > 0){ - $ratioSalBaseTotalEfectivoMed = round(($itemArray[7]*12)/$itemArray[37], 2); - }else{ - $ratioSalBaseTotalEfectivoMed = 0; - } - if($itemArray[38] > 0){ - $ratioSalBaseTotalEfectivo75 = round(($itemArray[8]*12)/$itemArray[38], 2); - }else{ - $ratioSalBaseTotalEfectivo75 = 0; - } - if($itemArray[39] > 0){ - $ratioSalBaseTotalEfectivoMax = round(($itemArray[9]*12)/$itemArray[39], 2); - }else{ - $ratioSalBaseTotalEfectivoMax = 0; - } - - array_push( $itemArray, - $compMinSal, - $comp25PercSal, - $compPromSal, - $compMedSal, - $comp75PercSal, - $compMaxSal, - $ratioSalBaseTotalEfectivoMin, - $ratioSalBaseTotalEfectivo25, - $ratioSalBaseTotalEfectivoProm, - $ratioSalBaseTotalEfectivoMed, - $ratioSalBaseTotalEfectivo75, - $ratioSalBaseTotalEfectivoMax); - }else{ - - if($itemArray[10] > 0){ - $ratioSalBaseTotalEfectivoMin = round(($itemArray[4]*12)/$itemArray[10], 2); - }else{ - $ratioSalBaseTotalEfectivoMin = 0; - } - if($itemArray[11] > 0){ - $ratioSalBaseTotalEfectivo25 = round(($itemArray[5]*12)/$itemArray[11], 2); - }else{ - $ratioSalBaseTotalEfectivo25 = 0; - } - if($itemArray[12] > 0){ - $ratioSalBaseTotalEfectivoProm = round(($itemArray[6]*12)/$itemArray[12], 2); - }else{ - $ratioSalBaseTotalEfectivoProm = 0; - } - if($itemArray[13] > 0){ - $ratioSalBaseTotalEfectivoMed = round(($itemArray[7]*12)/$itemArray[13], 2); - }else{ - $ratioSalBaseTotalEfectivoMed = 0; - } - if($itemArray[14] > 0){ - $ratioSalBaseTotalEfectivo75 = round(($itemArray[8]*12)/$itemArray[14], 2); - }else{ - $ratioSalBaseTotalEfectivo75 = 0; - } - if($itemArray[15] > 0){ - $ratioSalBaseTotalEfectivoMax = round(($itemArray[9]*12)/$itemArray[15], 2); - }else{ - $ratioSalBaseTotalEfectivoMax = 0; - } - - array_push( $itemArray, - $compMinSal, - $comp25PercSal, - $compPromSal, - $compMedSal, - $comp75PercSal, - $compMaxSal, - $ratioSalBaseTotalEfectivoMin, - $ratioSalBaseTotalEfectivo25, - $ratioSalBaseTotalEfectivoProm, - $ratioSalBaseTotalEfectivoMed, - $ratioSalBaseTotalEfectivo75, - $ratioSalBaseTotalEfectivoMax); - } - - - } - private function cargaDetalleComparativo($value, &$itemArray, $contNuevo){ - - if($contNuevo){ - array_push($itemArray, $value["Ocupantes"]); - array_push($itemArray, $value["Min"]); - array_push($itemArray, $value["25 Percentil"]); - array_push($itemArray, round($value["Promedio"], 2)); - array_push($itemArray, $value["Mediana"]); - array_push($itemArray, $value["75 Percentil"]); - array_push($itemArray, $value["Max"]); - }else{ - array_push($itemArray, $value["Min Ant"]); - array_push($itemArray, $value["25P Ant"]); - array_push($itemArray, round($value["Prom Ant"], 2)); - array_push($itemArray, $value["Med Ant"]); - array_push($itemArray, $value["75P Ant"]); - array_push($itemArray, $value["Max Ant"]); - array_push($itemArray, $value["Min"]); - array_push($itemArray, $value["25 Percentil"]); - array_push($itemArray, round($value["Promedio"], 2)); - array_push($itemArray, $value["Mediana"]); - array_push($itemArray, $value["75 Percentil"]); - array_push($itemArray, $value["Max"]); - } - } - private function cargador($value, &$itemArray, $casos){ - if($casos){ - array_push($itemArray, $value["ocupantes"]); - array_push($itemArray, $value["Casos"]); - } - //array_push($itemArray, $value["Concepto"]); - array_push($itemArray, $value["Min"]); - array_push($itemArray, $value["25 Percentil"]); - array_push($itemArray, round($value["Promedio"], 2)); - array_push($itemArray, $value["Mediana"]); - array_push($itemArray, $value["75 Percentil"]); - array_push($itemArray, $value["Max"]); - } - - - private function segmenter( &$collection, - $countCasosSeg, - $detalle, - $countCasos, - $countCasosGratif, - $countCasosAguinaldo, - //$countCasosBeneficios, - $countCasosBono, - $dbClienteEnc, - $rubro, - $segmento, - $dbCargo, - $muestraComision){ - if($rubro == 1 ){ // Bancos - $salariosBase = $detalle->where('salario_base', '>', '0')->pluck('salario_base'); - $salarioMin = $salariosBase->min(); - $salarioMax = $salariosBase->max(); - $salarioProm = $salariosBase->avg(); - $salarioMed = $this->median($salariosBase); - $salario25Per = $this->percentile(25,$salariosBase); - $salario75Per = $this->percentile(75, $salariosBase); - - // Salario Base y Anual - $this->pusher( $collection, - $countCasos, - Lang::get('reportReport.concept_salary'), - $salarioMin, - $salarioMax, - round($salarioProm, 0), - round($salarioMed, 0), - round($salario25Per, 0), - round($salario75Per, 0), - $dbClienteEnc->salario_base, - $segmento, - $dbCargo); - - $salariosBaseAnual = $salariosBase->map(function($item){ - return $item * 12; - }); - - $salarioAnualMin = $salariosBaseAnual->min(); - $salarioAnualMax = $salariosBaseAnual->max(); - $salarioAnualProm = $salariosBaseAnual->avg(); - $salarioAnualMed = $this->median($salariosBaseAnual); - $salarioAnual25Per = $this->percentile(25,$salariosBaseAnual); - $salarioAnual75Per = $this->percentile(75, $salariosBaseAnual); - $this->pusher( $collection, - $countCasos, - Lang::get('reportReport.concept_annual_salary'), - $salarioAnualMin, - $salarioAnualMax, - round($salarioAnualProm, 0), - round($salarioAnualMed, 0), - round($salarioAnual25Per, 0), - round($salarioAnual75Per, 0), - $dbClienteEnc->salario_base * 12, - $segmento, - $dbCargo); - - // Gratificacion - $gratificaciones = $detalle->where('gratificacion', '>', '0')->pluck('gratificacion'); - $gratificacionMin = $gratificaciones->min(); - $gratificacionMax = $gratificaciones->max(); - $gratificacionProm = $gratificaciones->avg(); - $gratificacionMed = $this->median($gratificaciones); - $gratificacion25Per = $this->percentile(25, $gratificaciones); - $gratificacion75Per = $this->percentile(75, $gratificaciones); - - $this->pusher( $collection, - $countCasosGratif, - Lang::get('reportReport.concept_annual_gratif.'), - $gratificacionMin, - $gratificacionMax, - round($gratificacionProm, 0), - round($gratificacionMed, 0), - round($gratificacion25Per, 0), - round($gratificacion75Per, 0), - $dbClienteEnc->gratificacion, - $segmento, - $dbCargo); - - //Aguinaldo - $aguinaldos = $detalle->where('aguinaldo', '>', '0')->pluck('aguinaldo'); - $aguinaldoMin = $aguinaldos->min(); - $aguinaldoMax = $aguinaldos->max(); - $aguinaldoProm = $aguinaldos->avg(); - $aguinaldoMed = $this->median($aguinaldos); - $aguinaldo25Per = $this->percentile(25, $aguinaldos); - $aguinaldo75Per = $this->percentile(75, $aguinaldos); - - $this->pusher( $collection, - $countCasosAguinaldo, - Lang::get('reportReport.concept_13month'), - $aguinaldoMin, - $aguinaldoMax, - round($aguinaldoProm, 0), - round($aguinaldoMed, 0), - round($aguinaldo25Per, 0), - round($aguinaldo75Per, 0), - $dbClienteEnc->aguinaldo, - $segmento, - $dbCargo); - - // Efectivo Anual Garantizado - $detalle = $detalle->map(function($item){ - $item['efectivo_anual_garantizado'] = ($item['salario_base'] * 12) + - $item['aguinaldo'] + - $item['gratificacion']; - return $item; - }); - - $efectivoMin = $detalle->pluck('efectivo_anual_garantizado')->min(); - $efectivoMax = $detalle->pluck('efectivo_anual_garantizado')->max(); - $efectivoProm = $detalle->pluck('efectivo_anual_garantizado')->avg(); - $efectivoMed = $this->median($detalle->pluck('efectivo_anual_garantizado')); - $efectivo25Per = $this->percentile(25, $detalle->pluck('efectivo_anual_garantizado')); - $efectivo75Per = $this->percentile(75, $detalle->pluck('efectivo_anual_garantizado')); - - $found = $detalle->where('cabecera_encuesta_id', $dbClienteEnc->cabecera_encuesta_id) - ->first(); - if($found){ - $efectivoEmpresa = $found->efectivo_anual_garantizado; - }else{ - $efectivoEmpresa = 0; - } - - $this->pusher( $collection, - $countCasos, - Lang::get('reportReport.concept_annual_cash'), - $efectivoMin, - $efectivoMax, - round($efectivoProm, 0), - round($efectivoMed, 0), - round($efectivo25Per, 0), - round($efectivo75Per, 0), - $efectivoEmpresa, - $segmento, - $dbCargo); - - - //Adicional - $casosAdicionalesBancos = $detalle->where('adicionales_bancos', '>', '0')->unique('cabecera_encuesta_id')->count(); - $adicionalesBancos = $detalle->where('adicionales_bancos', '>', '0')->pluck('adicionales_bancos'); - $adicionalesMin = $adicionalesBancos->min(); - $adicionalesMax = $adicionalesBancos->max(); - $adicionalesProm = $adicionalesBancos->avg(); - $adicionalesMed = $this->median($adicionalesBancos); - $adicionales25Per = $this->percentile(25, $adicionalesBancos); - $adicionales75Per = $this->percentile(75, $adicionalesBancos); - - $this->pusher( $collection, - $casosAdicionalesBancos, - Lang::get('reportReport.concept_total_incentives'), - $adicionalesMin, - $adicionalesMax, - round($adicionalesProm, 0), - round($adicionalesMed, 0), - round($adicionales25Per, 0), - round($adicionales75Per, 0), - $dbClienteEnc->adicionales_bancos, - $segmento, - $dbCargo); - - - //Bono - $bonos = $detalle->where('bono_anual', '>', '0')->pluck('bono_anual'); - $bonoMin = $bonos->min(); - $bonoMax = $bonos->max(); - $bonoProm = $bonos->avg(); - $bonoMed = $this->median($bonos); - $bono25Per = $this->percentile(25, $bonos); - $bono75Per = $this->percentile(75, $bonos); - - $this->pusher( $collection, - $countCasosBono, - Lang::get('reportReport.concept_bonus'), - $bonoMin, - $bonoMax, - $bonoProm, - $bonoMed, - $bono25Per, - $bono75Per, - $dbClienteEnc->bono_anual, - $segmento, - $dbCargo); - - if($muestraComision){ - //Comisión - $countCasosComision = $detalle->where('comision', '>', '0')->unique('cabecera_encuesta_id')->count(); - $comision = $detalle->where('comision', '>', '0')->pluck('comision'); - $comisionMin = $comision->min(); - $comisionMax = $comision->max(); - $comisionProm = $comision->avg(); - $comisionMed = $this->median($comision); - $comision25Per = $this->percentile(25, $comision); - $comision75Per = $this->percentile(75, $comision); - - $this->pusher( $collection, - $countCasosComision, - //Lang::get('reportReport.concept_bonus'), - "Comision", - $comisionMin, - $comisionMax, - round($comisionProm, 0) * 12, - round($comisionMed, 0) * 12, - round($comision25Per, 0) * 12, - round($comision75Per, 0) *12, - $dbClienteEnc->comision, - $segmento, - $dbCargo); - - } - - - //Aguinaldo Impactado - $aguinaldoImpMin = 0; - $aguinaldoImpMax = 0; - $aguinaldoImpProm = 0; - $aguinaldoImpMed = 0; - $aguinaldoImp25Per = 0; - $aguinaldoImp75Per = 0; - $aguinaldoImpEmpresa = 0; - - $detalle = $detalle->map(function($item){ - $item['aguinaldo_impactado'] = (($item['salario_base'] * 12) + - $item['gratificacion'] + - $item['bono_anual'] + - $item['adicionales_bancos'])/12; - return $item; - }); - - $aguinaldoImpMin = $detalle->pluck('aguinaldo_impactado')->min(); - $aguinaldoImpMax = $detalle->pluck('aguinaldo_impactado')->max(); - $aguinaldoImpProm = $detalle->pluck('aguinaldo_impactado')->avg(); - $aguinaldoImpMed = $this->median($detalle->pluck('aguinaldo_impactado')); - $aguinaldoImp25Per = $this->percentile(25, $detalle->pluck('aguinaldo_impactado')); - $aguinaldoImp75Per = $this->percentile(75, $detalle->pluck('aguinaldo_impactado')); - - $found = $detalle->where('cabecera_encuesta_id', $dbClienteEnc->cabecera_encuesta_id) - ->first(); - if($found){ - $aguinaldoImpEmpresa = $found->aguinaldo_impactado; - }else{ - $aguinaldoImpEmpresa = 0; - } - - $this->pusher( $collection, - $countCasos, - Lang::get('reportReport.concept_13month_impacted'), - $aguinaldoImpMin, - $aguinaldoImpMax, - round($aguinaldoImpProm, 0), - round($aguinaldoImpMed, 0), - round($aguinaldoImp25Per, 0), - round($aguinaldoImp75Per, 0), - $aguinaldoImpEmpresa, - $segmento, - $dbCargo); - - //Total Compensación Efectiva anual - $detalle = $detalle->map(function($item){ - $item['total_comp_anual'] = ($item['salario_base'] * 12) + - $item['gratificacion'] + - $item['bono_anual'] + - $item['adicionales_bancos']+ - $item['aguinaldo']; - return $item; - }); - - $totalCompAnualMin = $detalle->pluck('total_comp_anual')->min(); - $totalCompAnualMax = $detalle->pluck('total_comp_anual')->max(); - $totalCompAnualProm = $detalle->pluck('total_comp_anual')->avg(); - $totalCompAnualMed = $this->median($detalle->pluck('total_comp_anual')); - $totalCompAnual25Per = $this->percentile(25, $detalle->pluck('total_comp_anual')); - $totalCompAnual75Per = $this->percentile(75, $detalle->pluck('total_comp_anual')); - - $found = $detalle->where('cabecera_encuesta_id', $dbClienteEnc->cabecera_encuesta_id) - ->first(); - if($found){ - $totalCompAnualEmpresa = $found->total_comp_anual; - }else{ - $totalCompAnualEmpresa = 0; - } - - - $this->pusher( $collection, - $countCasos, - Lang::get('reportReport.concept_total_compensation'), - $totalCompAnualMin, - $totalCompAnualMax, - round($totalCompAnualProm, 0), - round($totalCompAnualMed, 0), - round($totalCompAnual25Per, 0), - round($totalCompAnual75Per, 0), - $totalCompAnualEmpresa, - $segmento, - $dbCargo); - - }elseif ($rubro == 4) { // Navieras - // Salario Base - $salariosBase = $detalle->where('salario_base', '>', '0')->pluck('salario_base'); - $salarioMin = $salariosBase->min(); - $salarioMax = $salariosBase->max(); - $salarioProm = $salariosBase->avg(); - $salarioMed = $this->median($salariosBase); - $salario25Per = $this->percentile(25,$salariosBase); - $salario75Per = $this->percentile(75, $salariosBase); - - $this->pusher( $collection, - $countCasos, - Lang::get('reportReport.concept_salary'), - $salarioMin, - $salarioMax, - round($salarioProm, 0), - round($salarioMed, 0), - round($salario25Per, 0), - round($salario75Per, 0), - $dbClienteEnc->salario_base, - $segmento, - $dbCargo); - // Salario Base Anual - $salariosBaseAnual = $salariosBase->map(function($item){ - return $item * 12; - }); - - $salarioAnualMin = $salariosBaseAnual->min(); - $salarioAnualMax = $salariosBaseAnual->max(); - $salarioAnualProm = $salariosBaseAnual->avg(); - $salarioAnualMed = $this->median($salariosBaseAnual); - $salarioAnual25Per = $this->percentile(25,$salariosBaseAnual); - $salarioAnual75Per = $this->percentile(75, $salariosBaseAnual); - $this->pusher( $collection, - $countCasos, - Lang::get('reportReport.concept_annual_salary'), - $salarioAnualMin, - $salarioAnualMax, - round($salarioAnualProm, 0), - round($salarioAnualMed, 0), - round($salarioAnual25Per, 0), - round($salarioAnual75Per, 0), - $dbClienteEnc->salario_base * 12, - $segmento, - $dbCargo); - //Aguinaldo - $aguinaldos = $detalle->where('aguinaldo', '>', '0')->pluck('aguinaldo'); - $aguinaldoMin = $aguinaldos->min(); - $aguinaldoMax = $aguinaldos->max(); - $aguinaldoProm = $aguinaldos->avg(); - $aguinaldoMed = $this->median($aguinaldos); - $aguinaldo25Per = $this->percentile(25, $aguinaldos); - $aguinaldo75Per = $this->percentile(75, $aguinaldos); - - $this->pusher( $collection, - $countCasosAguinaldo, - Lang::get('reportReport.concept_13month'), - $aguinaldoMin, - $aguinaldoMax, - round($aguinaldoProm, 0), - round($aguinaldoMed, 0), - round($aguinaldo25Per, 0), - round($aguinaldo75Per, 0), - $dbClienteEnc->aguinaldo, - $segmento, - $dbCargo); - - // Efectivo Anual Garantizado - /*$detalle = $detalle->map(function($item){ - $item['efectivo_anual_garantizado'] = ($item['salario_base'] * 12) + - $item['aguinaldo']; - return $item; - }); - - $efectivoMin = $detalle->pluck('efectivo_anual_garantizado')->min(); - $efectivoMax = $detalle->pluck('efectivo_anual_garantizado')->max(); - $efectivoProm = $detalle->pluck('efectivo_anual_garantizado')->avg(); - $efectivoMed = $this->median($detalle->pluck('efectivo_anual_garantizado')); - $efectivo25Per = $this->percentile(25, $detalle->pluck('efectivo_anual_garantizado')); - $efectivo75Per = $this->percentile(75, $detalle->pluck('efectivo_anual_garantizado')); - - $found = $detalle->where('cabecera_encuesta_id', $dbClienteEnc->cabecera_encuesta_id) - ->first(); - if($found){ - $efectivoEmpresa = $found->efectivo_anual_garantizado; - }else{ - $efectivoEmpresa = 0; - } - - $this->pusher( $collection, - $countCasos, - Lang::get('reportReport.concept_annual_cash'), - $efectivoMin, - $efectivoMax, - $efectivoProm, - $efectivoMed, - $efectivo25Per, - $efectivo75Per, - $efectivoEmpresa, - $segmento, - $dbCargo); - */ - - // Variable Anual - $plusRendimiento = $detalle->where('plus_rendimiento', '>', '0')->pluck('plus_rendimiento'); - $plusMin = $plusRendimiento->min(); - $plusMax = $plusRendimiento->max(); - $plusProm = $plusRendimiento->avg(); - $plusMed = $this->median($plusRendimiento); - $plus25Per = $this->percentile(25,$plusRendimiento); - $plus75Per = $this->percentile(75, $plusRendimiento); - $countCasosPlus = $detalle->where('plus_rendimiento', '>', '0')->unique('cabecera_encuesta_id')->count(); - $this->pusher( $collection, - $countCasosPlus, - Lang::get('reportReport.concept_variable_pay'), - $plusMin, - $plusMax, - round($plusProm, 0), - round($plusMed,0), - round($plus25Per, 0), - round($plus75Per, 0), - $dbClienteEnc->plus_rendimiento, - $segmento, - $dbCargo); - - // Adicional Amarre - $adicionalAmarre = $detalle->where('adicional_amarre', '>', '0')->pluck('adicional_amarre'); - $amarreMin = $adicionalAmarre->min(); - $amarreMax = $adicionalAmarre->max(); - $amarreProm = $adicionalAmarre->avg(); - $amarreMed = $this->median($adicionalAmarre); - $amarre25Per = $this->percentile(25,$adicionalAmarre); - $amarre75Per = $this->percentile(75, $adicionalAmarre); - $countCasosAmarre = $detalle->where('adicional_amarre', '>', '0')->unique('cabecera_encuesta_id')->count(); - $this->pusher( $collection, - $countCasosAmarre, - Lang::get('reportReport.concept_mooring'), - $amarreMin, - $amarreMax, - round($amarreProm, 0), - round($amarreMed, 0), - round($amarre25Per, 0), - round($amarre75Per, 0), - $dbClienteEnc->adicional_amarre, - $segmento, - $dbCargo); - - - // Adicional Tipo de Combustible - $adicionalTipoCombustible = $detalle->where('adicional_tipo_combustible', '>', '0')->pluck('adicional_tipo_combustible'); - $TipoCombustibleMin = $adicionalTipoCombustible->min(); - $TipoCombustibleMax = $adicionalTipoCombustible->max(); - $TipoCombustibleProm = $adicionalTipoCombustible->avg(); - $TipoCombustibleMed = $this->median($adicionalTipoCombustible); - $TipoCombustible25Per = $this->percentile(25,$adicionalTipoCombustible); - $TipoCombustible75Per = $this->percentile(75, $adicionalTipoCombustible); - $countCasosTipoCombustible = $detalle->where('adicional_tipo_combustible', '>', '0')->unique('cabecera_encuesta_id')->count(); - $this->pusher( $collection, - $countCasosTipoCombustible, - Lang::get('reportReport.concept_fuel_type'), - $TipoCombustibleMin, - $TipoCombustibleMax, - round($TipoCombustibleProm, 0), - round($TipoCombustibleMed, 0), - round($TipoCombustible25Per, 0), - round($TipoCombustible75Per, 0), - $dbClienteEnc->adicional_tipo_combustible, - $segmento, - $dbCargo); - - // Adicional por disponiblidad/embarque - $adicionalEmbarque = $detalle->where('adicional_embarque', '>', '0')->pluck('adicional_embarque'); - $embarqueMin = $adicionalEmbarque->min(); - $embarqueMax = $adicionalEmbarque->max(); - $embarqueProm = $adicionalEmbarque->avg(); - $embarqueMed = $this->median($adicionalEmbarque); - $embarque25Per = $this->percentile(25,$adicionalEmbarque); - $embarque75Per = $this->percentile(75, $adicionalEmbarque); - $countCasosEmbarque = $detalle->where('adicional_embarque', '>', '0')->unique('cabecera_encuesta_id')->count(); - $this->pusher( $collection, - $countCasosEmbarque, - Lang::get('reportReport.concept_shipping'), - $embarqueMin, - $embarqueMax, - round($embarqueProm, 0), - round($embarqueMed, 0), - round($embarque25Per, 0), - round($embarque75Per, 0), - $dbClienteEnc->adicional_embarque, - $segmento, - $dbCargo); - - // Adicional Carga - $adicionalCarga = $detalle->where('adicional_carga', '>', '0')->pluck('adicional_carga'); - $cargaMin = $adicionalCarga->min(); - $cargaMax = $adicionalCarga->max(); - $cargaProm = $adicionalCarga->avg(); - $cargaMed = $this->median($adicionalCarga); - $carga25Per = $this->percentile(25,$adicionalCarga); - $carga75Per = $this->percentile(75, $adicionalCarga); - $countCasosCarga = $detalle->where('adicional_carga', '>', '0')->unique('cabecera_encuesta_id')->count(); - $this->pusher( $collection, - $countCasosCarga, - Lang::get('reportReport.concept_load'), - $cargaMin, - $cargaMax, - round($cargaProm, 0), - round($cargaMed, 0), - round($carga25Per, 0), - round($carga75Per, 0), - $dbClienteEnc->adicional_carga, - $segmento, - $dbCargo); - - // Total Adicional - $casosAdicionales = $detalle->where('adicionales_navieras', '>', '0')->unique('cabecera_encuesta_id')->count(); - $adicionalAnual = $detalle->where('adicionales_navieras', '>', '0')->pluck('adicionales_navieras'); - $totalAdicionalMin = $adicionalAnual->min(); - $totalAdicionalMax = $adicionalAnual->max(); - $totalAdicionalProm = $adicionalAnual->avg(); - $totalAdicionalMed = $this->median($adicionalAnual); - $totalAdicional25Per = $this->percentile(25, $adicionalAnual); - $totalAdicional75Per = $this->percentile(75, $adicionalAnual); - - - $this->pusher( $collection, - $casosAdicionales, - Lang::get('reportReport.concept_total_incentives'), - $totalAdicionalMin, - $totalAdicionalMax, - round($totalAdicionalProm, 0), - round($totalAdicionalMed, 0), - round($totalAdicional25Per, 0), - round($totalAdicional75Per, 0), - $dbClienteEnc->adicionales_navieras, - $segmento, - $dbCargo); - - //Bono - $bonos = $detalle->where('bono_anual', '>', '0')->pluck('bono_anual'); - $bonoMin = $bonos->min(); - $bonoMax = $bonos->max(); - $bonoProm = $bonos->avg(); - $bonoMed = $this->median($bonos); - $bono25Per = $this->percentile(25, $bonos); - $bono75Per = $this->percentile(75, $bonos); - - $this->pusher( $collection, - $countCasosBono, - Lang::get('reportReport.concept_bonus'), - $bonoMin, - $bonoMax, - round($bonoProm, 0), - round($bonoMed, 0), - round($bono25Per, 0), - round($bono75Per, 0), - $dbClienteEnc->bono_anual, - $segmento, - $dbCargo); - - if($muestraComision){ - //Comisión - $countCasosComision = $detalle->where('comision', '>', '0')->unique('cabecera_encuesta_id')->count(); - $comision = $detalle->where('comision', '>', '0')->pluck('comision'); - $comisionMin = $comision->min(); - $comisionMax = $comision->max(); - $comisionProm = $comision->avg(); - $comisionMed = $this->median($comision); - $comision25Per = $this->percentile(25, $comision); - $comision75Per = $this->percentile(75, $comision); - - $this->pusher( $collection, - $countCasosComision, - //Lang::get('reportReport.concept_bonus'), - "Comision", - $comisionMin *12, - $comisionMax *12, - round($comisionProm, 0) *12, - round($comisionMed, 0) *12, - round($comision25Per, 0) *12, - round($comision75Per, 0) *12, - $dbClienteEnc->comision *12, - $segmento, - $dbCargo); - - } - - // Efectivo Total Anual - $detalle = $detalle->map(function($item){ - $item['efectivo_total_anual'] = $item['salario_base'] * 12 + - $item['aguinaldo']; - return $item; - }); - - $efectivoTotalMin = $detalle->pluck('efectivo_total_anual')->min(); - $efectivoTotalMax = $detalle->pluck('efectivo_total_anual')->max(); - $efectivoTotalProm = $detalle->pluck('efectivo_total_anual')->avg(); - $efectivoTotalMed = $this->median($detalle->pluck('efectivo_total_anual')); - $efectivoTotal25Per = $this->percentile(25, $detalle->pluck('efectivo_total_anual')); - $efectivoTotal75Per = $this->percentile(75, $detalle->pluck('efectivo_total_anual')); - - $found = $detalle->where('cabecera_encuesta_id', $dbClienteEnc->cabecera_encuesta_id) - ->first(); - if($found){ - $efectivoTotalEmpresa = $found->efectivo_total_anual; - }else{ - $efectivoTotalEmpresa = 0; - } - - $this->pusher( $collection, - $countCasos, - Lang::get('reportReport.concept_annual_cash_total'), - $efectivoTotalMin, - $efectivoTotalMax, - round($efectivoTotalProm, 0), - round($efectivoTotalMed, 0), - round($efectivoTotal25Per, 0), - round($efectivoTotal75Per, 0), - $efectivoTotalEmpresa, - $segmento, - $dbCargo); - - - //Beneficios - $beneficiosNavieras = $detalle->where('beneficios_navieras', '>', '0')->pluck('beneficios_navieras'); - //dd($detalle->where('beneficios_navieras', 1)); - $beneficiosMin = $beneficiosNavieras->min(); - $beneficiosMax = $beneficiosNavieras->max(); - $beneficiosProm = $beneficiosNavieras->avg(); - $beneficiosMed = $this->median($beneficiosNavieras); - $beneficios25Per = $this->percentile(25, $beneficiosNavieras); - $beneficios75Per = $this->percentile(75, $beneficiosNavieras); - $casosBeneficiosNavieras = $detalle->where('beneficios_navieras', '>', '0')->unique('cabecera_encuesta_id')->count(); - $this->pusher( $collection, - $casosBeneficiosNavieras, - Lang::get('reportReport.concept_total_benefits'), - $beneficiosMin, - $beneficiosMax, - round($beneficiosProm, 0), - round($beneficiosMed, 0), - round($beneficios25Per, 0), - round($beneficios75Per, 0), - $dbClienteEnc->beneficios_bancos, - $segmento, - $dbCargo); - - //Aguinaldo Impactado - $aguinaldoImpMin = 0; - $aguinaldoImpMax = 0; - $aguinaldoImpProm = 0; - $aguinaldoImpMed = 0; - $aguinaldoImp25Per = 0; - $aguinaldoImp75Per = 0; - $aguinaldoImpEmpresa = 0; - - $detalle = $detalle->map(function($item){ - $item['aguinaldo_impactado'] = (($item['salario_base'] * 12) + - $item['gratificacion'] + - $item['bono_anual'] + - $item['adicionales_navieras'])/12; - return $item; - }); - - $aguinaldoImpMin = $detalle->pluck('aguinaldo_impactado')->min(); - $aguinaldoImpMax = $detalle->pluck('aguinaldo_impactado')->max(); - $aguinaldoImpProm = $detalle->pluck('aguinaldo_impactado')->avg(); - $aguinaldoImpMed = $this->median($detalle->pluck('aguinaldo_impactado')); - $aguinaldoImp25Per = $this->percentile(25, $detalle->pluck('aguinaldo_impactado')); - $aguinaldoImp75Per = $this->percentile(75, $detalle->pluck('aguinaldo_impactado')); - - $found = $detalle->where('cabecera_encuesta_id', $dbClienteEnc->cabecera_encuesta_id) - ->first(); - if($found){ - $aguinaldoImpEmpresa = $found->aguinaldo_impactado; - }else{ - $aguinaldoImpEmpresa = 0; - } - - //dd($detalle); - - $this->pusher( $collection, - $countCasos, - Lang::get('reportReport.concept_13month_impacted'), - $aguinaldoImpMin, - $aguinaldoImpMax, - round($aguinaldoImpProm, 0), - round($aguinaldoImpMed, 0), - round($aguinaldoImp25Per, 0), - round($aguinaldoImp75Per, 0), - $aguinaldoImpEmpresa, - $segmento, - $dbCargo); - - - //Total Compensación anual - $detalle = $detalle->map(function($item){ - $item['total_comp_anual'] = $item['efectivo_total_anual'] + - $item['beneficios_navieras']; - return $item; - }); - - $totalCompAnualMin = $detalle->pluck('total_comp_anual')->min(); - $totalCompAnualMax = $detalle->pluck('total_comp_anual')->max(); - $totalCompAnualProm = $detalle->pluck('total_comp_anual')->avg(); - $totalCompAnualMed = $this->median($detalle->pluck('total_comp_anual')); - $totalCompAnual25Per = $this->percentile(25, $detalle->pluck('total_comp_anual')); - $totalCompAnual75Per = $this->percentile(75, $detalle->pluck('total_comp_anual')); - - $found = $detalle->where('cabecera_encuesta_id', $dbClienteEnc->cabecera_encuesta_id) - ->first(); - if($found){ - $totalCompAnualEmpresa = $found->total_comp_anual; - }else{ - $totalCompAnualEmpresa = 0; - } - - - $this->pusher( $collection, - $countCasos, - Lang::get('reportReport.concept_total_compensation'), - $totalCompAnualMin, - $totalCompAnualMax, - round($totalCompAnualProm, 0), - round($totalCompAnualMed, 0), - round($totalCompAnual25Per, 0), - round($totalCompAnual75Per, 0), - $totalCompAnualEmpresa, - $segmento, - $dbCargo); - }else{ // Los otros rubros son iguales - // Salario Base - $salariosBase = $detalle->where('salario_base', '>', '0')->pluck('salario_base'); - $salarioMin = $salariosBase->min(); - $salarioMax = $salariosBase->max(); - $salarioProm = $salariosBase->avg(); - $salarioMed = $this->median($salariosBase); - $salario25Per = $this->percentile(25,$salariosBase); - $salario75Per = $this->percentile(75, $salariosBase); - //dd($dbClienteEnc); - $this->pusher( $collection, - $countCasos, - Lang::get('reportReport.concept_salary'), - $salarioMin, - $salarioMax, - round($salarioProm, 0), - round($salarioMed, 0), - round($salario25Per, 0), - round($salario75Per, 0), - $dbClienteEnc->salario_base, - $segmento, - $dbCargo); - - // Salario Base Anual - $salariosBaseAnual = $salariosBase->map(function($item){ - return $item * 12; - }); - - $salarioAnualMin = $salariosBaseAnual->min(); - $salarioAnualMax = $salariosBaseAnual->max(); - $salarioAnualProm = $salariosBaseAnual->avg(); - $salarioAnualMed = $this->median($salariosBaseAnual); - $salarioAnual25Per = $this->percentile(25,$salariosBaseAnual); - $salarioAnual75Per = $this->percentile(75, $salariosBaseAnual); - $this->pusher( $collection, - $countCasos, - Lang::get('reportReport.concept_annual_salary'), - $salarioAnualMin, - $salarioAnualMax, - round($salarioAnualProm, 0), - round($salarioAnualMed, 0), - round($salarioAnual25Per, 0), - round($salarioAnual75Per, 0), - $dbClienteEnc->salario_base * 12, - $segmento, - $dbCargo); - - // Gratificacion - $gratificaciones = $detalle->where('gratificacion', '>', '0')->pluck('gratificacion'); - $gratificacionMin = $gratificaciones->min(); - $gratificacionMax = $gratificaciones->max(); - $gratificacionProm = $gratificaciones->avg(); - $gratificacionMed = $this->median($gratificaciones); - $gratificacion25Per = $this->percentile(25, $gratificaciones); - $gratificacion75Per = $this->percentile(75, $gratificaciones); - - $this->pusher( $collection, - $countCasosGratif, - Lang::get('reportReport.concept_annual_gratif.'), - $gratificacionMin, - $gratificacionMax, - round($gratificacionProm, 0), - round($gratificacionMed, 0), - round($gratificacion25Per, 0), - round($gratificacion75Per, 0), - $dbClienteEnc->gratificacion, - $segmento, - $dbCargo); - - //Aguinaldo - $aguinaldos = $detalle->where('aguinaldo', '>', '0')->pluck('aguinaldo'); - $aguinaldoMin = $aguinaldos->min(); - $aguinaldoMax = $aguinaldos->max(); - $aguinaldoProm = $aguinaldos->avg(); - $aguinaldoMed = $this->median($aguinaldos); - $aguinaldo25Per = $this->percentile(25, $aguinaldos); - $aguinaldo75Per = $this->percentile(75, $aguinaldos); - - $this->pusher( $collection, - $countCasosAguinaldo, - Lang::get('reportReport.concept_13month'), - $aguinaldoMin, - $aguinaldoMax, - round($aguinaldoProm, 0), - round($aguinaldoMed, 0), - round($aguinaldo25Per, 0), - round($aguinaldo75Per, 0), - $dbClienteEnc->aguinaldo, - $segmento, - $dbCargo); - - // Efectivo Anual Garantizado - $detalle = $detalle->map(function($item){ - $item['efectivo_anual_garantizado'] = ($item['salario_base'] * 12) + - $item['gratificacion']+ - $item['aguinaldo']; - return $item; - }); - $efectivoMin = $detalle->pluck('efectivo_anual_garantizado')->min(); - $efectivoMax = $detalle->pluck('efectivo_anual_garantizado')->max(); - $efectivoProm = $detalle->pluck('efectivo_anual_garantizado')->avg(); - $efectivoMed = $this->median($detalle->pluck('efectivo_anual_garantizado')); - $efectivo25Per = $this->percentile(25, $detalle->pluck('efectivo_anual_garantizado')); - $efectivo75Per = $this->percentile(75, $detalle->pluck('efectivo_anual_garantizado')); - - $found = $detalle->where('cabecera_encuesta_id', $dbClienteEnc->cabecera_encuesta_id) - ->first(); - if($found){ - $efectivoEmpresa = $found->efectivo_anual_garantizado; - }else{ - $efectivoEmpresa = 0; - } - - $this->pusher( $collection, - $countCasos, - Lang::get('reportReport.concept_annual_cash'), - $efectivoMin, - $efectivoMax, - round($efectivoProm, 0), - round($efectivoMed, 0), - round($efectivo25Per, 0), - round($efectivo75Per, 0), - $efectivoEmpresa, - $segmento, - $dbCargo); - - //Adicional - $countCasosAdicionales = $detalle->where('adicionales_resto', '>', '0')->unique('cabecera_encuesta_id')->count(); - $adicionales = $detalle->where('adicionales_resto', '>', '0')->pluck('adicionales_resto'); - $adicionalesMin = $adicionales->min(); - $adicionalesMax = $adicionales->max(); - $adicionalesProm = $adicionales->avg(); - $adicionalesMed = $this->median($adicionales); - $adicionales25Per = $this->percentile(25, $adicionales); - $adicionales75Per = $this->percentile(75, $adicionales); - - $this->pusher( $collection, - $countCasosAdicionales, - Lang::get('reportReport.concept_total_additional'), - $adicionalesMin, - $adicionalesMax, - round($adicionalesProm, 0), - round($adicionalesMed, 0), - round($adicionales25Per, 0), - round($adicionales75Per, 0), - $dbClienteEnc->adicionales_resto, - $segmento, - $dbCargo); - - //Bono - $bonos = $detalle->where('bono_anual', '>', '0')->pluck('bono_anual'); - $bonoMin = $bonos->min(); - $bonoMax = $bonos->max(); - $bonoProm = $bonos->avg(); - $bonoMed = $this->median($bonos); - $bono25Per = $this->percentile(25, $bonos); - $bono75Per = $this->percentile(75, $bonos); - - $this->pusher( $collection, - $countCasosBono, - Lang::get('reportReport.concept_bonus'), - $bonoMin, - $bonoMax, - round($bonoProm, 0), - round($bonoMed, 0), - round($bono25Per, 0), - round($bono75Per, 0), - $dbClienteEnc->bono_anual, - $segmento, - $dbCargo); - - - if($muestraComision){ - //Comisión - $countCasosComision = $detalle->where('comision', '>', '0')->unique('cabecera_encuesta_id')->count(); - $comision = $detalle->where('comision', '>', '0')->pluck('comision'); - $comisionMin = $comision->min(); - $comisionMax = $comision->max(); - $comisionProm = $comision->avg(); - $comisionMed = $this->median($comision); - $comision25Per = $this->percentile(25, $comision); - $comision75Per = $this->percentile(75, $comision); - - $this->pusher( $collection, - $countCasosComision, - //Lang::get('reportReport.concept_bonus'), - "Comision", - $comisionMin * 12, - $comisionMax * 12, - round($comisionProm, 0) * 12, - round($comisionMed, 0) * 12, - round($comision25Per, 0) * 12, - round($comision75Per, 0) * 12, - $dbClienteEnc->comision * 12, - $segmento, - $dbCargo); - - } - - // Efectivo Total Anual - $detalle = $detalle->map(function($item){ - $item['efectivo_total_anual'] = $item['efectivo_anual_garantizado'] + - $item['adicionales_resto']+ - $item['bono_anual']; - return $item; - }); - - $efectivoTotalMin = $detalle->pluck('efectivo_total_anual')->min(); - $efectivoTotalMax = $detalle->pluck('efectivo_total_anual')->max(); - $efectivoTotalProm = $detalle->pluck('efectivo_total_anual')->avg(); - $efectivoTotalMed = $this->median($detalle->pluck('efectivo_total_anual')); - $efectivoTotal25Per = $this->percentile(25, $detalle->pluck('efectivo_total_anual')); - $efectivoTotal75Per = $this->percentile(75, $detalle->pluck('efectivo_total_anual')); - - $found = $detalle->where('cabecera_encuesta_id', $dbClienteEnc->cabecera_encuesta_id) - ->first(); - if($found){ - $efectivoTotalEmpresa = $found->efectivo_total_anual; - }else{ - $efectivoTotalEmpresa = 0; - } - - $this->pusher( $collection, - $countCasos, - Lang::get('reportReport.concept_annual_cash_total'), - $efectivoTotalMin, - $efectivoTotalMax, - round($efectivoTotalProm, 0), - round($efectivoTotalMed, 0), - round($efectivoTotal25Per, 0), - round($efectivoTotal75Per, 0), - $efectivoTotalEmpresa, - $segmento, - $dbCargo); - - //Beneficios - $countCasosBeneficios = $detalle->where('beneficios_resto', '>', '0')->unique('cabecera_encuesta_id')->count(); - $beneficiosResto = $detalle->where('beneficios_resto', '>', '0')->pluck('beneficios_resto'); - $beneficiosMin = $beneficiosResto->min(); - $beneficiosMax = $beneficiosResto->max(); - $beneficiosProm = $beneficiosResto->avg(); - $beneficiosMed = $this->median($beneficiosResto); - $beneficios25Per = $this->percentile(25, $beneficiosResto); - $beneficios75Per = $this->percentile(75, $beneficiosResto); - - $this->pusher( $collection, - $countCasosBeneficios, - Lang::get('reportReport.concept_total_benefits'), - $beneficiosMin, - $beneficiosMax, - round($beneficiosProm, 0), - round($beneficiosMed, 0), - round($beneficios25Per, 0), - round($beneficios75Per, 0), - $dbClienteEnc->beneficios_resto, - $segmento, - $dbCargo); - - //Aguinaldo Impactado - $aguinaldoImpMin = 0; - $aguinaldoImpMax = 0; - $aguinaldoImpProm = 0; - $aguinaldoImpMed = 0; - $aguinaldoImp25Per = 0; - $aguinaldoImp75Per = 0; - $aguinaldoImpEmpresa = 0; - - $detalle = $detalle->map(function($item){ - $item['aguinaldo_impactado'] = (($item['salario_base'] * 12) + - $item['gratificacion'] + - $item['bono_anual'] + - $item['adicionales_resto'])/12; - return $item; - }); - - $aguinaldoImpMin = $detalle->pluck('aguinaldo_impactado')->min(); - $aguinaldoImpMax = $detalle->pluck('aguinaldo_impactado')->max(); - $aguinaldoImpProm = $detalle->pluck('aguinaldo_impactado')->avg(); - $aguinaldoImpMed = $this->median($detalle->pluck('aguinaldo_impactado')); - $aguinaldoImp25Per = $this->percentile(25, $detalle->pluck('aguinaldo_impactado')); - $aguinaldoImp75Per = $this->percentile(75, $detalle->pluck('aguinaldo_impactado')); - - $found = $detalle->where('cabecera_encuesta_id', $dbClienteEnc->cabecera_encuesta_id) - ->first(); - if($found){ - $aguinaldoImpEmpresa = $found->aguinaldo_impactado; - }else{ - $aguinaldoImpEmpresa = 0; - } - - $this->pusher( $collection, - $countCasos, - Lang::get('reportReport.concept_13month_impacted'), - $aguinaldoImpMin, - $aguinaldoImpMax, - round($aguinaldoImpProm, 0), - round($aguinaldoImpMed, 0), - round($aguinaldoImp25Per, 0), - round($aguinaldoImp75Per, 0), - $aguinaldoImpEmpresa, - $segmento, - $dbCargo); - - //Total Compensación anual - $detalle = $detalle->map(function($item){ - $item['total_comp_anual'] = $item['efectivo_total_anual'] + - $item['beneficios_resto'] * 12; - return $item; - }); - $totalCompAnualMin = $detalle->pluck('total_comp_anual')->min(); - $totalCompAnualMax = $detalle->pluck('total_comp_anual')->max(); - $totalCompAnualProm = $detalle->pluck('total_comp_anual')->avg(); - $totalCompAnualMed = $this->median($detalle->pluck('total_comp_anual')); - $totalCompAnual25Per = $this->percentile(25, $detalle->pluck('total_comp_anual')); - $totalCompAnual75Per = $this->percentile(75, $detalle->pluck('total_comp_anual')); - - $found = $detalle->where('cabecera_encuesta_id', $dbClienteEnc->cabecera_encuesta_id) - ->first(); - if($found){ - $totalCompAnualEmpresa = $found->total_comp_anual; - }else{ - $totalCompAnualEmpresa = 0; - } - - $this->pusher( $collection, - $countCasos, - Lang::get('reportReport.concept_total_compensation'), - $totalCompAnualMin, - $totalCompAnualMax, - round($totalCompAnualProm, 0), - round($totalCompAnualMed, 0), - round($totalCompAnual25Per, 0), - round($totalCompAnual75Per, 0), - $totalCompAnualEmpresa, - $segmento, - $dbCargo); - - } - - } - private function pusher(&$collection, $casos, $concepto, $min, $max, $prom, $med, $per25, $per75, $empresa, $segmento, $dbCargo){ - if($casos >= 4){ - $collection->push([ "concepto"=> $concepto, - "casos"=> $casos, - "min"=>$min, - "max"=>$max, - "prom"=>$prom, - "med"=>$med, - "per25"=>$per25, - "per75"=> $per75, - "empresa"=>$empresa, - "segmento"=>$segmento - ]); - }elseif($casos <= 3 and $casos > 1){ - $collection->push([ "concepto"=> $concepto, - "casos"=> $casos, - "min"=>"", - "max"=>"", - "prom"=>$prom, - "med"=>"", - "per25"=>$per25, - "per75"=> $per75, - "empresa"=>$empresa, - "segmento"=>$segmento - ]); - - }elseif ($casos <= 1) { - if($dbCargo->is_temporal == '1'){ - $collection->push([ "concepto"=> $concepto, - "casos"=> $casos, - "min"=>$min, - "max"=>$max, - "prom"=>$prom, - "med"=>$med, - "per25"=>$per25, - "per75"=> $per75, - "empresa"=>$empresa, - "segmento"=>$segmento - ]); - }else{ - $collection->push([ "concepto"=> $concepto, - "casos"=> $casos, - "min"=>"", - "max"=>"", - "prom"=>"", - "med"=>"", - "per25"=>"", - "per75"=>"", - "empresa"=>"", - "segmento"=>$segmento - ]); - } - } - } - - - /** - * Show the form for editing the specified resource. - * - * @param int $id - * @return \Illuminate\Http\Response - */ - public function edit($id) - { - // - } - - /** - * Update the specified resource in storage. - * - * @param \Illuminate\Http\Request $request - * @param int $id - * @return \Illuminate\Http\Response - */ - public function update(Request $request, $id) - { - return redirect()->route('home'); - } - - /** - * Remove the specified resource from storage. - * - * @param int $id - * @return \Illuminate\Http\Response - */ - public function destroy($id) - { - // - } + public function resultados(){ - //$dbData = Cabecera_encuesta::select(DB::Raw('distinct periodo'))->get(); $dbData = Cabecera_encuesta::get(); $dbData = $dbData->map(function($item){ $rubro = $item->rubro->descripcion; @@ -3788,9 +2569,8 @@ public function resultadosExcel(Request $request){ $query = "SELECT d.cabecera_encuesta_id, IF(e.incluir = 1, 'NO', 'SI') excluir, c.periodo, c.empresa_id, em.descripcion empresa, c.cantidad_empleados, d.encuestas_cargo_id, convert(e.descripcion using utf8) cargo_cliente, d.area_id, convert(a.descripcion using utf8) area_cliente, d.nivel_id, n.descripcion nivel_cliente, c.rubro_id, - r.descripcion rubro, ca.id, ca.descripcion cargo_oficial, ca.area_id id_area_oficial, convert(a1.descripcion using utf8) area_oficial, ca.nivel_id id_nivel_oficial, n1.descripcion nivel_oficial, cantidad_ocupantes, - - salario_base, salario_base * 12 salario_anual, gratificacion, aguinaldo, comision, plus_rendimiento, fallo_caja, + r.descripcion rubro, ca.id, ca.descripcion cargo_oficial, ca.area_id id_area_oficial, convert(a1.descripcion using utf8) area_oficial, ca.nivel_id id_nivel_oficial, n1.descripcion nivel_oficial, cantidad_ocupantes, + salario_base, salario_base * 12 salario_anual, gratificacion, aguinaldo, comision, plus_rendimiento, variable_viaje, fallo_caja, fallo_caja_ext, gratificacion_contrato, adicional_nivel_cargo, adicional_titulo, adicional_amarre, adicional_tipo_combustible, adicional_embarque, adicional_carga, bono_anual, bono_anual_salarios, incentivo_largo_plazo, refrigerio, costo_seguro_medico, @@ -3997,6 +2777,7 @@ public function resultadosExcel(Request $request){ "Aguinaldo"=> $item->aguinaldo, "comision"=> $item->comision, "Variable Anual (plus_rendimiento)" => $item->plus_rendimiento, + "Variable por Viaje" => $item->variable_viaje, "Adicional Amarre"=>$item->adicional_amarre, "Adicional Tipo Combustible"=>$item->adicional_tipo_combustible, "Adicional Embarque"=>$item->adicional_embarque, @@ -4107,12 +2888,7 @@ public function resultadosExcel(Request $request){ } - /* foreach($detalle as $det){ - if($det["id_cargo_cliente"] == 23066){ - dd($det); - } - - } */ + $periodo = implode('_', explode('/', $periodo)); $filename = 'Resultados_'.$periodo.'_'.$rubroDesc; Excel::create($filename, function($excel) use($detalle, $periodo, $rubro) { @@ -4153,6 +2929,7 @@ public function panel($id){ $dbEmpresa = $id; $rubro = Auth::user()->empresa->rubro_id; $subRubro = Auth::user()->empresa->sub_rubro_id; + $subRubroEsp = 25; $reporteEspecial = Session::get('especial'); $club = $this->club($rubro); @@ -4171,7 +2948,7 @@ public function panel($id){ if($reporteEspecial){ $participantes = Cabecera_encuesta::where('periodo', $dbEncuesta->periodo) ->where('rubro_id', $rubro) - ->where('sub_rubro_id', $subRubro) + ->where('sub_rubro_id', $subRubroEsp) ->get(); }else{ $participantes = Cabecera_encuesta::where('periodo', $dbEncuesta->periodo) @@ -4217,48 +2994,7 @@ public function getCargos(Request $request){ return $dbData; } - private function median($arr) { - if($arr->count() <= 0){ - return 0; - } - $sorted = $arr->sort()->values(); - $count = count($sorted); //total numbers in array - $middleval = floor(($count-1)/2); // find the middle value, or the lowest middle value - if($count % 2) { // odd number, middle is the median - $median = $sorted[$middleval]; - } else { // even number, calculate avg of 2 medians - $low = $sorted[$middleval]; - $high = $sorted[$middleval+1]; - $median = (($low+$high)/2); - } - return $median; - } - - private function percentile($percentile, $arr) { - if($arr->count() <= 1){ - return 0; - } - $sorted = $arr->sort()->values(); - - $count = $sorted->count(); - - // percentil.exc -- método de cálculo de la fórmula percentil.exc en excel - //$perN = (($count+1) * ($percentile/100)); - - // percentil.inc -- método de cálculo de la fórmula percentil.inc en excel - $perN = (($count-1)* ($percentile/100) + 1 ); - - if (is_int($perN)) { - $result = $sorted[$perN - 1]; - } - else { - $int = floor($perN); - $dec = $perN - $int; - - $result = $dec * ($sorted[$int] - $sorted[$int - 1]) + $sorted[$int-1]; - } - return $result; - } + public function setSession(Request $request){ $request->session()->put('periodo', $request->periodo); @@ -4271,1727 +3007,8 @@ public function setSessionEspecial(Request $request){ $request->session()->put('especial', "true"); return "ok"; } - private function cargoReportAll(Request $request, $tipo, $muestraComision = true){ - //dd($request->all()); - - $dbEmpresa = Empresa::find($request->empresa_id); // datos de la empresa del cliente - if(Session::has('periodo')){ - $per = Session::get('periodo'); - $dbEncuesta = Cabecera_encuesta::where('empresa_id', $dbEmpresa->id) - ->whereRaw("periodo = '". $per."'") - ->first(); - }else{ - if(Auth::user()->is_admin){ - $dbEncuesta = Cabecera_encuesta::where('empresa_id', $dbEmpresa->id) - ->whereRaw("periodo = '". $request->periodo."'") - ->first(); - //dd($dbEncuesta, $request->periodo); - }else{ - $ficha = Ficha_dato::activa()->where('rubro_id', $dbEmpresa->rubro_id)->first(); - if($ficha){ - $per = $ficha->periodo; - }else{ - $per = null; - } - if($per){ - $dbEncuesta = Cabecera_encuesta::where('empresa_id', $dbEmpresa->id) - ->where("periodo",$per) - ->first(); - }else{ - if($dbEmpresa->rubro_id == '1'){ - $per = '06/2018'; - $dbEncuesta = Cabecera_encuesta::where('empresa_id', $dbEmpresa->id) - ->whereRaw("periodo = '". $per."'") - ->first(); - }else{ - $dbEncuesta = Cabecera_encuesta::where('empresa_id', $dbEmpresa->id) - ->whereRaw('id = (select max(id) from cabecera_encuestas where empresa_id = '. $dbEmpresa->id.')') - ->first(); - } - } - - - - } - } - //dd($dbEmpresa, $ficha, $per); - $periodo = $dbEncuesta->periodo; // periodo de la encuesta actual - - $rubro = $dbEmpresa->rubro_id; // rubro de la empresa del cliente - // cargo oficial para el informe - $cargo = $request->cargo_id; - if($this->getIdioma() == "es"){ - $dbCargo = Cargo::find($cargo); - }else{ - $dbCargo = Cargo_en::find($cargo); - } - - // empresas y cabeceras de encuestas de este periodo para empresas del rubro del cliente - $dbEncuestadas = Cabecera_encuesta::where('periodo', $periodo) - ->where('rubro_id', $rubro) - ->get(); - - $encuestadasIds = $dbEncuestadas->pluck("id"); // Ids de las encuestas para where in - // conteo de encuestas según origen - $dbNacionales = 0; - $dbInternacionales = 0; - $dbUniverso = $dbEncuestadas->count(); - $encuestadasNacIds = collect(); - $encuestadasInterIds = collect(); - foreach ($dbEncuestadas as $key => $value) { - if($value->empresa->tipo == 0){ - $dbNacionales++; - $encuestadasNacIds[] = $value->id; - }else{ - $dbInternacionales++; - $encuestadasInterIds[] = $value->id; - }; - } - // Recuperamos los datos de los cargos proveídos por las empresas encuestadas - $dbCargosEncuestas = Encuestas_cargo::whereIn('cabecera_encuesta_id', $encuestadasIds) - ->where('cargo_id', $cargo) - ->where('incluir', 1) - ->get(); - - $dbCargosEncuestasNac = Encuestas_cargo::whereIn('cabecera_encuesta_id', $encuestadasNacIds)->where('cargo_id', $cargo)->where('incluir', 1)->get(); - $dbCargosEncuestasInter = Encuestas_cargo::whereIn('cabecera_encuesta_id', $encuestadasInterIds)->where('cargo_id', $cargo)->where('incluir', 1)->get(); - - $cargosEncuestasIds = $dbCargosEncuestas->pluck('id'); - $cargosEncuestasNacIds = $dbCargosEncuestasNac->pluck('id'); - $cargosEncuestasInterIds = $dbCargosEncuestasInter->pluck('id'); - - // Recuperamos los datos de las encuestas - $dbDetalle = Detalle_encuesta::whereIn('encuestas_cargo_id', $cargosEncuestasIds)->get(); - // Datos de la encuesta llenada por el cliente - $dbClienteEnc = $dbDetalle->where('cabecera_encuesta_id', $dbEncuesta->id)->first(); - // dd($dbEncuesta, $dbClienteEnc, $cargo); - if(empty($dbClienteEnc)){ - // get the column names for the table - $columns = Schema::getColumnListing('detalle_encuestas'); - // create array where column names are keys, and values are null - $columns = array_fill_keys($columns, 0); - $dbClienteEnc = new Detalle_encuesta(); - $dbClienteEnc = $dbClienteEnc->newInstance($columns, true); - } - // conteo de casos encontrados - $countCasos = $dbDetalle->where('cantidad_ocupantes', '>', '0') - ->unique('cabecera_encuesta_id') - ->count(); - $countOcupantes = $dbDetalle->sum('cantidad_ocupantes'); - $countCasosGratif = $dbDetalle->where('cantidad_ocupantes', '>', '0') - ->where('gratificacion', '>', '0') - ->unique('cabecera_encuesta_id')->count(); - $countCasosAguinaldo = $dbDetalle->where('cantidad_ocupantes', '>', '0') - ->where('aguinaldo', '>', '0') - ->unique('cabecera_encuesta_id')->count(); - //$countCasosBeneficios = $dbDetalle->where('beneficios_bancos', '>', 0)->unique('cabecera_encuesta_id')->count(); - $countCasosBono = $dbDetalle->where('cantidad_ocupantes', '>', '0') - ->where('bono_anual', '>', 0) - ->unique('cabecera_encuesta_id')->count(); - - - - $universo = collect(); - $segmento = "universo"; - $this->segmenter( $universo, - $dbUniverso, - $dbDetalle, - $countCasos, - $countCasosGratif, - $countCasosAguinaldo, - // $countCasosBeneficios, - $countCasosBono, - $dbClienteEnc, - $rubro, - $segmento, - $dbCargo, - $muestraComision); - - // conteo de casos encontrados nacionales - $countCasosNac = $encuestadasNacIds->count(); - // buscamos los detalles de las encuestas - $dbDetalleNac = Detalle_encuesta::whereIn('encuestas_cargo_id', $cargosEncuestasNacIds)->get(); - // conteo de casos encontrados - $countOcupantesNac = $dbDetalleNac->sum('cantidad_ocupantes'); - $countCasos = $dbDetalleNac->where('cantidad_ocupantes', '>', '0') - ->unique('cabecera_encuesta_id') - ->count(); - $countCasosGratif = $dbDetalleNac->where('cantidad_ocupantes', '>', '0') - ->where('gratificacion', '>', '0') - ->unique('cabecera_encuesta_id')->count(); - $countCasosAguinaldo = $dbDetalleNac->where('cantidad_ocupantes', '>', '0') - ->where('aguinaldo', '>', '0') - ->unique('cabecera_encuesta_id')->count(); - - $countCasosBono = $dbDetalleNac->where('cantidad_ocupantes', '>', '0') - ->where('bono_anual', '>', 0) - ->unique('cabecera_encuesta_id') - ->count(); - - $nacional = collect(); - $segmento = "nacional"; - $this->segmenter( $nacional, - $countCasosNac, - $dbDetalleNac, - $countCasos, - $countCasosGratif, - $countCasosAguinaldo, - // $countCasosBeneficios, - $countCasosBono, - $dbClienteEnc, - $rubro, - $segmento, - $dbCargo, - $muestraComision); - - // conteo de casos encontrados internacionales - $countCasosInt = $encuestadasInterIds->count(); - // buscamos los detalles de las encuestas - $dbDetalleInt = Detalle_encuesta::whereIn('encuestas_cargo_id', $cargosEncuestasInterIds)->get(); - $countOcupantesInt = $dbDetalleInt->sum('cantidad_ocupantes'); - // conteo de casos encontrados - $countCasos = $dbDetalleInt->where('cantidad_ocupantes', '>', '0') - ->unique('cabecera_encuesta_id') - ->count(); - $countCasosGratif = $dbDetalleInt->where('cantidad_ocupantes', '>', '0') - ->where('gratificacion', '>', '0') - ->unique('cabecera_encuesta_id') - ->count(); - $countCasosAguinaldo = $dbDetalleInt->where('cantidad_ocupantes', '>', '0') - ->where('aguinaldo', '>', '0') - ->unique('cabecera_encuesta_id') - ->count(); - - //$countCasosBeneficios = $dbDetalleInt->where('beneficios_bancos', '>', 0)->unique('cabecera_encuesta_id')->count(); - - - - - $countCasosBono = $dbDetalleInt->where('cantidad_ocupantes', '>', '0') - ->where('bono_anual', '>', 0) - ->unique('cabecera_encuesta_id') - ->count(); - - $internacional = collect(); - $segmento = "internacional"; - - $this->segmenter( $internacional, - $countCasosInt, - $dbDetalleInt, - $countCasos, - $countCasosGratif, - $countCasosAguinaldo, - // $countCasosBeneficios, - $countCasosBono, - $dbClienteEnc, - $rubro, - $segmento, - $dbCargo, - $muestraComision); - if($tipo == "view"){ - if($request->tour){ - $tour = true; - }else{ - $tour = false; - } - - if($request->moneda == "local"){ - $convertir = false; - }else{ - $convertir = true; - } - - $ficha = Ficha_dato::where('periodo', $periodo)->first(); - //dd($ficha); - if($ficha){ - $tipoCambio = $ficha->tipo_cambio; - }else{ - $tipoCambio = 5600; - } - - - return view('report.report')->with('dbCargo', $dbCargo) - ->with('dbEmpresa', $dbEmpresa) - ->with('universo', $universo) - ->with('nacional', $nacional) - ->with('internacional', $internacional) - ->with('countOcupantes', $countOcupantes) - ->with('countOcupantesNac', $countOcupantesNac) - ->with('countOcupantesInt', $countOcupantesInt) - ->with('tour', $tour) - ->with('tipoCambio', $tipoCambio) - ->with('periodo', $periodo) - ->with('convertir', $convertir); - - }elseif($tipo == "excel"){ - $periodo = implode('_', explode('/', $periodo)); - $cargoFileName = str_replace("-", "_", str_replace(" ", "_", $dbCargo->descripcion)); - $filename = 'Resultados_'.$periodo.'_'.$cargoFileName; - $detalleUniverso = $this->segmentArrayFactory($universo); - $detalleNacional = $this->segmentArrayFactory($nacional); - $detalleInternacional = $this->segmentArrayFactory($internacional); - - Excel::create($filename, function($excel) use($detalleUniverso, $detalleNacional, $detalleInternacional ) { - $excel->sheet("universo", function($sheet) use($detalleUniverso){ - $sheet->fromArray($detalleUniverso); - }); - $excel->sheet("nacional", function($sheet) use($detalleNacional){ - $sheet->fromArray($detalleNacional); - }); - $excel->sheet("internacional", function($sheet) use($detalleInternacional){ - $sheet->fromArray($detalleInternacional); - }); - - })->export('xlsx'); - return redirect()->route('resultados'); - }elseif ($tipo == "clubExcel") { - - $cargoFileName = str_replace("-", "_", str_replace(" ", "_", $dbCargo->descripcion)); - $filename = 'Resultados_'.$periodo.'_'.$cargoFileName; - $detalleUniverso = array(); - $detalleNacional = array(); - $detalleInternacional = array(); - foreach ($universo as $value) { - - $detalleUniverso[] = array( "Concepto"=>$value["concepto"], - "ocupantes"=> $countOcupantes, - "Casos"=>$value["casos"], - "Min"=>$value["min"], - "25 Percentil"=>$value["per25"], - "Promedio"=>$value["prom"], - "Mediana"=>$value["med"], - "75 Percentil"=>$value["per75"], - "Max"=>$value["max"], - "Empresa"=>$value["empresa"] - ); - } - foreach ($nacional as $value) { - $detalleNacional[] = array( "Concepto"=>$value["concepto"], - "ocupantes"=> $countOcupantesNac, - "Casos"=>$value["casos"], - "Min"=>$value["min"], - "25 Percentil"=>$value["per25"], - "Promedio"=>$value["prom"], - "Mediana"=>$value["med"], - "75 Percentil"=>$value["per75"], - "Max"=>$value["max"], - "Empresa"=>$value["empresa"] - ); - } - - foreach ($internacional as $value) { - $detalleInternacional[] = array( "Concepto"=>$value["concepto"], - "ocupantes"=> $countOcupantesInt, - "Casos"=>$value["casos"], - "Min"=>$value["min"], - "25 Percentil"=>$value["per25"], - "Promedio"=>$value["prom"], - "Mediana"=>$value["med"], - "75 Percentil"=>$value["per75"], - "Max"=>$value["max"], - "Empresa"=>$value["empresa"] - ); - } - $resultado = collect([ - "detalle_universo"=> $detalleUniverso, - "detalle_nacional"=> $detalleNacional, - "detalleInternacional"=>$detalleInternacional - ]); - - return $resultado; - } - - } - - private function cargoReportEspecial(Request $request, $tipo, $muestraComision = true){ - //dd($request->all()); - - $dbEmpresa = Empresa::find($request->empresa_id); // datos de la empresa del cliente - if(Session::has('periodo')){ - $per = Session::get('periodo'); - $dbEncuesta = Cabecera_encuesta::where('empresa_id', $dbEmpresa->id) - ->whereRaw("periodo = '". $per."'") - ->first(); - }else{ - if(Auth::user()->is_admin){ - $dbEncuesta = Cabecera_encuesta::where('empresa_id', $dbEmpresa->id) - ->whereRaw("periodo = '". $request->periodo."'") - ->first(); - //dd($dbEncuesta, $request->periodo); - }else{ - $ficha = Ficha_dato::activa()->where('rubro_id', $dbEmpresa->rubro_id)->first(); - if($ficha){ - $per = $ficha->periodo; - }else{ - $per = null; - } - if($per){ - $dbEncuesta = Cabecera_encuesta::where('empresa_id', $dbEmpresa->id) - ->where("periodo",$per) - ->first(); - }else{ - if($dbEmpresa->rubro_id == '1'){ - $per = '06/2018'; - $dbEncuesta = Cabecera_encuesta::where('empresa_id', $dbEmpresa->id) - ->whereRaw("periodo = '". $per."'") - ->first(); - }else{ - $dbEncuesta = Cabecera_encuesta::where('empresa_id', $dbEmpresa->id) - ->whereRaw('id = (select max(id) from cabecera_encuestas where empresa_id = '. $dbEmpresa->id.')') - ->first(); - } - } - - - - } - } - //dd($dbEmpresa, $ficha, $per); - $periodo = $dbEncuesta->periodo; // periodo de la encuesta actual - - $rubro = $dbEmpresa->rubro_id; // rubro de la empresa del cliente - $subRubro = $dbEmpresa->sub_rubro_id; - // cargo oficial para el informe - $cargo = $request->cargo_id; - if($this->getIdioma() == "es"){ - $dbCargo = Cargo::find($cargo); - }else{ - $dbCargo = Cargo_en::find($cargo); - } - - // empresas y cabeceras de encuestas de este periodo para empresas del rubro del cliente - $dbEncuestadas = Cabecera_encuesta::where('periodo', $periodo) - ->where('rubro_id', $rubro) - ->where('sub_rubro_id', $subRubro) - ->get(); - - $encuestadasIds = $dbEncuestadas->pluck("id"); // Ids de las encuestas para where in - // conteo de encuestas según origen - $dbNacionales = 0; - $dbInternacionales = 0; - $dbUniverso = $dbEncuestadas->count(); - $encuestadasNacIds = collect(); - $encuestadasInterIds = collect(); - foreach ($dbEncuestadas as $key => $value) { - if($value->empresa->tipo == 0){ - $dbNacionales++; - $encuestadasNacIds[] = $value->id; - }else{ - $dbInternacionales++; - $encuestadasInterIds[] = $value->id; - }; - } - // Recuperamos los datos de los cargos proveídos por las empresas encuestadas - $dbCargosEncuestas = Encuestas_cargo::whereIn('cabecera_encuesta_id', $encuestadasIds) - ->where('cargo_id', $cargo) - ->where('incluir', 1) - ->get(); - - $dbCargosEncuestasNac = Encuestas_cargo::whereIn('cabecera_encuesta_id', $encuestadasNacIds)->where('cargo_id', $cargo)->where('incluir', 1)->get(); - $dbCargosEncuestasInter = Encuestas_cargo::whereIn('cabecera_encuesta_id', $encuestadasInterIds)->where('cargo_id', $cargo)->where('incluir', 1)->get(); - - $cargosEncuestasIds = $dbCargosEncuestas->pluck('id'); - $cargosEncuestasNacIds = $dbCargosEncuestasNac->pluck('id'); - $cargosEncuestasInterIds = $dbCargosEncuestasInter->pluck('id'); - - // Recuperamos los datos de las encuestas - $dbDetalle = Detalle_encuesta::whereIn('encuestas_cargo_id', $cargosEncuestasIds)->get(); - // Datos de la encuesta llenada por el cliente - $dbClienteEnc = $dbDetalle->where('cabecera_encuesta_id', $dbEncuesta->id)->first(); - // dd($dbEncuesta, $dbClienteEnc, $cargo); - if(empty($dbClienteEnc)){ - // get the column names for the table - $columns = Schema::getColumnListing('detalle_encuestas'); - // create array where column names are keys, and values are null - $columns = array_fill_keys($columns, 0); - $dbClienteEnc = new Detalle_encuesta(); - $dbClienteEnc = $dbClienteEnc->newInstance($columns, true); - } - // conteo de casos encontrados - $countCasos = $dbDetalle->where('cantidad_ocupantes', '>', '0') - ->unique('cabecera_encuesta_id') - ->count(); - $countOcupantes = $dbDetalle->sum('cantidad_ocupantes'); - $countCasosGratif = $dbDetalle->where('cantidad_ocupantes', '>', '0') - ->where('gratificacion', '>', '0') - ->unique('cabecera_encuesta_id')->count(); - $countCasosAguinaldo = $dbDetalle->where('cantidad_ocupantes', '>', '0') - ->where('aguinaldo', '>', '0') - ->unique('cabecera_encuesta_id')->count(); - //$countCasosBeneficios = $dbDetalle->where('beneficios_bancos', '>', 0)->unique('cabecera_encuesta_id')->count(); - $countCasosBono = $dbDetalle->where('cantidad_ocupantes', '>', '0') - ->where('bono_anual', '>', 0) - ->unique('cabecera_encuesta_id')->count(); - - - - $universo = collect(); - $segmento = "universo"; - $this->segmenter( $universo, - $dbUniverso, - $dbDetalle, - $countCasos, - $countCasosGratif, - $countCasosAguinaldo, - // $countCasosBeneficios, - $countCasosBono, - $dbClienteEnc, - $rubro, - $segmento, - $dbCargo, - $muestraComision); - - // conteo de casos encontrados nacionales - $countCasosNac = $encuestadasNacIds->count(); - // buscamos los detalles de las encuestas - $dbDetalleNac = Detalle_encuesta::whereIn('encuestas_cargo_id', $cargosEncuestasNacIds)->get(); - // conteo de casos encontrados - $countOcupantesNac = $dbDetalleNac->sum('cantidad_ocupantes'); - $countCasos = $dbDetalleNac->where('cantidad_ocupantes', '>', '0') - ->unique('cabecera_encuesta_id') - ->count(); - $countCasosGratif = $dbDetalleNac->where('cantidad_ocupantes', '>', '0') - ->where('gratificacion', '>', '0') - ->unique('cabecera_encuesta_id')->count(); - $countCasosAguinaldo = $dbDetalleNac->where('cantidad_ocupantes', '>', '0') - ->where('aguinaldo', '>', '0') - ->unique('cabecera_encuesta_id')->count(); - - $countCasosBono = $dbDetalleNac->where('cantidad_ocupantes', '>', '0') - ->where('bono_anual', '>', 0) - ->unique('cabecera_encuesta_id') - ->count(); - - $nacional = collect(); - $segmento = "nacional"; - $this->segmenter( $nacional, - $countCasosNac, - $dbDetalleNac, - $countCasos, - $countCasosGratif, - $countCasosAguinaldo, - // $countCasosBeneficios, - $countCasosBono, - $dbClienteEnc, - $rubro, - $segmento, - $dbCargo, - $muestraComision); - - // conteo de casos encontrados internacionales - $countCasosInt = $encuestadasInterIds->count(); - // buscamos los detalles de las encuestas - $dbDetalleInt = Detalle_encuesta::whereIn('encuestas_cargo_id', $cargosEncuestasInterIds)->get(); - $countOcupantesInt = $dbDetalleInt->sum('cantidad_ocupantes'); - // conteo de casos encontrados - $countCasos = $dbDetalleInt->where('cantidad_ocupantes', '>', '0') - ->unique('cabecera_encuesta_id') - ->count(); - $countCasosGratif = $dbDetalleInt->where('cantidad_ocupantes', '>', '0') - ->where('gratificacion', '>', '0') - ->unique('cabecera_encuesta_id') - ->count(); - $countCasosAguinaldo = $dbDetalleInt->where('cantidad_ocupantes', '>', '0') - ->where('aguinaldo', '>', '0') - ->unique('cabecera_encuesta_id') - ->count(); - - //$countCasosBeneficios = $dbDetalleInt->where('beneficios_bancos', '>', 0)->unique('cabecera_encuesta_id')->count(); - - - - - $countCasosBono = $dbDetalleInt->where('cantidad_ocupantes', '>', '0') - ->where('bono_anual', '>', 0) - ->unique('cabecera_encuesta_id') - ->count(); - - $internacional = collect(); - $segmento = "internacional"; - - $this->segmenter( $internacional, - $countCasosInt, - $dbDetalleInt, - $countCasos, - $countCasosGratif, - $countCasosAguinaldo, - // $countCasosBeneficios, - $countCasosBono, - $dbClienteEnc, - $rubro, - $segmento, - $dbCargo, - $muestraComision); - if($tipo == "view"){ - if($request->tour){ - $tour = true; - }else{ - $tour = false; - } - - if($request->moneda == "local"){ - $convertir = false; - }else{ - $convertir = true; - } - - $ficha = Ficha_dato::where('periodo', $periodo)->first(); - //dd($ficha); - if($ficha){ - $tipoCambio = $ficha->tipo_cambio; - }else{ - $tipoCambio = 5600; - } - - - return view('report.report')->with('dbCargo', $dbCargo) - ->with('dbEmpresa', $dbEmpresa) - ->with('universo', $universo) - ->with('nacional', $nacional) - ->with('internacional', $internacional) - ->with('countOcupantes', $countOcupantes) - ->with('countOcupantesNac', $countOcupantesNac) - ->with('countOcupantesInt', $countOcupantesInt) - ->with('tour', $tour) - ->with('tipoCambio', $tipoCambio) - ->with('periodo', $periodo) - ->with('convertir', $convertir); - - }elseif($tipo == "excel"){ - $periodo = implode('_', explode('/', $periodo)); - $cargoFileName = str_replace("-", "_", str_replace(" ", "_", $dbCargo->descripcion)); - $filename = 'Resultados_'.$periodo.'_'.$cargoFileName; - $detalleUniverso = $this->segmentArrayFactory($universo); - $detalleNacional = $this->segmentArrayFactory($nacional); - $detalleInternacional = $this->segmentArrayFactory($internacional); - - Excel::create($filename, function($excel) use($detalleUniverso, $detalleNacional, $detalleInternacional ) { - $excel->sheet("universo", function($sheet) use($detalleUniverso){ - $sheet->fromArray($detalleUniverso); - }); - $excel->sheet("nacional", function($sheet) use($detalleNacional){ - $sheet->fromArray($detalleNacional); - }); - $excel->sheet("internacional", function($sheet) use($detalleInternacional){ - $sheet->fromArray($detalleInternacional); - }); - - })->export('xlsx'); - return redirect()->route('resultados'); - }elseif ($tipo == "clubExcel") { - - $cargoFileName = str_replace("-", "_", str_replace(" ", "_", $dbCargo->descripcion)); - $filename = 'Resultados_'.$periodo.'_'.$cargoFileName; - $detalleUniverso = array(); - $detalleNacional = array(); - $detalleInternacional = array(); - foreach ($universo as $value) { - - $detalleUniverso[] = array( "Concepto"=>$value["concepto"], - "ocupantes"=> $countOcupantes, - "Casos"=>$value["casos"], - "Min"=>$value["min"], - "25 Percentil"=>$value["per25"], - "Promedio"=>$value["prom"], - "Mediana"=>$value["med"], - "75 Percentil"=>$value["per75"], - "Max"=>$value["max"], - "Empresa"=>$value["empresa"] - ); - } - foreach ($nacional as $value) { - $detalleNacional[] = array( "Concepto"=>$value["concepto"], - "ocupantes"=> $countOcupantesNac, - "Casos"=>$value["casos"], - "Min"=>$value["min"], - "25 Percentil"=>$value["per25"], - "Promedio"=>$value["prom"], - "Mediana"=>$value["med"], - "75 Percentil"=>$value["per75"], - "Max"=>$value["max"], - "Empresa"=>$value["empresa"] - ); - } - - foreach ($internacional as $value) { - $detalleInternacional[] = array( "Concepto"=>$value["concepto"], - "ocupantes"=> $countOcupantesInt, - "Casos"=>$value["casos"], - "Min"=>$value["min"], - "25 Percentil"=>$value["per25"], - "Promedio"=>$value["prom"], - "Mediana"=>$value["med"], - "75 Percentil"=>$value["per75"], - "Max"=>$value["max"], - "Empresa"=>$value["empresa"] - ); - } - $resultado = collect([ - "detalle_universo"=> $detalleUniverso, - "detalle_nacional"=> $detalleNacional, - "detalleInternacional"=>$detalleInternacional - ]); - - return $resultado; - } - - } - - private function cargoComparativoEspecial($encuesta, $encuestaAnt, $empresa, $cargo, $contNuevo){ - - //dd($dbEmpresa, $ficha, $per); - $periodo = $encuesta->periodo; // periodo de la encuesta actual - $periodoAnt = $encuestaAnt->periodo; - - $rubro = $empresa->rubro_id; // rubro de la empresa del cliente - $subRubro = $empresa->sub_rubro_id; - // cargo oficial para el informe - if($this->getIdioma() == "es"){ - $dbCargo = Cargo::find($cargo); - }else{ - $dbCargo = Cargo_en::find($cargo); - } - - // empresas y cabeceras de encuestas de este periodo para empresas del rubro del cliente - $dbEncuestadas = Cabecera_encuesta::where('periodo', $periodo) - ->where('rubro_id', $rubro) - ->where('sub_rubro_id', $subRubro) - ->get(); - - $encuestadasIds = $dbEncuestadas->pluck("id"); // Ids de las encuestas para where in - // Recuperamos los datos de los cargos proveídos por las empresas encuestadas - $dbCargosEncuestas = Encuestas_cargo::whereIn('cabecera_encuesta_id', $encuestadasIds) - ->where('cargo_id', $cargo) - ->where('incluir', 1) - ->get(); - - $cargosEncuestasIds = $dbCargosEncuestas->pluck('id'); - - // Recuperamos los datos de las encuestas - $dbDetalle = Detalle_encuesta::whereIn('encuestas_cargo_id', $cargosEncuestasIds)->get(); - // Datos de la encuesta llenada por el cliente - $dbClienteEnc = $dbDetalle->where('cabecera_encuesta_id', $encuesta->id)->first(); - // dd($dbEncuesta, $dbClienteEnc, $cargo); - if(empty($dbClienteEnc)){ - // get the column names for the table - $columns = Schema::getColumnListing('detalle_encuestas'); - // create array where column names are keys, and values are null - $columns = array_fill_keys($columns, 0); - $dbClienteEnc = new Detalle_encuesta(); - $dbClienteEnc = $dbClienteEnc->newInstance($columns, true); - } - - // empresas y cabeceras de encuestas de este periodo para empresas del rubro del cliente - $dbEncuestadasAnt = Cabecera_encuesta::where('periodo', $periodoAnt) - ->where('rubro_id', $rubro) - ->where('sub_rubro_id', $subRubro) - ->get(); - - $encuestadasAntIds = $dbEncuestadasAnt->pluck("id"); // Ids de las encuestas para where in - // Recuperamos los datos de los cargos proveídos por las empresas encuestadas - $dbCargosEncuestasAnt = Encuestas_cargo::whereIn('cabecera_encuesta_id', $encuestadasAntIds) - ->where('cargo_id', $cargo) - ->where('incluir', 1) - ->get(); - - $cargosEncuestasAntIds = $dbCargosEncuestasAnt->pluck('id'); - - // Recuperamos los datos de las encuestas - $dbDetalleAnt = Detalle_encuesta::whereIn('encuestas_cargo_id', $cargosEncuestasAntIds)->get(); - // Datos de la encuesta llenada por el cliente - $dbClienteEncAnt = $dbDetalleAnt->where('cabecera_encuesta_id', $encuestaAnt->id)->first(); - // dd($dbEncuesta, $dbClienteEnc, $cargo); - if(empty($dbClienteEncAnt)){ - // get the column names for the table - $columns = Schema::getColumnListing('detalle_encuestas'); - // create array where column names are keys, and values are null - $columns = array_fill_keys($columns, 0); - $dbClienteEnc = new Detalle_encuesta(); - $dbClienteEnc = $dbClienteEnc->newInstance($columns, true); - } - - if($contNuevo){ - $cargosNuevosID = Encuestas_cargo::whereIn('cabecera_encuesta_id', $encuestadasIds) - ->where('cargo_id', $cargo) - ->where('es_contrato_periodo', 1) - ->where('incluir', 1) - ->pluck('id'); - - $countCasos = $dbDetalle->where('cantidad_ocupantes', '>', '0') - ->whereIn('encuestas_cargo_id', $cargosNuevosID) - ->sum('cantidad_ocupantes'); - }else{ - $countCasos = 0; - } - $salBase = collect(); - - $this->segmenterComparativo( $salBase, - $dbDetalle, - $dbDetalleAnt, - $dbClienteEnc, - $dbClienteEncAnt, - "SB", - $dbCargo, - $countCasos); - - - //dd($salBase); - - $detalleSalarioBase = array(); - - foreach ($salBase as $value) { - if($contNuevo){ - $detalleSalarioBase[] = array( "Concepto"=>$value["concepto"], - "Ocupantes" => $value["ocupantes"], - "Min"=>$value["min"], - "25 Percentil"=>$value["per25"], - "Promedio"=>$value["prom"], - "Mediana"=>$value["med"], - "75 Percentil"=>$value["per75"], - "Max"=>$value["max"], - "Empresa"=>$value["empresa"] - ); - }else{ - $detalleSalarioBase[] = array( "Concepto"=>$value["concepto"], - "Min Ant"=>$value["min_ant"], - "25P Ant"=>$value["per25_ant"], - "Prom Ant"=>$value["prom_ant"], - "Med Ant"=>$value["med_ant"], - "75P Ant"=>$value["per75_ant"], - "Max Ant"=>$value["max_ant"], - "Min"=>$value["min"], - "25 Percentil"=>$value["per25"], - "Promedio"=>$value["prom"], - "Mediana"=>$value["med"], - "75 Percentil"=>$value["per75"], - "Max"=>$value["max"], - "Empresa"=>$value["empresa"] - ); - } - - } - - $efectivoTotalAnual = collect(); - - $this->segmenterComparativo( $efectivoTotalAnual, - $dbDetalle, - $dbDetalleAnt, - $dbClienteEnc, - $dbClienteEncAnt, - "ETA", - $dbCargo); - - - //dd($salBase); - - $detalleETA = array(); - - foreach ($efectivoTotalAnual as $value) { - - $detalleETA[] = array( "Concepto"=>$value["concepto"], - "Min Ant"=>$value["min_ant"], - "25P Ant"=>$value["per25_ant"], - "Prom Ant"=>$value["prom_ant"], - "Med Ant"=>$value["med_ant"], - "75P Ant"=>$value["per75_ant"], - "Max Ant"=>$value["max_ant"], - "Min"=>$value["min"], - "25 Percentil"=>$value["per25"], - "Promedio"=>$value["prom"], - "Mediana"=>$value["med"], - "75 Percentil"=>$value["per75"], - "Max"=>$value["max"], - "Empresa"=>$value["empresa"] - ); - } - - $variable = collect(); - - $this->segmenterComparativo( $variable, - $dbDetalle, - $dbDetalleAnt, - $dbClienteEnc, - $dbClienteEncAnt, - "VAR", - $dbCargo); - - - //dd($salBase); - - $detalleVar = array(); - - foreach ($variable as $value) { - - $detalleVar[] = array( "Concepto"=>$value["concepto"], - "Min Ant"=>$value["min_ant"], - "25P Ant"=>$value["per25_ant"], - "Prom Ant"=>$value["prom_ant"], - "Med Ant"=>$value["med_ant"], - "75P Ant"=>$value["per75_ant"], - "Max Ant"=>$value["max_ant"], - "Min"=>$value["min"], - "25 Percentil"=>$value["per25"], - "Promedio"=>$value["prom"], - "Mediana"=>$value["med"], - "75 Percentil"=>$value["per75"], - "Max"=>$value["max"], - "Empresa"=>$value["empresa"] - ); - } - - $adicionalTotal = collect(); - - $this->segmenterComparativo( $adicionalTotal, - $dbDetalle, - $dbDetalleAnt, - $dbClienteEnc, - $dbClienteEncAnt, - "ATA", - $dbCargo); - - - //dd($salBase); - - $detalleATA = array(); - - foreach ($adicionalTotal as $value) { - - $detalleATA[] = array( "Concepto"=>$value["concepto"], - "Min Ant"=>$value["min_ant"], - "25P Ant"=>$value["per25_ant"], - "Prom Ant"=>$value["prom_ant"], - "Med Ant"=>$value["med_ant"], - "75P Ant"=>$value["per75_ant"], - "Max Ant"=>$value["max_ant"], - "Min"=>$value["min"], - "25 Percentil"=>$value["per25"], - "Promedio"=>$value["prom"], - "Mediana"=>$value["med"], - "75 Percentil"=>$value["per75"], - "Max"=>$value["max"], - "Empresa"=>$value["empresa"] - ); - } - $resultado = collect([ - "detalle_salario_base"=> $detalleSalarioBase, - "detalle_efectivo_total_anual" => $detalleETA, - "detalle_variable" => $detalleVar, - "detalle_adicional_total_anual" => $detalleATA - ]); - - return $resultado; - - - } - - private function segmenterComparativo( &$collection, - $detalle, - $detalleAnt, - $dbClienteEnc, - $dbClienteEncAnt, - $concepto, - $dbCargo, - $countCasos = 0){ - - // Salario Base Anterior - $salariosBaseAnt = $detalleAnt->where('salario_base', '>', '0')->pluck('salario_base'); - $salarioMinAnt = $salariosBaseAnt->min(); - $salarioMaxAnt = $salariosBaseAnt->max(); - $salarioPromAnt = $salariosBaseAnt->avg(); - $salarioMedAnt = $this->median($salariosBaseAnt); - $salario25PerAnt = $this->percentile(25,$salariosBaseAnt); - $salario75PerAnt = $this->percentile(75, $salariosBaseAnt); - - // Salario Base - $salariosBase = $detalle->where('salario_base', '>', '0')->pluck('salario_base'); - $salarioMin = $salariosBase->min(); - $salarioMax = $salariosBase->max(); - $salarioProm = $salariosBase->avg(); - $salarioMed = $this->median($salariosBase); - $salario25Per = $this->percentile(25,$salariosBase); - $salario75Per = $this->percentile(75, $salariosBase); - - if($concepto == "SB"){ - $collection->push([ "concepto" => Lang::get('reportReport.concept_salary'), - "ocupantes" => $countCasos, - "min_ant" => $salarioMinAnt, - "max_ant" => $salarioMaxAnt, - "prom_ant" => round($salarioPromAnt, 0), - "med_ant" => round($salarioMedAnt, 0), - "per25_ant" => round($salario25PerAnt, 0), - "per75_ant" => round($salario75PerAnt, 0), - "min" => $salarioMin, - "max" => $salarioMax, - "prom" => round($salarioProm, 0), - "med" => round($salarioMed, 0), - "per25" => round($salario25Per, 0), - "per75" => round($salario75Per, 0), - "empresa" => $dbClienteEnc->salario_base, - "indicador" => "SA" - ]); - - } - - // Salario Base Anual - $salariosBaseAnual = $salariosBase->map(function($item){ - return $item * 12; - }); - - $salarioAnualMin = $salariosBaseAnual->min(); - $salarioAnualMax = $salariosBaseAnual->max(); - $salarioAnualProm = $salariosBaseAnual->avg(); - $salarioAnualMed = $this->median($salariosBaseAnual); - $salarioAnual25Per = $this->percentile(25,$salariosBaseAnual); - $salarioAnual75Per = $this->percentile(75, $salariosBaseAnual); - - //Aguinaldo - $aguinaldos = $detalle->where('aguinaldo', '>', '0')->pluck('aguinaldo'); - $aguinaldoMin = $aguinaldos->min(); - $aguinaldoMax = $aguinaldos->max(); - $aguinaldoProm = $aguinaldos->avg(); - $aguinaldoMed = $this->median($aguinaldos); - $aguinaldo25Per = $this->percentile(25, $aguinaldos); - $aguinaldo75Per = $this->percentile(75, $aguinaldos); - - // Variable Anual Anterior - $plusRendimientoAnt = $detalleAnt->where('plus_rendimiento', '>', '0')->pluck('plus_rendimiento'); - $plusMinAnt = $plusRendimientoAnt->min(); - $plusMaxAnt = $plusRendimientoAnt->max(); - $plusPromAnt = $plusRendimientoAnt->avg(); - $plusMedAnt = $this->median($plusRendimientoAnt); - $plus25PerAnt = $this->percentile(25,$plusRendimientoAnt); - $plus75PerAnt = $this->percentile(75, $plusRendimientoAnt); - - // Variable Anual - $plusRendimiento = $detalle->where('plus_rendimiento', '>', '0')->pluck('plus_rendimiento'); - $plusMin = $plusRendimiento->min(); - $plusMax = $plusRendimiento->max(); - $plusProm = $plusRendimiento->avg(); - $plusMed = $this->median($plusRendimiento); - $plus25Per = $this->percentile(25,$plusRendimiento); - $plus75Per = $this->percentile(75, $plusRendimiento); - $countCasosPlus = $detalle->where('plus_rendimiento', '>', '0')->unique('cabecera_encuesta_id')->count(); - - if($concepto == "VAR"){ - $collection->push([ "concepto" => Lang::get('reportReport.concept_variable_pay'), - "min_ant" => $plusMinAnt, - "max_ant" => $plusMaxAnt, - "prom_ant" => round($plusPromAnt, 0), - "med_ant" => round($plusMedAnt, 0), - "per25_ant" => round($plus25PerAnt, 0), - "per75_ant" => round($plus75PerAnt, 0), - "min" => $plusMin, - "max" => $plusMax, - "prom" => round($plusProm, 0), - "med" => round($plusMed, 0), - "per25" => round($plus25Per, 0), - "per75" => round($plus75Per, 0), - "empresa" => 0, - "indicador" => "ATA" - ]); - - } - - // Adicional Amarre - $adicionalAmarre = $detalle->where('adicional_amarre', '>', '0')->pluck('adicional_amarre'); - $amarreMin = $adicionalAmarre->min(); - $amarreMax = $adicionalAmarre->max(); - $amarreProm = $adicionalAmarre->avg(); - $amarreMed = $this->median($adicionalAmarre); - $amarre25Per = $this->percentile(25,$adicionalAmarre); - $amarre75Per = $this->percentile(75, $adicionalAmarre); - $countCasosAmarre = $detalle->where('adicional_amarre', '>', '0')->unique('cabecera_encuesta_id')->count(); - - // Adicional Tipo de Combustible - $adicionalTipoCombustible = $detalle->where('adicional_tipo_combustible', '>', '0')->pluck('adicional_tipo_combustible'); - $TipoCombustibleMin = $adicionalTipoCombustible->min(); - $TipoCombustibleMax = $adicionalTipoCombustible->max(); - $TipoCombustibleProm = $adicionalTipoCombustible->avg(); - $TipoCombustibleMed = $this->median($adicionalTipoCombustible); - $TipoCombustible25Per = $this->percentile(25,$adicionalTipoCombustible); - $TipoCombustible75Per = $this->percentile(75, $adicionalTipoCombustible); - $countCasosTipoCombustible = $detalle->where('adicional_tipo_combustible', '>', '0')->unique('cabecera_encuesta_id')->count(); - - // Adicional por disponiblidad/embarque - $adicionalEmbarque = $detalle->where('adicional_embarque', '>', '0')->pluck('adicional_embarque'); - $embarqueMin = $adicionalEmbarque->min(); - $embarqueMax = $adicionalEmbarque->max(); - $embarqueProm = $adicionalEmbarque->avg(); - $embarqueMed = $this->median($adicionalEmbarque); - $embarque25Per = $this->percentile(25,$adicionalEmbarque); - $embarque75Per = $this->percentile(75, $adicionalEmbarque); - $countCasosEmbarque = $detalle->where('adicional_embarque', '>', '0')->unique('cabecera_encuesta_id')->count(); - - // Adicional Carga - $adicionalCarga = $detalle->where('adicional_carga', '>', '0')->pluck('adicional_carga'); - $cargaMin = $adicionalCarga->min(); - $cargaMax = $adicionalCarga->max(); - $cargaProm = $adicionalCarga->avg(); - $cargaMed = $this->median($adicionalCarga); - $carga25Per = $this->percentile(25,$adicionalCarga); - $carga75Per = $this->percentile(75, $adicionalCarga); - $countCasosCarga = $detalle->where('adicional_carga', '>', '0')->unique('cabecera_encuesta_id')->count(); - - - // Total Adicional Anterior - - $adicionalAnualAnt = $detalleAnt->where('adicionales_navieras', '>', '0')->pluck('adicionales_navieras'); - $totalAdicionalMinAnt = $adicionalAnualAnt->min(); - $totalAdicionalMaxAnt = $adicionalAnualAnt->max(); - $totalAdicionalPromAnt = $adicionalAnualAnt->avg(); - $totalAdicionalMedAnt = $this->median($adicionalAnualAnt); - $totalAdicional25PerAnt = $this->percentile(25, $adicionalAnualAnt); - $totalAdicional75PerAnt = $this->percentile(75, $adicionalAnualAnt); - - // Total Adicional - $casosAdicionales = $detalle->where('adicionales_navieras', '>', '0')->unique('cabecera_encuesta_id')->count(); - $adicionalAnual = $detalle->where('adicionales_navieras', '>', '0')->pluck('adicionales_navieras'); - $totalAdicionalMin = $adicionalAnual->min(); - $totalAdicionalMax = $adicionalAnual->max(); - $totalAdicionalProm = $adicionalAnual->avg(); - $totalAdicionalMed = $this->median($adicionalAnual); - $totalAdicional25Per = $this->percentile(25, $adicionalAnual); - $totalAdicional75Per = $this->percentile(75, $adicionalAnual); - - if($concepto == "ATA"){ - $collection->push([ "concepto" => Lang::get('reportReport.concept_total_incentives'), - "min_ant" => $totalAdicionalMinAnt, - "max_ant" => $totalAdicionalMaxAnt, - "prom_ant" => round($totalAdicionalPromAnt, 0), - "med_ant" => round($totalAdicionalMedAnt, 0), - "per25_ant" => round($totalAdicional25PerAnt, 0), - "per75_ant" => round($totalAdicional75PerAnt, 0), - "min" => $totalAdicionalMin, - "max" => $totalAdicionalMax, - "prom" => round($totalAdicionalProm, 0), - "med" => round($totalAdicionalMed, 0), - "per25" => round($totalAdicional25Per, 0), - "per75" => round($totalAdicional75Per, 0), - "empresa" => 0, - "indicador" => "ATA" - ]); - - } - - //Bono - $bonos = $detalle->where('bono_anual', '>', '0')->pluck('bono_anual'); - $bonoMin = $bonos->min(); - $bonoMax = $bonos->max(); - $bonoProm = $bonos->avg(); - $bonoMed = $this->median($bonos); - $bono25Per = $this->percentile(25, $bonos); - $bono75Per = $this->percentile(75, $bonos); - - // Efectivo Total Anual Anteior - $detalleAnt = $detalleAnt->map(function($item){ - $item['efectivo_total_anual'] = $item['salario_base'] * 12 + - $item['aguinaldo']; - return $item; - }); - - $efectivoTotalMinAnt = $detalleAnt->pluck('efectivo_total_anual')->min(); - $efectivoTotalMaxAnt = $detalleAnt->pluck('efectivo_total_anual')->max(); - $efectivoTotalPromAnt = $detalleAnt->pluck('efectivo_total_anual')->avg(); - $efectivoTotalMedAnt = $this->median($detalleAnt->pluck('efectivo_total_anual')); - $efectivoTotal25PerAnt = $this->percentile(25, $detalleAnt->pluck('efectivo_total_anual')); - $efectivoTotal75PerAnt = $this->percentile(75, $detalleAnt->pluck('efectivo_total_anual')); - - // Efectivo Total Anual - $detalle = $detalle->map(function($item){ - $item['efectivo_total_anual'] = $item['salario_base'] * 12 + - $item['aguinaldo']; - return $item; - }); - - $efectivoTotalMin = $detalle->pluck('efectivo_total_anual')->min(); - $efectivoTotalMax = $detalle->pluck('efectivo_total_anual')->max(); - $efectivoTotalProm = $detalle->pluck('efectivo_total_anual')->avg(); - $efectivoTotalMed = $this->median($detalle->pluck('efectivo_total_anual')); - $efectivoTotal25Per = $this->percentile(25, $detalle->pluck('efectivo_total_anual')); - $efectivoTotal75Per = $this->percentile(75, $detalle->pluck('efectivo_total_anual')); - - $found = $detalle->where('cabecera_encuesta_id', $dbClienteEnc->cabecera_encuesta_id) - ->first(); - if($found){ - $efectivoTotalEmpresa = $found->efectivo_total_anual; - }else{ - $efectivoTotalEmpresa = 0; - } - - if($concepto == "ETA"){ - $collection->push([ "concepto" => Lang::get('reportReport.concept_annual_cash_total'), - "min_ant" => $efectivoTotalMinAnt, - "max_ant" => $efectivoTotalMaxAnt, - "prom_ant" => round($efectivoTotalPromAnt, 0), - "med_ant" => round($efectivoTotalMedAnt, 0), - "per25_ant" => round($efectivoTotal25PerAnt, 0), - "per75_ant" => round($efectivoTotal75PerAnt, 0), - "min" => $efectivoTotalMin, - "max" => $efectivoTotalMax, - "prom" => round($efectivoTotalProm, 0), - "med" => round($efectivoTotalMed, 0), - "per25" => round($efectivoTotal25Per, 0), - "per75" => round($efectivoTotal75Per, 0), - "empresa" => $efectivoTotalEmpresa, - "indicador" => "ETA" - ]); - - } - - //Beneficios - $beneficiosNavieras = $detalle->where('beneficios_navieras', '>', '0')->pluck('beneficios_navieras'); - //dd($detalle->where('beneficios_navieras', 1)); - $beneficiosMin = $beneficiosNavieras->min(); - $beneficiosMax = $beneficiosNavieras->max(); - $beneficiosProm = $beneficiosNavieras->avg(); - $beneficiosMed = $this->median($beneficiosNavieras); - $beneficios25Per = $this->percentile(25, $beneficiosNavieras); - $beneficios75Per = $this->percentile(75, $beneficiosNavieras); - $casosBeneficiosNavieras = $detalle->where('beneficios_navieras', '>', '0')->unique('cabecera_encuesta_id')->count(); - - //Aguinaldo Impactado - $aguinaldoImpMin = 0; - $aguinaldoImpMax = 0; - $aguinaldoImpProm = 0; - $aguinaldoImpMed = 0; - $aguinaldoImp25Per = 0; - $aguinaldoImp75Per = 0; - $aguinaldoImpEmpresa = 0; - - $detalle = $detalle->map(function($item){ - $item['aguinaldo_impactado'] = (($item['salario_base'] * 12) + - $item['gratificacion'] + - $item['bono_anual'] + - $item['adicionales_navieras'])/12; - return $item; - }); - - $aguinaldoImpMin = $detalle->pluck('aguinaldo_impactado')->min(); - $aguinaldoImpMax = $detalle->pluck('aguinaldo_impactado')->max(); - $aguinaldoImpProm = $detalle->pluck('aguinaldo_impactado')->avg(); - $aguinaldoImpMed = $this->median($detalle->pluck('aguinaldo_impactado')); - $aguinaldoImp25Per = $this->percentile(25, $detalle->pluck('aguinaldo_impactado')); - $aguinaldoImp75Per = $this->percentile(75, $detalle->pluck('aguinaldo_impactado')); - - $found = $detalle->where('cabecera_encuesta_id', $dbClienteEnc->cabecera_encuesta_id) - ->first(); - if($found){ - $aguinaldoImpEmpresa = $found->aguinaldo_impactado; - }else{ - $aguinaldoImpEmpresa = 0; - } - - - //Total Compensación anual - $detalle = $detalle->map(function($item){ - $item['total_comp_anual'] = $item['efectivo_total_anual'] + - $item['beneficios_navieras']; - return $item; - }); - - $totalCompAnualMin = $detalle->pluck('total_comp_anual')->min(); - $totalCompAnualMax = $detalle->pluck('total_comp_anual')->max(); - $totalCompAnualProm = $detalle->pluck('total_comp_anual')->avg(); - $totalCompAnualMed = $this->median($detalle->pluck('total_comp_anual')); - $totalCompAnual25Per = $this->percentile(25, $detalle->pluck('total_comp_anual')); - $totalCompAnual75Per = $this->percentile(75, $detalle->pluck('total_comp_anual')); - - $found = $detalle->where('cabecera_encuesta_id', $dbClienteEnc->cabecera_encuesta_id) - ->first(); - if($found){ - $totalCompAnualEmpresa = $found->total_comp_anual; - }else{ - $totalCompAnualEmpresa = 0; - } - - - } - private function segmentArrayFactory($segmentArray){ - foreach ($segmentArray as $value) { - - $response[] = array( Lang::get('reportReport.table_concepts') => $value["concepto"], - Lang::get('reportReport.table_occupants') => $value["casos"], - Lang::get('reportReport.table_cases') => $value["casos"], - Lang::get('reportReport.table_min') => $value["min"], - Lang::get('reportReport.table_perc25') => $value["per25"], - Lang::get('reportReport.table_average') => $value["prom"], - Lang::get('reportReport.table_median') => $value["med"], - Lang::get('reportReport.table_perc75') => $value["per75"], - Lang::get('reportReport.table_max') => $value["max"], - Lang::get('reportReport.table_company') => $value["empresa"] - ); - } - - return $response; - } - private function getIdioma(){ - return $locale = app()->getLocale(); - } - - private function nivelReport(Request $request, $encuestasIDs, $muestraComision = false){ - - $periodo = $request->periodo; // periodo de la encuesta actual - $rubro = $request->rubro_id; // rubro de la empresa del cliente - // cargo oficial para el informe - $nivel = $request->nivel_id; - if($this->getIdioma() == "es"){ - $dbNivel = Nivel::find($nivel); - }else{ - $dbNivel = Nivel_en::find($nivel); - } - - $dbEncuestadas = Cabecera_encuesta::whereIn('id', $encuestasIDs)->get(); - // conteo de encuestas según origen - $dbNacionales = 0; - $dbInternacionales = 0; - $dbUniverso = $dbEncuestadas->count(); - $encuestadasNacIds = collect(); - $encuestadasInterIds = collect(); - foreach ($dbEncuestadas as $key => $value) { - if($value->empresa->tipo == 0){ - $dbNacionales++; - $encuestadasNacIds[] = $value->id; - }else{ - $dbInternacionales++; - $encuestadasInterIds[] = $value->id; - }; - } - // Recuperamos los datos de los cargos proveídos por las empresas encuestadas - - $dbEncuestasNivel = Detalle_encuestas_nivel::whereIn('cabecera_encuesta_id', $encuestasIDs) - ->where('nivel_oficial_id', $nivel) - ->where('incluir', 1) - ->get(); - $dbEncuestasNivelNac = Detalle_encuestas_nivel::whereIn('cabecera_encuesta_id', $encuestadasNacIds) - ->where('nivel_oficial_id', $nivel) - ->where('incluir', 1) - ->get(); - $dbEncuestasNivelInter = Detalle_encuestas_nivel::whereIn('cabecera_encuesta_id', $encuestadasInterIds) - ->where('nivel_oficial_id', $nivel) - ->where('incluir', 1) - ->get(); - - // conteo de casos encontrados universo - $countCasos = $dbEncuestasNivel->where('cantidad_ocupantes', '>', '0') - ->unique('cabecera_encuesta_id') - ->count(); - // conteo de casos encontrados nacionales - $countCasosNac = $dbEncuestasNivelNac->where('cantidad_ocupantes', '>', '0') - ->unique('cabecera_encuesta_id') - ->count(); - // conteo de casos encontrados internacionales - $countCasosInter = $dbEncuestasNivelInter->where('cantidad_ocupantes', '>', '0') - ->unique('cabecera_encuesta_id') - ->count(); - - // conteo de casos encontrados - $countOcupantes = $dbEncuestasNivel->sum('cantidad_ocupantes'); - $universo = collect(); - $segmento = "universo"; - // Salario Base - $salariosBase = $dbEncuestasNivel->where('salario_base', '>', '0') - ->pluck('salario_base'); - $salarioMin = $salariosBase->min(); - $salarioMax = $salariosBase->max(); - $salarioProm = $salariosBase->avg(); - $salarioMed = $this->median($salariosBase); - $salario25Per = $this->percentile(25,$salariosBase); - $salario75Per = $this->percentile(75, $salariosBase); - - //dd($dbClienteEnc); - $this->pusherNivel( $universo, - $countCasos, - Lang::get('reportReport.concept_salary'), - $salarioMin, - $salarioMax, - $salarioProm, - $salarioMed, - $salario25Per, - $salario75Per, - $segmento, - $dbNivel); - - //Bono - $bonos = $dbEncuestasNivel->where('bono_anual', '>', '0') - ->pluck('bono_anual'); - $bonoMin = $bonos->min(); - $bonoMax = $bonos->max(); - $bonoProm = $bonos->avg(); - $bonoMed = $this->median($bonos); - $bono25Per = $this->percentile(25, $bonos); - $bono75Per = $this->percentile(75, $bonos); - - $countCasosBonos = $dbEncuestasNivel->where('bono_anual', '>', '0') - ->unique('cabecera_encuesta_id') - ->count(); - $this->pusherNivel( $universo, - $countCasosBonos, - Lang::get('reportReport.concept_bonus'), - $bonoMin, - $bonoMax, - $bonoProm, - $bonoMed, - $bono25Per, - $bono75Per, - $segmento, - $dbNivel); - - // Efectivo Total Anual - $efectivoAnual = $dbEncuestasNivel->where('salario_base', '>', '0') - ->pluck('total_efectivo_anual'); - - $efectivoTotalMin = $efectivoAnual->min(); - $efectivoTotalMax = $efectivoAnual->max(); - $efectivoTotalProm = $efectivoAnual->avg(); - $efectivoTotalMed = $this->median($efectivoAnual); - $efectivoTotal25Per = $this->percentile(25, $efectivoAnual); - $efectivoTotal75Per = $this->percentile(75, $efectivoAnual); - - $this->pusherNivel( $universo, - $countCasos, - Lang::get('reportReport.concept_bonus'), - $efectivoTotalMin, - $efectivoTotalMax, - $efectivoTotalProm, - $efectivoTotalMed, - $efectivoTotal25Per, - $efectivoTotal75Per, - $segmento, - $dbNivel); - - //$detalleUniverso = $this->nivelSegmentArrayFactory($universo); - $detalleUniverso = array(); - foreach ($universo as $value) { - $detalleUniverso[] = array( "Concepto"=>$value["concepto"], - "ocupantes"=> $countOcupantes, - "Casos"=>$value["casos"], - "Min"=>$value["min"], - "25 Percentil"=>$value["per25"], - "Promedio"=>$value["prom"], - "Mediana"=>$value["med"], - "75 Percentil"=>$value["per75"], - "Max"=>$value["max"], - "nivel"=>$value["nivel"] - ); - } - - $nacional = collect(); - $salarioBase = 0; - $salarioMin = 0; - $salarioMax = 0; - $salarioProm = 0; - $salarioMed = 0; - $salario25Per = 0; - $salario75Per = 0; - $bonos = 0; - $bonoMin = 0; - $bonoMax = 0; - $bonoProm = 0; - $bonoMed = 0; - $bono25Per = 0; - $bono75Per = 0; - $efectivoAnual = 0; - $efectivoTotalMin = 0; - $efectivoTotalMax = 0; - $efectivoTotalProm = 0; - $efectivoTotalMed = 0; - $efectivoTotal25Per = 0; - $efectivoTotal75Per = 0; - - $segmento = "nacional"; - $countOcupantesNac = $dbEncuestasNivelNac->sum('cantidad_ocupantes'); - // Salario Base - $salariosBase = $dbEncuestasNivelNac->where('salario_base', '>', '0')->pluck('salario_base'); - $salarioMin = $salariosBase->min(); - $salarioMax = $salariosBase->max(); - $salarioProm = $salariosBase->avg(); - $salarioMed = $this->median($salariosBase); - $salario25Per = $this->percentile(25,$salariosBase); - $salario75Per = $this->percentile(75, $salariosBase); - - //dd($dbClienteEnc); - $this->pusherNivel( $nacional, - $countCasosNac, - Lang::get('reportReport.concept_salary'), - $salarioMin, - $salarioMax, - $salarioProm, - $salarioMed, - $salario25Per, - $salario75Per, - $segmento, - $dbNivel); - - //Bono - $bonos = $dbEncuestasNivelNac->where('bono_anual', '>', '0')->pluck('bono_anual'); - $bonoMin = $bonos->min(); - $bonoMax = $bonos->max(); - $bonoProm = $bonos->avg(); - $bonoMed = $this->median($bonos); - $bono25Per = $this->percentile(25, $bonos); - $bono75Per = $this->percentile(75, $bonos); - - $countCasosBonosNac = $dbEncuestasNivelNac->where('bono_anual', '>', '0') - ->unique('cabecera_encuesta_id') - ->count(); - $this->pusherNivel( $nacional, - $countCasosBonosNac, - Lang::get('reportReport.concept_bonus'), - $bonoMin, - $bonoMax, - $bonoProm, - $bonoMed, - $bono25Per, - $bono75Per, - $segmento, - $dbNivel); - - // Efectivo Total Anual - $efectivoAnual = $dbEncuestasNivelNac->where('salario_base', '>', '0') - ->pluck('total_efectivo_anual'); - - $efectivoTotalMin = $efectivoAnual->min(); - $efectivoTotalMax = $efectivoAnual->max(); - $efectivoTotalProm = $efectivoAnual->avg(); - $efectivoTotalMed = $this->median($efectivoAnual); - $efectivoTotal25Per = $this->percentile(25, $efectivoAnual); - $efectivoTotal75Per = $this->percentile(75, $efectivoAnual); - - $this->pusherNivel( $nacional, - $countCasosBonosNac, - Lang::get('reportReport.concept_bonus'), - $efectivoTotalMin, - $efectivoTotalMax, - $efectivoTotalProm, - $efectivoTotalMed, - $efectivoTotal25Per, - $efectivoTotal75Per, - $segmento, - $dbNivel); - - //$detalleNacional = $this->nivelSegmentArrayFactory($nacional); - $detalleNacional = array(); - foreach ($nacional as $value) { - $detalleNacional[] = array( "Concepto"=>$value["concepto"], - "ocupantes"=> $countOcupantesNac, - "Casos"=>$value["casos"], - "Min"=>$value["min"], - "25 Percentil"=>$value["per25"], - "Promedio"=>$value["prom"], - "Mediana"=>$value["med"], - "75 Percentil"=>$value["per75"], - "Max"=>$value["max"], - "nivel"=>$value["nivel"] - ); - } - - $internacional = collect(); - $salarioBase = 0; - $salarioMin = 0; - $salarioMax = 0; - $salarioProm = 0; - $salarioMed = 0; - $salario25Per = 0; - $salario75Per = 0; - $bonos = 0; - $bonoMin = 0; - $bonoMax = 0; - $bonoProm = 0; - $bonoMed = 0; - $bono25Per = 0; - $bono75Per = 0; - $efectivoAnual = 0; - $efectivoTotalMin = 0; - $efectivoTotalMax = 0; - $efectivoTotalProm = 0; - $efectivoTotalMed = 0; - $efectivoTotal25Per = 0; - $efectivoTotal75Per = 0; - $countOcupantesInter = $dbEncuestasNivelInter->sum('cantidad_ocupantes'); - $segmento = "internacional"; - // Salario Base - $salariosBase = $dbEncuestasNivelInter->where('salario_base', '>', '0') - ->pluck('salario_base'); - $salarioMin = $salariosBase->min(); - $salarioMax = $salariosBase->max(); - $salarioProm = $salariosBase->avg(); - $salarioMed = $this->median($salariosBase); - $salario25Per = $this->percentile(25,$salariosBase); - $salario75Per = $this->percentile(75, $salariosBase); - - //dd($dbClienteEnc); - $this->pusherNivel( $internacional, - $countCasosInter, - Lang::get('reportReport.concept_salary'), - $salarioMin, - $salarioMax, - $salarioProm, - $salarioMed, - $salario25Per, - $salario75Per, - $segmento, - $dbNivel); - - //Bono - $bonos = $dbEncuestasNivelInter->where('bono_anual', '>', '0') - ->pluck('bono_anual'); - $bonoMin = $bonos->min(); - $bonoMax = $bonos->max(); - $bonoProm = $bonos->avg(); - $bonoMed = $this->median($bonos); - $bono25Per = $this->percentile(25, $bonos); - $bono75Per = $this->percentile(75, $bonos); - - $countCasosBonosInter = $dbEncuestasNivelInter->where('bono_anual', '>', '0') - ->unique('cabecera_encuesta_id') - ->count(); - $this->pusherNivel( $internacional, - $countCasosBonosInter, - Lang::get('reportReport.concept_bonus'), - $bonoMin, - $bonoMax, - $bonoProm, - $bonoMed, - $bono25Per, - $bono75Per, - $segmento, - $dbNivel); - - // Efectivo Total Anual - $efectivoAnual = $dbEncuestasNivelInter->where('salario_base', '>', '0') - ->pluck('total_efectivo_anual'); - - $efectivoTotalMin = $efectivoAnual->min(); - $efectivoTotalMax = $efectivoAnual->max(); - $efectivoTotalProm = $efectivoAnual->avg(); - $efectivoTotalMed = $this->median($efectivoAnual); - $efectivoTotal25Per = $this->percentile(25, $efectivoAnual); - $efectivoTotal75Per = $this->percentile(75, $efectivoAnual); - - $this->pusherNivel( $internacional, - $countCasosInter, - Lang::get('reportReport.concept_bonus'), - $efectivoTotalMin, - $efectivoTotalMax, - $efectivoTotalProm, - $efectivoTotalMed, - $efectivoTotal25Per, - $efectivoTotal75Per, - $segmento, - $dbNivel); - - //$detalleInternacional = $this->nivelSegmentArrayFactory($internacional); - $detalleInternacional = array(); - foreach ($internacional as $value) { - $detalleInternacional[] = array("Concepto"=>$value["concepto"], - "ocupantes"=> $countOcupantesInter, - "Casos"=>$value["casos"], - "Min"=>$value["min"], - "25 Percentil"=>$value["per25"], - "Promedio"=>$value["prom"], - "Mediana"=>$value["med"], - "75 Percentil"=>$value["per75"], - "Max"=>$value["max"], - "nivel"=>$value["nivel"] - ); - } - - $resultado = collect([ - "detalle_universo"=> $detalleUniverso, - "detalle_nacional"=> $detalleNacional, - "detalleInternacional"=>$detalleInternacional - ]); - return $resultado; - - } - private function pusherNivel(&$collection, $casos, $concepto, $min, $max, $prom, $med, $per25, $per75, $segmento, $dbNivel){ - - $collection->push([ "concepto"=> $concepto, - "casos"=> $casos, - "min"=>$min, - "max"=>$max, - "prom"=>$prom, - "med"=>$med, - "per25"=>$per25, - "per75"=> $per75, - "segmento"=>$segmento, - "nivel" => $dbNivel->descripcion - ]); - - } - private function nivelSegmentArrayFactory($segmentArray){ - foreach ($segmentArray as $value) { - - $response[] = array( Lang::get('reportReport.table_concepts') => $value["concepto"], - Lang::get('reportReport.table_occupants') => $value["casos"], - Lang::get('reportReport.table_cases') => $value["casos"], - Lang::get('reportReport.table_min') => $value["min"], - Lang::get('reportReport.table_perc25') => $value["per25"], - Lang::get('reportReport.table_average') => $value["prom"], - Lang::get('reportReport.table_median') => $value["med"], - Lang::get('reportReport.table_perc75') => $value["per75"], - Lang::get('reportReport.table_max') => $value["max"] - ); - } - - return $response; - } - private function cargaDetalleNivel($item, &$itemArray){ - $variableAnual = false; - - foreach ($item as $key => $value) { - switch ($value["Concepto"]) { - case "Comision": - $this->cargadorNivel($value, $itemArray, false); - break; - case Lang::get('reportReport.concept_salary'): - $this->cargadorNivel($value, $itemArray, true); - break; - case Lang::get('reportReport.concept_annual_cash'): - $this->cargadorNivel($value, $itemArray, false); - break; - case Lang::get('reportReport.variable_pay'): - $variableAnual = true; - $this->cargadorNivel($value, $itemArray, false); - - break; - case Lang::get('reportReport.concept_total_incentives'): - $this->cargadorNivel($value, $itemArray, false); - break; - case Lang::get('reportReport.concept_bonus'): - $this->cargadorNivel($value, $itemArray, false); - break; - case Lang::get('reportReport.concept_total_compensation'): - $this->cargadorNivel($value, $itemArray, false); - break; - - } - } - //dd($item); - /* if(!$variableAnual){ - // agregamos 0 a los lugares de Variable Anual - $aux = array_slice($itemArray, 0, 16, true); - array_push($aux, 0,0,0,0,0,0); - $aux2 = array_merge($aux, array_slice($itemArray, 16)); - $itemArray = $aux2; - } */ - - } - - private function cargadorNivel($value, &$itemArray, $casos){ - if($casos){ - array_push($itemArray, $value["ocupantes"]); - array_push($itemArray, $value["Casos"]); - } - array_push($itemArray, $value["Min"]); - array_push($itemArray, $value["25 Percentil"]); - array_push($itemArray, round($value["Promedio"], 2)); - array_push($itemArray, $value["Mediana"]); - array_push($itemArray, $value["75 Percentil"]); - array_push($itemArray, $value["Max"]); -} } diff --git a/app/Traits/ReportTrait.php b/app/Traits/ReportTrait.php index 231e7f0..b99e066 100644 --- a/app/Traits/ReportTrait.php +++ b/app/Traits/ReportTrait.php @@ -2,27 +2,3354 @@ namespace App\Traits; -use App\Rubro; +use Illuminate\Http\Request; +use Illuminate\Support\Facades\Schema; use App\Cabecera_encuesta; +use App\Encuestas_cargo; +use App\Detalle_encuesta; +use App\Detalle_encuestas_nivel; +use App\Cargos_rubro; +use App\Empresa; +use App\Ficha_dato; +use App\Nivel; +use App\Nivel_en; +use App\Cargo; +use App\Cargo_en; +use App\Rubro; +use App\User; +use Hash; +use DB; +use Auth; +use Excel; +use Session; +use Lang; trait ReportTrait{ - public function getRubros(){ - // recuperamos todos los rubros - $rubros = Rubro::all()->pluck('descripcion', 'id'); - return $rubros; + public function countEmergentesSegmento($rubro, $subRubro, $periodo){ + + $results = DB::select( DB::raw( + "SELECT count(distinct cargo_id) cargos + FROM encuestas_cargos e + WHERE cabecera_encuesta_id in ( select id + from cabecera_encuestas + where rubro_id = :rubro + and sub_rubro_id = :subRubro + and periodo = :periodo)"), + array('rubro' => $rubro, 'subRubro' => $subRubro, 'periodo' => $periodo)); + //return $results; + if($results){ + $count = $results[0]->cargos; + }else{ + $count = 0; + } + return $count; + } + public function cargaDetalle($item, &$itemArray){ + $variableAnual = false; + $efectivoTotal = false; + $efectivoGarantizado = false; + $salarioEmpresa = 0; + $variableAnualEmp = 0; + foreach ($item as $key => $value) { + switch ($value["Concepto"]) { + case "Comision": + $this->cargador($value, $itemArray, false); + break; + case Lang::get('reportReport.concept_salary'): + $this->cargador($value, $itemArray, true); + $salarioEmpresa = intval(str_replace(".", "", $value["Empresa"])); + break; + case Lang::get('reportReport.concept_annual_cash'): + $efectivoGarantizado = true; + $this->cargador($value, $itemArray, false); + break; + case Lang::get('reportReport.concept_variable_pay'): + $variableAnual = true; + $this->cargador($value, $itemArray, false); + $variableAnualEmp = $value["Empresa"]; + break; + case Lang::get('reportReport.concept_total_incentives'): + $this->cargador($value, $itemArray, false); + break; + case Lang::get('reportReport.concept_bonus'): + $this->cargador($value, $itemArray, false); + break; + case Lang::get('reportReport.concept_total_compensation'): + $this->cargador($value, $itemArray, false); + break; + case Lang::get('reportReport.concept_annual_cash_total'): + $efectivoTotal = true; + $this->cargador($value, $itemArray, false); + break; + + } + } + + // comparativo salario base + if($itemArray[4] > 0){ + $compMinSal = round($salarioEmpresa/$itemArray[4] - 1, 2); + }else{ + $compMinSal = 0; + } + if($itemArray[5] > 0){ + $comp25PercSal = round($salarioEmpresa/$itemArray[5] - 1, 2); + }else{ + $comp25PercSal = 0; + } + if($itemArray[6] > 0){ + $compPromSal = round($salarioEmpresa/$itemArray[6] - 1, 2); + }else{ + $compPromSal = 0; + } + if($itemArray[7] > 0){ + $compMedSal = round($salarioEmpresa/$itemArray[7] - 1, 2); + }else{ + $compMedSal = 0; + } + + if($itemArray[8] > 0){ + $comp75PercSal = round($salarioEmpresa/$itemArray[8] - 1, 2); + }else{ + $comp75PercSal = 0; + } + if($itemArray[9] > 0){ + $compMaxSal = round($salarioEmpresa/$itemArray[9] - 1, 2); + }else{ + $compMaxSal = 0; + } + + if($variableAnual){ + // comparativo variable anual + if($itemArray[10] > 0){ + $compMinVar = round($salarioEmpresa/$itemArray[10] - 1, 2); + }else{ + $compMinVar = 0; + } + if($itemArray[11] > 0){ + $comp25PercVar = round($salarioEmpresa/$itemArray[11] - 1 , 2); + }else{ + $comp25PercVar = 0; + } + if($itemArray[12] > 0){ + $compPromVar = round($salarioEmpresa/$itemArray[12] - 1 , 2); + }else{ + $compPromVar = 0; + } + if($itemArray[13] > 0){ + $compMedVar = round($salarioEmpresa/$itemArray[13] - 1, 2); + }else{ + $compMedVar = 0; + } + if($itemArray[14] > 0){ + $comp75PercVar = round($salarioEmpresa/$itemArray[14] - 1, 2); + }else{ + $comp75PercVar = 0; + } + if($itemArray[15] > 0){ + $compMaxVar = round($salarioEmpresa/$itemArray[15] - 1, 2); + }else{ + $compMaxVar = 0; + } + + if($itemArray[34] > 0){ + $ratioSalBaseTotalEfectivoMin = round(($itemArray[4]*12)/$itemArray[34], 2); + }else{ + $ratioSalBaseTotalEfectivoMin = 0; + } + if($itemArray[35] > 0){ + $ratioSalBaseTotalEfectivo25 = round(($itemArray[5]*12)/$itemArray[35], 2); + }else{ + $ratioSalBaseTotalEfectivo25 = 0; + } + if($itemArray[36] > 0){ + $ratioSalBaseTotalEfectivoProm = round(($itemArray[6]*12)/$itemArray[36], 2); + }else{ + $ratioSalBaseTotalEfectivoProm = 0; + } + if($itemArray[37] > 0){ + $ratioSalBaseTotalEfectivoMed = round(($itemArray[7]*12)/$itemArray[37], 2); + }else{ + $ratioSalBaseTotalEfectivoMed = 0; + } + if($itemArray[38] > 0){ + $ratioSalBaseTotalEfectivo75 = round(($itemArray[8]*12)/$itemArray[38], 2); + }else{ + $ratioSalBaseTotalEfectivo75 = 0; + } + if($itemArray[39] > 0){ + $ratioSalBaseTotalEfectivoMax = round(($itemArray[9]*12)/$itemArray[39], 2); + }else{ + $ratioSalBaseTotalEfectivoMax = 0; + } + array_push( $itemArray, + $compMinSal, + $comp25PercSal, + $compPromSal, + $compMedSal, + $comp75PercSal, + $compMaxSal, + $compMinVar, + $comp25PercVar, + $compPromVar, + $compMedVar, + $comp75PercVar, + $compMaxVar, + $ratioSalBaseTotalEfectivoMin, + $ratioSalBaseTotalEfectivo25, + $ratioSalBaseTotalEfectivoProm, + $ratioSalBaseTotalEfectivoMed, + $ratioSalBaseTotalEfectivo75, + $ratioSalBaseTotalEfectivoMax); + }elseif($efectivoTotal){ + // comparativo efectivo total anual + if($itemArray[34] > 0){ + $ratioSalBaseTotalEfectivoMin = round(($itemArray[4]*12)/$itemArray[34], 2); + }else{ + $ratioSalBaseTotalEfectivoMin = 0; + } + if($itemArray[35] > 0){ + $ratioSalBaseTotalEfectivo25 = round(($itemArray[5]*12)/$itemArray[35], 2); + }else{ + $ratioSalBaseTotalEfectivo25 = 0; + } + if($itemArray[36] > 0){ + $ratioSalBaseTotalEfectivoProm = round(($itemArray[6]*12)/$itemArray[36], 2); + }else{ + $ratioSalBaseTotalEfectivoProm = 0; + } + if($itemArray[37] > 0){ + $ratioSalBaseTotalEfectivoMed = round(($itemArray[7]*12)/$itemArray[37], 2); + }else{ + $ratioSalBaseTotalEfectivoMed = 0; + } + if($itemArray[38] > 0){ + $ratioSalBaseTotalEfectivo75 = round(($itemArray[8]*12)/$itemArray[38], 2); + }else{ + $ratioSalBaseTotalEfectivo75 = 0; + } + if($itemArray[39] > 0){ + $ratioSalBaseTotalEfectivoMax = round(($itemArray[9]*12)/$itemArray[39], 2); + }else{ + $ratioSalBaseTotalEfectivoMax = 0; + } + + array_push( $itemArray, + $compMinSal, + $comp25PercSal, + $compPromSal, + $compMedSal, + $comp75PercSal, + $compMaxSal, + $ratioSalBaseTotalEfectivoMin, + $ratioSalBaseTotalEfectivo25, + $ratioSalBaseTotalEfectivoProm, + $ratioSalBaseTotalEfectivoMed, + $ratioSalBaseTotalEfectivo75, + $ratioSalBaseTotalEfectivoMax); + }else{ + + if($itemArray[10] > 0){ + $ratioSalBaseTotalEfectivoMin = round(($itemArray[4]*12)/$itemArray[10], 2); + }else{ + $ratioSalBaseTotalEfectivoMin = 0; + } + if($itemArray[11] > 0){ + $ratioSalBaseTotalEfectivo25 = round(($itemArray[5]*12)/$itemArray[11], 2); + }else{ + $ratioSalBaseTotalEfectivo25 = 0; + } + if($itemArray[12] > 0){ + $ratioSalBaseTotalEfectivoProm = round(($itemArray[6]*12)/$itemArray[12], 2); + }else{ + $ratioSalBaseTotalEfectivoProm = 0; + } + if($itemArray[13] > 0){ + $ratioSalBaseTotalEfectivoMed = round(($itemArray[7]*12)/$itemArray[13], 2); + }else{ + $ratioSalBaseTotalEfectivoMed = 0; + } + if($itemArray[14] > 0){ + $ratioSalBaseTotalEfectivo75 = round(($itemArray[8]*12)/$itemArray[14], 2); + }else{ + $ratioSalBaseTotalEfectivo75 = 0; + } + if($itemArray[15] > 0){ + $ratioSalBaseTotalEfectivoMax = round(($itemArray[9]*12)/$itemArray[15], 2); + }else{ + $ratioSalBaseTotalEfectivoMax = 0; + } + + array_push( $itemArray, + $compMinSal, + $comp25PercSal, + $compPromSal, + $compMedSal, + $comp75PercSal, + $compMaxSal, + $ratioSalBaseTotalEfectivoMin, + $ratioSalBaseTotalEfectivo25, + $ratioSalBaseTotalEfectivoProm, + $ratioSalBaseTotalEfectivoMed, + $ratioSalBaseTotalEfectivo75, + $ratioSalBaseTotalEfectivoMax); + } + + + } + public function cargaDetalleComparativo($value, &$itemArray, $contNuevo){ + + if($contNuevo){ + array_push($itemArray, $value["Ocupantes"]); + array_push($itemArray, $value["Min"]); + array_push($itemArray, $value["25 Percentil"]); + array_push($itemArray, round($value["Promedio"], 2)); + array_push($itemArray, $value["Mediana"]); + array_push($itemArray, $value["75 Percentil"]); + array_push($itemArray, $value["Max"]); + }else{ + array_push($itemArray, $value["Min Ant"]); + array_push($itemArray, $value["25P Ant"]); + array_push($itemArray, round($value["Prom Ant"], 2)); + array_push($itemArray, $value["Med Ant"]); + array_push($itemArray, $value["75P Ant"]); + array_push($itemArray, $value["Max Ant"]); + array_push($itemArray, $value["Min"]); + array_push($itemArray, $value["25 Percentil"]); + array_push($itemArray, round($value["Promedio"], 2)); + array_push($itemArray, $value["Mediana"]); + array_push($itemArray, $value["75 Percentil"]); + array_push($itemArray, $value["Max"]); + array_push($itemArray, $value["Brecha Min"]); + array_push($itemArray, $value["Brecha 25P"]); + array_push($itemArray, $value["Brecha Prom"]); + array_push($itemArray, $value["Brecha Med"]); + array_push($itemArray, $value["Brecha 75P"]); + array_push($itemArray, $value["Brecha Max"]); + } + } + public function cargador($value, &$itemArray, $casos){ + if($casos){ + array_push($itemArray, $value["ocupantes"]); + array_push($itemArray, $value["Casos"]); + } + //array_push($itemArray, $value["Concepto"]); + array_push($itemArray, $value["Min"]); + array_push($itemArray, $value["25 Percentil"]); + array_push($itemArray, round($value["Promedio"], 2)); + array_push($itemArray, $value["Mediana"]); + array_push($itemArray, $value["75 Percentil"]); + array_push($itemArray, $value["Max"]); + } + + + public function segmenter( &$collection, + $countCasosSeg, + $detalle, + $countCasos, + $countCasosGratif, + $countCasosAguinaldo, + //$countCasosBeneficios, + $countCasosBono, + $dbClienteEnc, + $rubro, + $segmento, + $dbCargo, + $muestraComision){ + if($rubro == 1 ){ // Bancos + $salariosBase = $detalle->where('salario_base', '>', '0')->pluck('salario_base'); + $salarioMin = $salariosBase->min(); + $salarioMax = $salariosBase->max(); + $salarioProm = $salariosBase->avg(); + $salarioMed = $this->median($salariosBase); + $salario25Per = $this->percentile(25,$salariosBase); + $salario75Per = $this->percentile(75, $salariosBase); + + // Salario Base y Anual + $this->pusher( $collection, + $countCasos, + Lang::get('reportReport.concept_salary'), + $salarioMin, + $salarioMax, + round($salarioProm, 0), + round($salarioMed, 0), + round($salario25Per, 0), + round($salario75Per, 0), + $dbClienteEnc->salario_base, + $segmento, + $dbCargo); + + $salariosBaseAnual = $salariosBase->map(function($item){ + return $item * 12; + }); + + $salarioAnualMin = $salariosBaseAnual->min(); + $salarioAnualMax = $salariosBaseAnual->max(); + $salarioAnualProm = $salariosBaseAnual->avg(); + $salarioAnualMed = $this->median($salariosBaseAnual); + $salarioAnual25Per = $this->percentile(25,$salariosBaseAnual); + $salarioAnual75Per = $this->percentile(75, $salariosBaseAnual); + $this->pusher( $collection, + $countCasos, + Lang::get('reportReport.concept_annual_salary'), + $salarioAnualMin, + $salarioAnualMax, + round($salarioAnualProm, 0), + round($salarioAnualMed, 0), + round($salarioAnual25Per, 0), + round($salarioAnual75Per, 0), + $dbClienteEnc->salario_base * 12, + $segmento, + $dbCargo); + + // Gratificacion + $gratificaciones = $detalle->where('gratificacion', '>', '0')->pluck('gratificacion'); + $gratificacionMin = $gratificaciones->min(); + $gratificacionMax = $gratificaciones->max(); + $gratificacionProm = $gratificaciones->avg(); + $gratificacionMed = $this->median($gratificaciones); + $gratificacion25Per = $this->percentile(25, $gratificaciones); + $gratificacion75Per = $this->percentile(75, $gratificaciones); + + $this->pusher( $collection, + $countCasosGratif, + Lang::get('reportReport.concept_annual_gratif.'), + $gratificacionMin, + $gratificacionMax, + round($gratificacionProm, 0), + round($gratificacionMed, 0), + round($gratificacion25Per, 0), + round($gratificacion75Per, 0), + $dbClienteEnc->gratificacion, + $segmento, + $dbCargo); + + //Aguinaldo + $aguinaldos = $detalle->where('aguinaldo', '>', '0')->pluck('aguinaldo'); + $aguinaldoMin = $aguinaldos->min(); + $aguinaldoMax = $aguinaldos->max(); + $aguinaldoProm = $aguinaldos->avg(); + $aguinaldoMed = $this->median($aguinaldos); + $aguinaldo25Per = $this->percentile(25, $aguinaldos); + $aguinaldo75Per = $this->percentile(75, $aguinaldos); + + $this->pusher( $collection, + $countCasosAguinaldo, + Lang::get('reportReport.concept_13month'), + $aguinaldoMin, + $aguinaldoMax, + round($aguinaldoProm, 0), + round($aguinaldoMed, 0), + round($aguinaldo25Per, 0), + round($aguinaldo75Per, 0), + $dbClienteEnc->aguinaldo, + $segmento, + $dbCargo); + + // Efectivo Anual Garantizado + $detalle = $detalle->map(function($item){ + $item['efectivo_anual_garantizado'] = ($item['salario_base'] * 12) + + $item['aguinaldo'] + + $item['gratificacion']; + return $item; + }); + + $efectivoMin = $detalle->pluck('efectivo_anual_garantizado')->min(); + $efectivoMax = $detalle->pluck('efectivo_anual_garantizado')->max(); + $efectivoProm = $detalle->pluck('efectivo_anual_garantizado')->avg(); + $efectivoMed = $this->median($detalle->pluck('efectivo_anual_garantizado')); + $efectivo25Per = $this->percentile(25, $detalle->pluck('efectivo_anual_garantizado')); + $efectivo75Per = $this->percentile(75, $detalle->pluck('efectivo_anual_garantizado')); + + $found = $detalle->where('cabecera_encuesta_id', $dbClienteEnc->cabecera_encuesta_id) + ->first(); + if($found){ + $efectivoEmpresa = $found->efectivo_anual_garantizado; + }else{ + $efectivoEmpresa = 0; + } + + $this->pusher( $collection, + $countCasos, + Lang::get('reportReport.concept_annual_cash'), + $efectivoMin, + $efectivoMax, + round($efectivoProm, 0), + round($efectivoMed, 0), + round($efectivo25Per, 0), + round($efectivo75Per, 0), + $efectivoEmpresa, + $segmento, + $dbCargo); + + + //Adicional + $casosAdicionalesBancos = $detalle->where('adicionales_bancos', '>', '0')->unique('cabecera_encuesta_id')->count(); + $adicionalesBancos = $detalle->where('adicionales_bancos', '>', '0')->pluck('adicionales_bancos'); + $adicionalesMin = $adicionalesBancos->min(); + $adicionalesMax = $adicionalesBancos->max(); + $adicionalesProm = $adicionalesBancos->avg(); + $adicionalesMed = $this->median($adicionalesBancos); + $adicionales25Per = $this->percentile(25, $adicionalesBancos); + $adicionales75Per = $this->percentile(75, $adicionalesBancos); + + $this->pusher( $collection, + $casosAdicionalesBancos, + Lang::get('reportReport.concept_total_incentives'), + $adicionalesMin, + $adicionalesMax, + round($adicionalesProm, 0), + round($adicionalesMed, 0), + round($adicionales25Per, 0), + round($adicionales75Per, 0), + $dbClienteEnc->adicionales_bancos, + $segmento, + $dbCargo); + + + //Bono + $bonos = $detalle->where('bono_anual', '>', '0')->pluck('bono_anual'); + $bonoMin = $bonos->min(); + $bonoMax = $bonos->max(); + $bonoProm = $bonos->avg(); + $bonoMed = $this->median($bonos); + $bono25Per = $this->percentile(25, $bonos); + $bono75Per = $this->percentile(75, $bonos); + + $this->pusher( $collection, + $countCasosBono, + Lang::get('reportReport.concept_bonus'), + $bonoMin, + $bonoMax, + $bonoProm, + $bonoMed, + $bono25Per, + $bono75Per, + $dbClienteEnc->bono_anual, + $segmento, + $dbCargo); + + if($muestraComision){ + //Comisión + $countCasosComision = $detalle->where('comision', '>', '0')->unique('cabecera_encuesta_id')->count(); + $comision = $detalle->where('comision', '>', '0')->pluck('comision'); + $comisionMin = $comision->min(); + $comisionMax = $comision->max(); + $comisionProm = $comision->avg(); + $comisionMed = $this->median($comision); + $comision25Per = $this->percentile(25, $comision); + $comision75Per = $this->percentile(75, $comision); + + $this->pusher( $collection, + $countCasosComision, + //Lang::get('reportReport.concept_bonus'), + "Comision", + $comisionMin, + $comisionMax, + round($comisionProm, 0) * 12, + round($comisionMed, 0) * 12, + round($comision25Per, 0) * 12, + round($comision75Per, 0) *12, + $dbClienteEnc->comision, + $segmento, + $dbCargo); + + } + + + //Aguinaldo Impactado + $aguinaldoImpMin = 0; + $aguinaldoImpMax = 0; + $aguinaldoImpProm = 0; + $aguinaldoImpMed = 0; + $aguinaldoImp25Per = 0; + $aguinaldoImp75Per = 0; + $aguinaldoImpEmpresa = 0; + + $detalle = $detalle->map(function($item){ + $item['aguinaldo_impactado'] = (($item['salario_base'] * 12) + + $item['gratificacion'] + + $item['bono_anual'] + + $item['adicionales_bancos'])/12; + return $item; + }); + + $aguinaldoImpMin = $detalle->pluck('aguinaldo_impactado')->min(); + $aguinaldoImpMax = $detalle->pluck('aguinaldo_impactado')->max(); + $aguinaldoImpProm = $detalle->pluck('aguinaldo_impactado')->avg(); + $aguinaldoImpMed = $this->median($detalle->pluck('aguinaldo_impactado')); + $aguinaldoImp25Per = $this->percentile(25, $detalle->pluck('aguinaldo_impactado')); + $aguinaldoImp75Per = $this->percentile(75, $detalle->pluck('aguinaldo_impactado')); + + $found = $detalle->where('cabecera_encuesta_id', $dbClienteEnc->cabecera_encuesta_id) + ->first(); + if($found){ + $aguinaldoImpEmpresa = $found->aguinaldo_impactado; + }else{ + $aguinaldoImpEmpresa = 0; + } + + $this->pusher( $collection, + $countCasos, + Lang::get('reportReport.concept_13month_impacted'), + $aguinaldoImpMin, + $aguinaldoImpMax, + round($aguinaldoImpProm, 0), + round($aguinaldoImpMed, 0), + round($aguinaldoImp25Per, 0), + round($aguinaldoImp75Per, 0), + $aguinaldoImpEmpresa, + $segmento, + $dbCargo); + + //Total Compensación Efectiva anual + $detalle = $detalle->map(function($item){ + $item['total_comp_anual'] = ($item['salario_base'] * 12) + + $item['gratificacion'] + + $item['bono_anual'] + + $item['adicionales_bancos']+ + $item['aguinaldo']; + return $item; + }); + + $totalCompAnualMin = $detalle->pluck('total_comp_anual')->min(); + $totalCompAnualMax = $detalle->pluck('total_comp_anual')->max(); + $totalCompAnualProm = $detalle->pluck('total_comp_anual')->avg(); + $totalCompAnualMed = $this->median($detalle->pluck('total_comp_anual')); + $totalCompAnual25Per = $this->percentile(25, $detalle->pluck('total_comp_anual')); + $totalCompAnual75Per = $this->percentile(75, $detalle->pluck('total_comp_anual')); + + $found = $detalle->where('cabecera_encuesta_id', $dbClienteEnc->cabecera_encuesta_id) + ->first(); + if($found){ + $totalCompAnualEmpresa = $found->total_comp_anual; + }else{ + $totalCompAnualEmpresa = 0; + } + + + $this->pusher( $collection, + $countCasos, + Lang::get('reportReport.concept_total_compensation'), + $totalCompAnualMin, + $totalCompAnualMax, + round($totalCompAnualProm, 0), + round($totalCompAnualMed, 0), + round($totalCompAnual25Per, 0), + round($totalCompAnual75Per, 0), + $totalCompAnualEmpresa, + $segmento, + $dbCargo); + + }elseif ($rubro == 4) { // Navieras + // Salario Base + $salariosBase = $detalle->where('salario_base', '>', '0')->pluck('salario_base'); + $salarioMin = $salariosBase->min(); + $salarioMax = $salariosBase->max(); + $salarioProm = $salariosBase->avg(); + $salarioMed = $this->median($salariosBase); + $salario25Per = $this->percentile(25,$salariosBase); + $salario75Per = $this->percentile(75, $salariosBase); + + $this->pusher( $collection, + $countCasos, + Lang::get('reportReport.concept_salary'), + $salarioMin, + $salarioMax, + round($salarioProm, 0), + round($salarioMed, 0), + round($salario25Per, 0), + round($salario75Per, 0), + $dbClienteEnc->salario_base, + $segmento, + $dbCargo); + // Salario Base Anual + $salariosBaseAnual = $salariosBase->map(function($item){ + return $item * 12; + }); + + $salarioAnualMin = $salariosBaseAnual->min(); + $salarioAnualMax = $salariosBaseAnual->max(); + $salarioAnualProm = $salariosBaseAnual->avg(); + $salarioAnualMed = $this->median($salariosBaseAnual); + $salarioAnual25Per = $this->percentile(25,$salariosBaseAnual); + $salarioAnual75Per = $this->percentile(75, $salariosBaseAnual); + $this->pusher( $collection, + $countCasos, + Lang::get('reportReport.concept_annual_salary'), + $salarioAnualMin, + $salarioAnualMax, + round($salarioAnualProm, 0), + round($salarioAnualMed, 0), + round($salarioAnual25Per, 0), + round($salarioAnual75Per, 0), + $dbClienteEnc->salario_base * 12, + $segmento, + $dbCargo); + //Aguinaldo + $aguinaldos = $detalle->where('aguinaldo', '>', '0')->pluck('aguinaldo'); + $aguinaldoMin = $aguinaldos->min(); + $aguinaldoMax = $aguinaldos->max(); + $aguinaldoProm = $aguinaldos->avg(); + $aguinaldoMed = $this->median($aguinaldos); + $aguinaldo25Per = $this->percentile(25, $aguinaldos); + $aguinaldo75Per = $this->percentile(75, $aguinaldos); + + $this->pusher( $collection, + $countCasosAguinaldo, + Lang::get('reportReport.concept_13month'), + $aguinaldoMin, + $aguinaldoMax, + round($aguinaldoProm, 0), + round($aguinaldoMed, 0), + round($aguinaldo25Per, 0), + round($aguinaldo75Per, 0), + $dbClienteEnc->aguinaldo, + $segmento, + $dbCargo); + + // Variable Anual + $plusRendimiento = $detalle->where('plus_rendimiento', '>', '0')->pluck('plus_rendimiento'); + $plusMin = $plusRendimiento->min(); + $plusMax = $plusRendimiento->max(); + $plusProm = $plusRendimiento->avg(); + $plusMed = $this->median($plusRendimiento); + $plus25Per = $this->percentile(25,$plusRendimiento); + $plus75Per = $this->percentile(75, $plusRendimiento); + $countCasosPlus = $detalle->where('plus_rendimiento', '>', '0')->unique('cabecera_encuesta_id')->count(); + $this->pusher( $collection, + $countCasosPlus, + Lang::get('reportReport.concept_variable_pay'), + $plusMin, + $plusMax, + round($plusProm, 0), + round($plusMed,0), + round($plus25Per, 0), + round($plus75Per, 0), + $dbClienteEnc->plus_rendimiento, + $segmento, + $dbCargo); + + // Variable por Viaje + $variableViaje = $detalle->where('variable_viaje', '>', '0')->pluck('variable_viaje'); + $plusMin = $variableViaje->min(); + $plusMax = $variableViaje->max(); + $plusProm = $variableViaje->avg(); + $plusMed = $this->median($variableViaje); + $plus25Per = $this->percentile(25,$variableViaje); + $plus75Per = $this->percentile(75, $variableViaje); + $countCasosPlus = $detalle->where('variable_viaje', '>', '0')->unique('cabecera_encuesta_id')->count(); + $this->pusher( $collection, + $countCasosPlus, + Lang::get('reportReport.concept_variable_pay_trip'), + $plusMin, + $plusMax, + round($plusProm, 0), + round($plusMed,0), + round($plus25Per, 0), + round($plus75Per, 0), + $dbClienteEnc->variable_viaje, + $segmento, + $dbCargo); + + // Adicional Amarre + $adicionalAmarre = $detalle->where('adicional_amarre', '>', '0')->pluck('adicional_amarre'); + $amarreMin = $adicionalAmarre->min(); + $amarreMax = $adicionalAmarre->max(); + $amarreProm = $adicionalAmarre->avg(); + $amarreMed = $this->median($adicionalAmarre); + $amarre25Per = $this->percentile(25,$adicionalAmarre); + $amarre75Per = $this->percentile(75, $adicionalAmarre); + $countCasosAmarre = $detalle->where('adicional_amarre', '>', '0')->unique('cabecera_encuesta_id')->count(); + $this->pusher( $collection, + $countCasosAmarre, + Lang::get('reportReport.concept_mooring'), + $amarreMin, + $amarreMax, + round($amarreProm, 0), + round($amarreMed, 0), + round($amarre25Per, 0), + round($amarre75Per, 0), + $dbClienteEnc->adicional_amarre, + $segmento, + $dbCargo); + + + // Adicional Tipo de Combustible + $adicionalTipoCombustible = $detalle->where('adicional_tipo_combustible', '>', '0')->pluck('adicional_tipo_combustible'); + $TipoCombustibleMin = $adicionalTipoCombustible->min(); + $TipoCombustibleMax = $adicionalTipoCombustible->max(); + $TipoCombustibleProm = $adicionalTipoCombustible->avg(); + $TipoCombustibleMed = $this->median($adicionalTipoCombustible); + $TipoCombustible25Per = $this->percentile(25,$adicionalTipoCombustible); + $TipoCombustible75Per = $this->percentile(75, $adicionalTipoCombustible); + $countCasosTipoCombustible = $detalle->where('adicional_tipo_combustible', '>', '0')->unique('cabecera_encuesta_id')->count(); + $this->pusher( $collection, + $countCasosTipoCombustible, + Lang::get('reportReport.concept_fuel_type'), + $TipoCombustibleMin, + $TipoCombustibleMax, + round($TipoCombustibleProm, 0), + round($TipoCombustibleMed, 0), + round($TipoCombustible25Per, 0), + round($TipoCombustible75Per, 0), + $dbClienteEnc->adicional_tipo_combustible, + $segmento, + $dbCargo); + + // Adicional por disponiblidad/embarque + $adicionalEmbarque = $detalle->where('adicional_embarque', '>', '0')->pluck('adicional_embarque'); + $embarqueMin = $adicionalEmbarque->min(); + $embarqueMax = $adicionalEmbarque->max(); + $embarqueProm = $adicionalEmbarque->avg(); + $embarqueMed = $this->median($adicionalEmbarque); + $embarque25Per = $this->percentile(25,$adicionalEmbarque); + $embarque75Per = $this->percentile(75, $adicionalEmbarque); + $countCasosEmbarque = $detalle->where('adicional_embarque', '>', '0')->unique('cabecera_encuesta_id')->count(); + $this->pusher( $collection, + $countCasosEmbarque, + Lang::get('reportReport.concept_shipping'), + $embarqueMin, + $embarqueMax, + round($embarqueProm, 0), + round($embarqueMed, 0), + round($embarque25Per, 0), + round($embarque75Per, 0), + $dbClienteEnc->adicional_embarque, + $segmento, + $dbCargo); + + // Adicional Carga + $adicionalCarga = $detalle->where('adicional_carga', '>', '0')->pluck('adicional_carga'); + $cargaMin = $adicionalCarga->min(); + $cargaMax = $adicionalCarga->max(); + $cargaProm = $adicionalCarga->avg(); + $cargaMed = $this->median($adicionalCarga); + $carga25Per = $this->percentile(25,$adicionalCarga); + $carga75Per = $this->percentile(75, $adicionalCarga); + $countCasosCarga = $detalle->where('adicional_carga', '>', '0')->unique('cabecera_encuesta_id')->count(); + $this->pusher( $collection, + $countCasosCarga, + Lang::get('reportReport.concept_load'), + $cargaMin, + $cargaMax, + round($cargaProm, 0), + round($cargaMed, 0), + round($carga25Per, 0), + round($carga75Per, 0), + $dbClienteEnc->adicional_carga, + $segmento, + $dbCargo); + + // Total Adicional + $casosAdicionales = $detalle->where('adicionales_navieras', '>', '0')->unique('cabecera_encuesta_id')->count(); + $adicionalAnual = $detalle->where('adicionales_navieras', '>', '0')->pluck('adicionales_navieras'); + $totalAdicionalMin = $adicionalAnual->min(); + $totalAdicionalMax = $adicionalAnual->max(); + $totalAdicionalProm = $adicionalAnual->avg(); + $totalAdicionalMed = $this->median($adicionalAnual); + $totalAdicional25Per = $this->percentile(25, $adicionalAnual); + $totalAdicional75Per = $this->percentile(75, $adicionalAnual); + + + $this->pusher( $collection, + $casosAdicionales, + Lang::get('reportReport.concept_total_incentives'), + $totalAdicionalMin, + $totalAdicionalMax, + round($totalAdicionalProm, 0), + round($totalAdicionalMed, 0), + round($totalAdicional25Per, 0), + round($totalAdicional75Per, 0), + $dbClienteEnc->adicionales_navieras, + $segmento, + $dbCargo); + + //Bono + $bonos = $detalle->where('bono_anual', '>', '0')->pluck('bono_anual'); + $bonoMin = $bonos->min(); + $bonoMax = $bonos->max(); + $bonoProm = $bonos->avg(); + $bonoMed = $this->median($bonos); + $bono25Per = $this->percentile(25, $bonos); + $bono75Per = $this->percentile(75, $bonos); + + $this->pusher( $collection, + $countCasosBono, + Lang::get('reportReport.concept_bonus'), + $bonoMin, + $bonoMax, + round($bonoProm, 0), + round($bonoMed, 0), + round($bono25Per, 0), + round($bono75Per, 0), + $dbClienteEnc->bono_anual, + $segmento, + $dbCargo); + + if($muestraComision){ + //Comisión + $countCasosComision = $detalle->where('comision', '>', '0')->unique('cabecera_encuesta_id')->count(); + $comision = $detalle->where('comision', '>', '0')->pluck('comision'); + $comisionMin = $comision->min(); + $comisionMax = $comision->max(); + $comisionProm = $comision->avg(); + $comisionMed = $this->median($comision); + $comision25Per = $this->percentile(25, $comision); + $comision75Per = $this->percentile(75, $comision); + + $this->pusher( $collection, + $countCasosComision, + //Lang::get('reportReport.concept_bonus'), + "Comision", + $comisionMin *12, + $comisionMax *12, + round($comisionProm, 0) *12, + round($comisionMed, 0) *12, + round($comision25Per, 0) *12, + round($comision75Per, 0) *12, + $dbClienteEnc->comision *12, + $segmento, + $dbCargo); + + } + + // Efectivo Total Anual + $detalle = $detalle->map(function($item){ + $item['efectivo_total_anual'] = $item['salario_base'] * 12 + + $item['aguinaldo']; + return $item; + }); + + $efectivoTotalMin = $detalle->pluck('efectivo_total_anual')->min(); + $efectivoTotalMax = $detalle->pluck('efectivo_total_anual')->max(); + $efectivoTotalProm = $detalle->pluck('efectivo_total_anual')->avg(); + $efectivoTotalMed = $this->median($detalle->pluck('efectivo_total_anual')); + $efectivoTotal25Per = $this->percentile(25, $detalle->pluck('efectivo_total_anual')); + $efectivoTotal75Per = $this->percentile(75, $detalle->pluck('efectivo_total_anual')); + + $found = $detalle->where('cabecera_encuesta_id', $dbClienteEnc->cabecera_encuesta_id) + ->first(); + if($found){ + $efectivoTotalEmpresa = $found->efectivo_total_anual; + }else{ + $efectivoTotalEmpresa = 0; + } + + $this->pusher( $collection, + $countCasos, + Lang::get('reportReport.concept_annual_cash_total'), + $efectivoTotalMin, + $efectivoTotalMax, + round($efectivoTotalProm, 0), + round($efectivoTotalMed, 0), + round($efectivoTotal25Per, 0), + round($efectivoTotal75Per, 0), + $efectivoTotalEmpresa, + $segmento, + $dbCargo); + + + //Beneficios + $beneficiosNavieras = $detalle->where('beneficios_navieras', '>', '0')->pluck('beneficios_navieras'); + $beneficiosMin = $beneficiosNavieras->min(); + $beneficiosMax = $beneficiosNavieras->max(); + $beneficiosProm = $beneficiosNavieras->avg(); + $beneficiosMed = $this->median($beneficiosNavieras); + $beneficios25Per = $this->percentile(25, $beneficiosNavieras); + $beneficios75Per = $this->percentile(75, $beneficiosNavieras); + $casosBeneficiosNavieras = $detalle->where('beneficios_navieras', '>', '0')->unique('cabecera_encuesta_id')->count(); + $this->pusher( $collection, + $casosBeneficiosNavieras, + Lang::get('reportReport.concept_total_benefits'), + $beneficiosMin, + $beneficiosMax, + round($beneficiosProm, 0), + round($beneficiosMed, 0), + round($beneficios25Per, 0), + round($beneficios75Per, 0), + $dbClienteEnc->beneficios_bancos, + $segmento, + $dbCargo); + + //Aguinaldo Impactado + $aguinaldoImpMin = 0; + $aguinaldoImpMax = 0; + $aguinaldoImpProm = 0; + $aguinaldoImpMed = 0; + $aguinaldoImp25Per = 0; + $aguinaldoImp75Per = 0; + $aguinaldoImpEmpresa = 0; + + $detalle = $detalle->map(function($item){ + $item['aguinaldo_impactado'] = (($item['salario_base'] * 12) + + $item['gratificacion'] + + $item['bono_anual'] + + $item['adicionales_navieras'])/12; + return $item; + }); + + $aguinaldoImpMin = $detalle->pluck('aguinaldo_impactado')->min(); + $aguinaldoImpMax = $detalle->pluck('aguinaldo_impactado')->max(); + $aguinaldoImpProm = $detalle->pluck('aguinaldo_impactado')->avg(); + $aguinaldoImpMed = $this->median($detalle->pluck('aguinaldo_impactado')); + $aguinaldoImp25Per = $this->percentile(25, $detalle->pluck('aguinaldo_impactado')); + $aguinaldoImp75Per = $this->percentile(75, $detalle->pluck('aguinaldo_impactado')); + + $found = $detalle->where('cabecera_encuesta_id', $dbClienteEnc->cabecera_encuesta_id) + ->first(); + if($found){ + $aguinaldoImpEmpresa = $found->aguinaldo_impactado; + }else{ + $aguinaldoImpEmpresa = 0; + } + + $this->pusher( $collection, + $countCasos, + Lang::get('reportReport.concept_13month_impacted'), + $aguinaldoImpMin, + $aguinaldoImpMax, + round($aguinaldoImpProm, 0), + round($aguinaldoImpMed, 0), + round($aguinaldoImp25Per, 0), + round($aguinaldoImp75Per, 0), + $aguinaldoImpEmpresa, + $segmento, + $dbCargo); + + + //Total Compensación anual + $detalle = $detalle->map(function($item){ + $item['total_comp_anual'] = $item['efectivo_total_anual'] + + $item['beneficios_navieras']; + return $item; + }); + + $totalCompAnualMin = $detalle->pluck('total_comp_anual')->min(); + $totalCompAnualMax = $detalle->pluck('total_comp_anual')->max(); + $totalCompAnualProm = $detalle->pluck('total_comp_anual')->avg(); + $totalCompAnualMed = $this->median($detalle->pluck('total_comp_anual')); + $totalCompAnual25Per = $this->percentile(25, $detalle->pluck('total_comp_anual')); + $totalCompAnual75Per = $this->percentile(75, $detalle->pluck('total_comp_anual')); + + $found = $detalle->where('cabecera_encuesta_id', $dbClienteEnc->cabecera_encuesta_id) + ->first(); + if($found){ + $totalCompAnualEmpresa = $found->total_comp_anual; + }else{ + $totalCompAnualEmpresa = 0; + } + + + $this->pusher( $collection, + $countCasos, + Lang::get('reportReport.concept_total_compensation'), + $totalCompAnualMin, + $totalCompAnualMax, + round($totalCompAnualProm, 0), + round($totalCompAnualMed, 0), + round($totalCompAnual25Per, 0), + round($totalCompAnual75Per, 0), + $totalCompAnualEmpresa, + $segmento, + $dbCargo); + }else{ // Los otros rubros son iguales + // Salario Base + $salariosBase = $detalle->where('salario_base', '>', '0')->pluck('salario_base'); + $salarioMin = $salariosBase->min(); + $salarioMax = $salariosBase->max(); + $salarioProm = $salariosBase->avg(); + $salarioMed = $this->median($salariosBase); + $salario25Per = $this->percentile(25,$salariosBase); + $salario75Per = $this->percentile(75, $salariosBase); + + $this->pusher( $collection, + $countCasos, + Lang::get('reportReport.concept_salary'), + $salarioMin, + $salarioMax, + round($salarioProm, 0), + round($salarioMed, 0), + round($salario25Per, 0), + round($salario75Per, 0), + $dbClienteEnc->salario_base, + $segmento, + $dbCargo); + + // Salario Base Anual + $salariosBaseAnual = $salariosBase->map(function($item){ + return $item * 12; + }); + + $salarioAnualMin = $salariosBaseAnual->min(); + $salarioAnualMax = $salariosBaseAnual->max(); + $salarioAnualProm = $salariosBaseAnual->avg(); + $salarioAnualMed = $this->median($salariosBaseAnual); + $salarioAnual25Per = $this->percentile(25,$salariosBaseAnual); + $salarioAnual75Per = $this->percentile(75, $salariosBaseAnual); + $this->pusher( $collection, + $countCasos, + Lang::get('reportReport.concept_annual_salary'), + $salarioAnualMin, + $salarioAnualMax, + round($salarioAnualProm, 0), + round($salarioAnualMed, 0), + round($salarioAnual25Per, 0), + round($salarioAnual75Per, 0), + $dbClienteEnc->salario_base * 12, + $segmento, + $dbCargo); + + // Gratificacion + $gratificaciones = $detalle->where('gratificacion', '>', '0')->pluck('gratificacion'); + $gratificacionMin = $gratificaciones->min(); + $gratificacionMax = $gratificaciones->max(); + $gratificacionProm = $gratificaciones->avg(); + $gratificacionMed = $this->median($gratificaciones); + $gratificacion25Per = $this->percentile(25, $gratificaciones); + $gratificacion75Per = $this->percentile(75, $gratificaciones); + + $this->pusher( $collection, + $countCasosGratif, + Lang::get('reportReport.concept_annual_gratif.'), + $gratificacionMin, + $gratificacionMax, + round($gratificacionProm, 0), + round($gratificacionMed, 0), + round($gratificacion25Per, 0), + round($gratificacion75Per, 0), + $dbClienteEnc->gratificacion, + $segmento, + $dbCargo); + + //Aguinaldo + $aguinaldos = $detalle->where('aguinaldo', '>', '0')->pluck('aguinaldo'); + $aguinaldoMin = $aguinaldos->min(); + $aguinaldoMax = $aguinaldos->max(); + $aguinaldoProm = $aguinaldos->avg(); + $aguinaldoMed = $this->median($aguinaldos); + $aguinaldo25Per = $this->percentile(25, $aguinaldos); + $aguinaldo75Per = $this->percentile(75, $aguinaldos); + + $this->pusher( $collection, + $countCasosAguinaldo, + Lang::get('reportReport.concept_13month'), + $aguinaldoMin, + $aguinaldoMax, + round($aguinaldoProm, 0), + round($aguinaldoMed, 0), + round($aguinaldo25Per, 0), + round($aguinaldo75Per, 0), + $dbClienteEnc->aguinaldo, + $segmento, + $dbCargo); + + // Efectivo Anual Garantizado + $detalle = $detalle->map(function($item){ + $item['efectivo_anual_garantizado'] = ($item['salario_base'] * 12) + + $item['gratificacion']+ + $item['aguinaldo']; + return $item; + }); + $efectivoMin = $detalle->pluck('efectivo_anual_garantizado')->min(); + $efectivoMax = $detalle->pluck('efectivo_anual_garantizado')->max(); + $efectivoProm = $detalle->pluck('efectivo_anual_garantizado')->avg(); + $efectivoMed = $this->median($detalle->pluck('efectivo_anual_garantizado')); + $efectivo25Per = $this->percentile(25, $detalle->pluck('efectivo_anual_garantizado')); + $efectivo75Per = $this->percentile(75, $detalle->pluck('efectivo_anual_garantizado')); + + $found = $detalle->where('cabecera_encuesta_id', $dbClienteEnc->cabecera_encuesta_id) + ->first(); + if($found){ + $efectivoEmpresa = $found->efectivo_anual_garantizado; + }else{ + $efectivoEmpresa = 0; + } + + $this->pusher( $collection, + $countCasos, + Lang::get('reportReport.concept_annual_cash'), + $efectivoMin, + $efectivoMax, + round($efectivoProm, 0), + round($efectivoMed, 0), + round($efectivo25Per, 0), + round($efectivo75Per, 0), + $efectivoEmpresa, + $segmento, + $dbCargo); + + //Adicional + $countCasosAdicionales = $detalle->where('adicionales_resto', '>', '0')->unique('cabecera_encuesta_id')->count(); + $adicionales = $detalle->where('adicionales_resto', '>', '0')->pluck('adicionales_resto'); + $adicionalesMin = $adicionales->min(); + $adicionalesMax = $adicionales->max(); + $adicionalesProm = $adicionales->avg(); + $adicionalesMed = $this->median($adicionales); + $adicionales25Per = $this->percentile(25, $adicionales); + $adicionales75Per = $this->percentile(75, $adicionales); + + $this->pusher( $collection, + $countCasosAdicionales, + Lang::get('reportReport.concept_total_additional'), + $adicionalesMin, + $adicionalesMax, + round($adicionalesProm, 0), + round($adicionalesMed, 0), + round($adicionales25Per, 0), + round($adicionales75Per, 0), + $dbClienteEnc->adicionales_resto, + $segmento, + $dbCargo); + + //Bono + $bonos = $detalle->where('bono_anual', '>', '0')->pluck('bono_anual'); + $bonoMin = $bonos->min(); + $bonoMax = $bonos->max(); + $bonoProm = $bonos->avg(); + $bonoMed = $this->median($bonos); + $bono25Per = $this->percentile(25, $bonos); + $bono75Per = $this->percentile(75, $bonos); + + $this->pusher( $collection, + $countCasosBono, + Lang::get('reportReport.concept_bonus'), + $bonoMin, + $bonoMax, + round($bonoProm, 0), + round($bonoMed, 0), + round($bono25Per, 0), + round($bono75Per, 0), + $dbClienteEnc->bono_anual, + $segmento, + $dbCargo); + + + if($muestraComision){ + //Comisión + $countCasosComision = $detalle->where('comision', '>', '0')->unique('cabecera_encuesta_id')->count(); + $comision = $detalle->where('comision', '>', '0')->pluck('comision'); + $comisionMin = $comision->min(); + $comisionMax = $comision->max(); + $comisionProm = $comision->avg(); + $comisionMed = $this->median($comision); + $comision25Per = $this->percentile(25, $comision); + $comision75Per = $this->percentile(75, $comision); + + $this->pusher( $collection, + $countCasosComision, + //Lang::get('reportReport.concept_bonus'), + "Comision", + $comisionMin * 12, + $comisionMax * 12, + round($comisionProm, 0) * 12, + round($comisionMed, 0) * 12, + round($comision25Per, 0) * 12, + round($comision75Per, 0) * 12, + $dbClienteEnc->comision * 12, + $segmento, + $dbCargo); + + } + + // Efectivo Total Anual + $detalle = $detalle->map(function($item){ + $item['efectivo_total_anual'] = $item['efectivo_anual_garantizado'] + + $item['adicionales_resto']+ + $item['bono_anual']; + return $item; + }); + + $efectivoTotalMin = $detalle->pluck('efectivo_total_anual')->min(); + $efectivoTotalMax = $detalle->pluck('efectivo_total_anual')->max(); + $efectivoTotalProm = $detalle->pluck('efectivo_total_anual')->avg(); + $efectivoTotalMed = $this->median($detalle->pluck('efectivo_total_anual')); + $efectivoTotal25Per = $this->percentile(25, $detalle->pluck('efectivo_total_anual')); + $efectivoTotal75Per = $this->percentile(75, $detalle->pluck('efectivo_total_anual')); + + $found = $detalle->where('cabecera_encuesta_id', $dbClienteEnc->cabecera_encuesta_id) + ->first(); + if($found){ + $efectivoTotalEmpresa = $found->efectivo_total_anual; + }else{ + $efectivoTotalEmpresa = 0; + } + + $this->pusher( $collection, + $countCasos, + Lang::get('reportReport.concept_annual_cash_total'), + $efectivoTotalMin, + $efectivoTotalMax, + round($efectivoTotalProm, 0), + round($efectivoTotalMed, 0), + round($efectivoTotal25Per, 0), + round($efectivoTotal75Per, 0), + $efectivoTotalEmpresa, + $segmento, + $dbCargo); + + //Beneficios + $countCasosBeneficios = $detalle->where('beneficios_resto', '>', '0')->unique('cabecera_encuesta_id')->count(); + $beneficiosResto = $detalle->where('beneficios_resto', '>', '0')->pluck('beneficios_resto'); + $beneficiosMin = $beneficiosResto->min(); + $beneficiosMax = $beneficiosResto->max(); + $beneficiosProm = $beneficiosResto->avg(); + $beneficiosMed = $this->median($beneficiosResto); + $beneficios25Per = $this->percentile(25, $beneficiosResto); + $beneficios75Per = $this->percentile(75, $beneficiosResto); + + $this->pusher( $collection, + $countCasosBeneficios, + Lang::get('reportReport.concept_total_benefits'), + $beneficiosMin, + $beneficiosMax, + round($beneficiosProm, 0), + round($beneficiosMed, 0), + round($beneficios25Per, 0), + round($beneficios75Per, 0), + $dbClienteEnc->beneficios_resto, + $segmento, + $dbCargo); + + //Aguinaldo Impactado + $aguinaldoImpMin = 0; + $aguinaldoImpMax = 0; + $aguinaldoImpProm = 0; + $aguinaldoImpMed = 0; + $aguinaldoImp25Per = 0; + $aguinaldoImp75Per = 0; + $aguinaldoImpEmpresa = 0; + + $detalle = $detalle->map(function($item){ + $item['aguinaldo_impactado'] = (($item['salario_base'] * 12) + + $item['gratificacion'] + + $item['bono_anual'] + + $item['adicionales_resto'])/12; + return $item; + }); + + $aguinaldoImpMin = $detalle->pluck('aguinaldo_impactado')->min(); + $aguinaldoImpMax = $detalle->pluck('aguinaldo_impactado')->max(); + $aguinaldoImpProm = $detalle->pluck('aguinaldo_impactado')->avg(); + $aguinaldoImpMed = $this->median($detalle->pluck('aguinaldo_impactado')); + $aguinaldoImp25Per = $this->percentile(25, $detalle->pluck('aguinaldo_impactado')); + $aguinaldoImp75Per = $this->percentile(75, $detalle->pluck('aguinaldo_impactado')); + + $found = $detalle->where('cabecera_encuesta_id', $dbClienteEnc->cabecera_encuesta_id) + ->first(); + if($found){ + $aguinaldoImpEmpresa = $found->aguinaldo_impactado; + }else{ + $aguinaldoImpEmpresa = 0; + } + + $this->pusher( $collection, + $countCasos, + Lang::get('reportReport.concept_13month_impacted'), + $aguinaldoImpMin, + $aguinaldoImpMax, + round($aguinaldoImpProm, 0), + round($aguinaldoImpMed, 0), + round($aguinaldoImp25Per, 0), + round($aguinaldoImp75Per, 0), + $aguinaldoImpEmpresa, + $segmento, + $dbCargo); + + //Total Compensación anual + $detalle = $detalle->map(function($item){ + $item['total_comp_anual'] = $item['efectivo_total_anual'] + + $item['beneficios_resto'] * 12; + return $item; + }); + $totalCompAnualMin = $detalle->pluck('total_comp_anual')->min(); + $totalCompAnualMax = $detalle->pluck('total_comp_anual')->max(); + $totalCompAnualProm = $detalle->pluck('total_comp_anual')->avg(); + $totalCompAnualMed = $this->median($detalle->pluck('total_comp_anual')); + $totalCompAnual25Per = $this->percentile(25, $detalle->pluck('total_comp_anual')); + $totalCompAnual75Per = $this->percentile(75, $detalle->pluck('total_comp_anual')); + + $found = $detalle->where('cabecera_encuesta_id', $dbClienteEnc->cabecera_encuesta_id) + ->first(); + if($found){ + $totalCompAnualEmpresa = $found->total_comp_anual; + }else{ + $totalCompAnualEmpresa = 0; + } + + $this->pusher( $collection, + $countCasos, + Lang::get('reportReport.concept_total_compensation'), + $totalCompAnualMin, + $totalCompAnualMax, + round($totalCompAnualProm, 0), + round($totalCompAnualMed, 0), + round($totalCompAnual25Per, 0), + round($totalCompAnual75Per, 0), + $totalCompAnualEmpresa, + $segmento, + $dbCargo); + + } + + } + + public function pusher(&$collection, $casos, $concepto, $min, $max, $prom, $med, $per25, $per75, $empresa, $segmento, $dbCargo){ + if($casos >= 4){ + $collection->push([ "concepto"=> $concepto, + "casos"=> $casos, + "min"=>$min, + "max"=>$max, + "prom"=>$prom, + "med"=>$med, + "per25"=>$per25, + "per75"=> $per75, + "empresa"=>$empresa, + "segmento"=>$segmento + ]); + }elseif($casos <= 3 and $casos > 1){ + $collection->push([ "concepto"=> $concepto, + "casos"=> $casos, + "min"=>"", + "max"=>"", + "prom"=>$prom, + "med"=>"", + "per25"=>$per25, + "per75"=> $per75, + "empresa"=>$empresa, + "segmento"=>$segmento + ]); + + }elseif ($casos <= 1) { + if($dbCargo->is_temporal == '1'){ + $collection->push([ "concepto"=> $concepto, + "casos"=> $casos, + "min"=>$min, + "max"=>$max, + "prom"=>$prom, + "med"=>$med, + "per25"=>$per25, + "per75"=> $per75, + "empresa"=>$empresa, + "segmento"=>$segmento + ]); + }else{ + $collection->push([ "concepto"=> $concepto, + "casos"=> $casos, + "min"=>"", + "max"=>"", + "prom"=>"", + "med"=>"", + "per25"=>"", + "per75"=>"", + "empresa"=>"", + "segmento"=>$segmento + ]); + } + } + } + + public function segmenterComparativo( &$collection, + $detalle, + $detalleAnt, + $dbClienteEnc, + $dbClienteEncAnt, + $concepto, + $dbCargo, + $countCasos = 0){ + + // Salario Base Anterior + $salariosBaseAnt = $detalleAnt->where('salario_base', '>', '0')->pluck('salario_base'); + $salarioMinAnt = $salariosBaseAnt->min(); + $salarioMaxAnt = $salariosBaseAnt->max(); + $salarioPromAnt = $salariosBaseAnt->avg(); + $salarioMedAnt = $this->median($salariosBaseAnt); + $salario25PerAnt = $this->percentile(25,$salariosBaseAnt); + $salario75PerAnt = $this->percentile(75, $salariosBaseAnt); + + // Salario Base + $salariosBase = $detalle->where('salario_base', '>', '0')->pluck('salario_base'); + $salarioMin = $salariosBase->min(); + $salarioMax = $salariosBase->max(); + $salarioProm = $salariosBase->avg(); + $salarioMed = $this->median($salariosBase); + $salario25Per = $this->percentile(25,$salariosBase); + $salario75Per = $this->percentile(75, $salariosBase); + + if($concepto == "SB"){ + $collection->push([ "concepto" => Lang::get('reportReport.concept_salary'), + "ocupantes" => $countCasos, + "min_ant" => $salarioMinAnt, + "max_ant" => $salarioMaxAnt, + "prom_ant" => round($salarioPromAnt, 0), + "med_ant" => round($salarioMedAnt, 0), + "per25_ant" => round($salario25PerAnt, 0), + "per75_ant" => round($salario75PerAnt, 0), + "min" => $salarioMin, + "max" => $salarioMax, + "prom" => round($salarioProm, 0), + "med" => round($salarioMed, 0), + "per25" => round($salario25Per, 0), + "per75" => round($salario75Per, 0), + "empresa" => $dbClienteEnc->salario_base, + "indicador" => "SA" + ]); + + } + + // Salario Base Anual + $salariosBaseAnual = $salariosBase->map(function($item){ + return $item * 12; + }); + + $salarioAnualMin = $salariosBaseAnual->min(); + $salarioAnualMax = $salariosBaseAnual->max(); + $salarioAnualProm = $salariosBaseAnual->avg(); + $salarioAnualMed = $this->median($salariosBaseAnual); + $salarioAnual25Per = $this->percentile(25,$salariosBaseAnual); + $salarioAnual75Per = $this->percentile(75, $salariosBaseAnual); + + //Aguinaldo + $aguinaldos = $detalle->where('aguinaldo', '>', '0')->pluck('aguinaldo'); + $aguinaldoMin = $aguinaldos->min(); + $aguinaldoMax = $aguinaldos->max(); + $aguinaldoProm = $aguinaldos->avg(); + $aguinaldoMed = $this->median($aguinaldos); + $aguinaldo25Per = $this->percentile(25, $aguinaldos); + $aguinaldo75Per = $this->percentile(75, $aguinaldos); + + // Variable Anual Anterior + $plusRendimientoAnt = $detalleAnt->where('plus_rendimiento', '>', '0')->pluck('plus_rendimiento'); + $plusMinAnt = $plusRendimientoAnt->min(); + $plusMaxAnt = $plusRendimientoAnt->max(); + $plusPromAnt = $plusRendimientoAnt->avg(); + $plusMedAnt = $this->median($plusRendimientoAnt); + $plus25PerAnt = $this->percentile(25,$plusRendimientoAnt); + $plus75PerAnt = $this->percentile(75, $plusRendimientoAnt); + + // Variable Anual + $plusRendimiento = $detalle->where('plus_rendimiento', '>', '0')->pluck('plus_rendimiento'); + $plusMin = $plusRendimiento->min(); + $plusMax = $plusRendimiento->max(); + $plusProm = $plusRendimiento->avg(); + $plusMed = $this->median($plusRendimiento); + $plus25Per = $this->percentile(25,$plusRendimiento); + $plus75Per = $this->percentile(75, $plusRendimiento); + $countCasosPlus = $detalle->where('plus_rendimiento', '>', '0')->unique('cabecera_encuesta_id')->count(); + + if($concepto == "VAR"){ + $collection->push([ "concepto" => Lang::get('reportReport.concept_variable_pay'), + "min_ant" => $plusMinAnt, + "max_ant" => $plusMaxAnt, + "prom_ant" => round($plusPromAnt, 0), + "med_ant" => round($plusMedAnt, 0), + "per25_ant" => round($plus25PerAnt, 0), + "per75_ant" => round($plus75PerAnt, 0), + "min" => $plusMin, + "max" => $plusMax, + "prom" => round($plusProm, 0), + "med" => round($plusMed, 0), + "per25" => round($plus25Per, 0), + "per75" => round($plus75Per, 0), + "empresa" => 0, + "indicador" => "VAR" + ]); + + } + + // Variable por Viaje Anterior + $variableViajeAnt = $detalleAnt->where('variable_viaje', '>', '0')->pluck('variable_viaje'); + $plusMinAnt = $variableViajeAnt->min(); + $plusMaxAnt = $variableViajeAnt->max(); + $plusPromAnt = $variableViajeAnt->avg(); + $plusMedAnt = $this->median($variableViajeAnt); + $plus25PerAnt = $this->percentile(25,$variableViajeAnt); + $plus75PerAnt = $this->percentile(75, $variableViajeAnt); + $countCasosPlusAnt = $detalle->where('variable_viaje', '>', '0')->unique('cabecera_encuesta_id')->count(); + + // Variable por Viaje + $variableViaje = $detalle->where('variable_viaje', '>', '0')->pluck('variable_viaje'); + $plusMin = $variableViaje->min(); + $plusMax = $variableViaje->max(); + $plusProm = $variableViaje->avg(); + $plusMed = $this->median($variableViaje); + $plus25Per = $this->percentile(25,$variableViaje); + $plus75Per = $this->percentile(75, $variableViaje); + $countCasosPlus = $detalle->where('variable_viaje', '>', '0')->unique('cabecera_encuesta_id')->count(); + + if($concepto == "VV"){ + $collection->push([ "concepto" => Lang::get('reportReport.concept_variable_pay_trip'), + "min_ant" => $plusMinAnt, + "max_ant" => $plusMaxAnt, + "prom_ant" => round($plusPromAnt, 0), + "med_ant" => round($plusMedAnt, 0), + "per25_ant" => round($plus25PerAnt, 0), + "per75_ant" => round($plus75PerAnt, 0), + "min" => $plusMin, + "max" => $plusMax, + "prom" => round($plusProm, 0), + "med" => round($plusMed, 0), + "per25" => round($plus25Per, 0), + "per75" => round($plus75Per, 0), + "empresa" => 0, + "indicador" => "VV" + ]); + + } + + // Salario Base + Variable por Viaje Anterior + $salBaseVarViajeAnt = $detalleAnt->where('sal_base_var_viaje_navieras', '>', '0')->pluck('sal_base_var_viaje_navieras'); + $salBaseVarViajeMinAnt = $salBaseVarViajeAnt->min(); + $salBaseVarViajeMaxAnt = $salBaseVarViajeAnt->max(); + $salBaseVarViajePromAnt = $salBaseVarViajeAnt->avg(); + $salBaseVarViajeMedAnt = $this->median($salBaseVarViajeAnt); + $salBaseVarViaje25PerAnt = $this->percentile(25,$salBaseVarViajeAnt); + $salBaseVarViaje75PerAnt = $this->percentile(75, $salBaseVarViajeAnt); + $countCasossalBaseVarViajeAnt = $detalle->where('variable_viaje', '>', '0')->unique('cabecera_encuesta_id')->count(); + + // Salario Base + Variable por Viaje + $salBaseVarViaje = $detalle->where('sal_base_var_viaje_navieras', '>', '0')->pluck('sal_base_var_viaje_navieras'); + $salBaseVarViajeMin = $salBaseVarViaje->min(); + $salBaseVarViajeMax = $salBaseVarViaje->max(); + $salBaseVarViajeProm = $salBaseVarViaje->avg(); + $salBaseVarViajeMed = $this->median($salBaseVarViaje); + $salBaseVarViaje25Per = $this->percentile(25,$salBaseVarViaje); + $salBaseVarViaje75Per = $this->percentile(75, $salBaseVarViaje); + $countCasossalBaseVarViaje = $detalle->where('variable_viaje', '>', '0')->unique('cabecera_encuesta_id')->count(); + + if($concepto == "SBVV"){ + $collection->push([ "concepto" => Lang::get('reportReport.concept_variable_pay_trip'), + "min_ant" => $salBaseVarViajeMinAnt, + "max_ant" => $salBaseVarViajeMaxAnt, + "prom_ant" => round($salBaseVarViajePromAnt, 0), + "med_ant" => round($salBaseVarViajeMedAnt, 0), + "per25_ant" => round($salBaseVarViaje25PerAnt, 0), + "per75_ant" => round($salBaseVarViaje75PerAnt, 0), + "min" => $salBaseVarViajeMin, + "max" => $salBaseVarViajeMax, + "prom" => round($salBaseVarViajeProm, 0), + "med" => round($salBaseVarViajeMed, 0), + "per25" => round($salBaseVarViaje25Per, 0), + "per75" => round($salBaseVarViaje75Per, 0), + "empresa" => 0, + "indicador" => "SBVV" + ]); + + } + + // Adicional Amarre + $adicionalAmarre = $detalle->where('adicional_amarre', '>', '0')->pluck('adicional_amarre'); + $amarreMin = $adicionalAmarre->min(); + $amarreMax = $adicionalAmarre->max(); + $amarreProm = $adicionalAmarre->avg(); + $amarreMed = $this->median($adicionalAmarre); + $amarre25Per = $this->percentile(25,$adicionalAmarre); + $amarre75Per = $this->percentile(75, $adicionalAmarre); + $countCasosAmarre = $detalle->where('adicional_amarre', '>', '0')->unique('cabecera_encuesta_id')->count(); + + // Adicional Tipo de Combustible + $adicionalTipoCombustible = $detalle->where('adicional_tipo_combustible', '>', '0')->pluck('adicional_tipo_combustible'); + $TipoCombustibleMin = $adicionalTipoCombustible->min(); + $TipoCombustibleMax = $adicionalTipoCombustible->max(); + $TipoCombustibleProm = $adicionalTipoCombustible->avg(); + $TipoCombustibleMed = $this->median($adicionalTipoCombustible); + $TipoCombustible25Per = $this->percentile(25,$adicionalTipoCombustible); + $TipoCombustible75Per = $this->percentile(75, $adicionalTipoCombustible); + $countCasosTipoCombustible = $detalle->where('adicional_tipo_combustible', '>', '0')->unique('cabecera_encuesta_id')->count(); + + // Adicional por disponiblidad/embarque + $adicionalEmbarque = $detalle->where('adicional_embarque', '>', '0')->pluck('adicional_embarque'); + $embarqueMin = $adicionalEmbarque->min(); + $embarqueMax = $adicionalEmbarque->max(); + $embarqueProm = $adicionalEmbarque->avg(); + $embarqueMed = $this->median($adicionalEmbarque); + $embarque25Per = $this->percentile(25,$adicionalEmbarque); + $embarque75Per = $this->percentile(75, $adicionalEmbarque); + $countCasosEmbarque = $detalle->where('adicional_embarque', '>', '0')->unique('cabecera_encuesta_id')->count(); + + // Adicional Carga + $adicionalCarga = $detalle->where('adicional_carga', '>', '0')->pluck('adicional_carga'); + $cargaMin = $adicionalCarga->min(); + $cargaMax = $adicionalCarga->max(); + $cargaProm = $adicionalCarga->avg(); + $cargaMed = $this->median($adicionalCarga); + $carga25Per = $this->percentile(25,$adicionalCarga); + $carga75Per = $this->percentile(75, $adicionalCarga); + $countCasosCarga = $detalle->where('adicional_carga', '>', '0')->unique('cabecera_encuesta_id')->count(); + + + // Total Adicional Anterior + + $adicionalAnualAnt = $detalleAnt->where('adicionales_navieras', '>', '0')->pluck('adicionales_navieras'); + $totalAdicionalMinAnt = $adicionalAnualAnt->min(); + $totalAdicionalMaxAnt = $adicionalAnualAnt->max(); + $totalAdicionalPromAnt = $adicionalAnualAnt->avg(); + $totalAdicionalMedAnt = $this->median($adicionalAnualAnt); + $totalAdicional25PerAnt = $this->percentile(25, $adicionalAnualAnt); + $totalAdicional75PerAnt = $this->percentile(75, $adicionalAnualAnt); + + // Total Adicional + $casosAdicionales = $detalle->where('adicionales_navieras', '>', '0')->unique('cabecera_encuesta_id')->count(); + $adicionalAnual = $detalle->where('adicionales_navieras', '>', '0')->pluck('adicionales_navieras'); + $totalAdicionalMin = $adicionalAnual->min(); + $totalAdicionalMax = $adicionalAnual->max(); + $totalAdicionalProm = $adicionalAnual->avg(); + $totalAdicionalMed = $this->median($adicionalAnual); + $totalAdicional25Per = $this->percentile(25, $adicionalAnual); + $totalAdicional75Per = $this->percentile(75, $adicionalAnual); + + if($concepto == "ATA"){ + $collection->push([ "concepto" => Lang::get('reportReport.concept_total_incentives'), + "min_ant" => $totalAdicionalMinAnt, + "max_ant" => $totalAdicionalMaxAnt, + "prom_ant" => round($totalAdicionalPromAnt, 0), + "med_ant" => round($totalAdicionalMedAnt, 0), + "per25_ant" => round($totalAdicional25PerAnt, 0), + "per75_ant" => round($totalAdicional75PerAnt, 0), + "min" => $totalAdicionalMin, + "max" => $totalAdicionalMax, + "prom" => round($totalAdicionalProm, 0), + "med" => round($totalAdicionalMed, 0), + "per25" => round($totalAdicional25Per, 0), + "per75" => round($totalAdicional75Per, 0), + "empresa" => 0, + "indicador" => "ATA" + ]); + + } + + //Bono + $bonos = $detalle->where('bono_anual', '>', '0')->pluck('bono_anual'); + $bonoMin = $bonos->min(); + $bonoMax = $bonos->max(); + $bonoProm = $bonos->avg(); + $bonoMed = $this->median($bonos); + $bono25Per = $this->percentile(25, $bonos); + $bono75Per = $this->percentile(75, $bonos); + + // Efectivo Total Anual Anteior + $detalleAnt = $detalleAnt->map(function($item){ + $item['efectivo_total_anual'] = $item['salario_base'] * 12 + + $item['aguinaldo']; + return $item; + }); + + $efectivoTotalMinAnt = $detalleAnt->pluck('efectivo_total_anual')->min(); + $efectivoTotalMaxAnt = $detalleAnt->pluck('efectivo_total_anual')->max(); + $efectivoTotalPromAnt = $detalleAnt->pluck('efectivo_total_anual')->avg(); + $efectivoTotalMedAnt = $this->median($detalleAnt->pluck('efectivo_total_anual')); + $efectivoTotal25PerAnt = $this->percentile(25, $detalleAnt->pluck('efectivo_total_anual')); + $efectivoTotal75PerAnt = $this->percentile(75, $detalleAnt->pluck('efectivo_total_anual')); + + // Efectivo Total Anual + $detalle = $detalle->map(function($item){ + $item['efectivo_total_anual'] = $item['salario_base'] * 12 + + $item['aguinaldo']; + return $item; + }); + + $efectivoTotalMin = $detalle->pluck('efectivo_total_anual')->min(); + $efectivoTotalMax = $detalle->pluck('efectivo_total_anual')->max(); + $efectivoTotalProm = $detalle->pluck('efectivo_total_anual')->avg(); + $efectivoTotalMed = $this->median($detalle->pluck('efectivo_total_anual')); + $efectivoTotal25Per = $this->percentile(25, $detalle->pluck('efectivo_total_anual')); + $efectivoTotal75Per = $this->percentile(75, $detalle->pluck('efectivo_total_anual')); + + $found = $detalle->where('cabecera_encuesta_id', $dbClienteEnc->cabecera_encuesta_id) + ->first(); + if($found){ + $efectivoTotalEmpresa = $found->efectivo_total_anual; + }else{ + $efectivoTotalEmpresa = 0; + } + + if($concepto == "ETA"){ + $collection->push([ "concepto" => Lang::get('reportReport.concept_annual_cash_total'), + "min_ant" => $efectivoTotalMinAnt, + "max_ant" => $efectivoTotalMaxAnt, + "prom_ant" => round($efectivoTotalPromAnt, 0), + "med_ant" => round($efectivoTotalMedAnt, 0), + "per25_ant" => round($efectivoTotal25PerAnt, 0), + "per75_ant" => round($efectivoTotal75PerAnt, 0), + "min" => $efectivoTotalMin, + "max" => $efectivoTotalMax, + "prom" => round($efectivoTotalProm, 0), + "med" => round($efectivoTotalMed, 0), + "per25" => round($efectivoTotal25Per, 0), + "per75" => round($efectivoTotal75Per, 0), + "empresa" => $efectivoTotalEmpresa, + "indicador" => "ETA" + ]); + + } + + //Beneficios + $beneficiosNavieras = $detalle->where('beneficios_navieras', '>', '0')->pluck('beneficios_navieras'); + $beneficiosMin = $beneficiosNavieras->min(); + $beneficiosMax = $beneficiosNavieras->max(); + $beneficiosProm = $beneficiosNavieras->avg(); + $beneficiosMed = $this->median($beneficiosNavieras); + $beneficios25Per = $this->percentile(25, $beneficiosNavieras); + $beneficios75Per = $this->percentile(75, $beneficiosNavieras); + $casosBeneficiosNavieras = $detalle->where('beneficios_navieras', '>', '0')->unique('cabecera_encuesta_id')->count(); + + //Aguinaldo Impactado + $aguinaldoImpMin = 0; + $aguinaldoImpMax = 0; + $aguinaldoImpProm = 0; + $aguinaldoImpMed = 0; + $aguinaldoImp25Per = 0; + $aguinaldoImp75Per = 0; + $aguinaldoImpEmpresa = 0; + + $detalle = $detalle->map(function($item){ + $item['aguinaldo_impactado'] = (($item['salario_base'] * 12) + + $item['gratificacion'] + + $item['bono_anual'] + + $item['adicionales_navieras'])/12; + return $item; + }); + + $aguinaldoImpMin = $detalle->pluck('aguinaldo_impactado')->min(); + $aguinaldoImpMax = $detalle->pluck('aguinaldo_impactado')->max(); + $aguinaldoImpProm = $detalle->pluck('aguinaldo_impactado')->avg(); + $aguinaldoImpMed = $this->median($detalle->pluck('aguinaldo_impactado')); + $aguinaldoImp25Per = $this->percentile(25, $detalle->pluck('aguinaldo_impactado')); + $aguinaldoImp75Per = $this->percentile(75, $detalle->pluck('aguinaldo_impactado')); + + $found = $detalle->where('cabecera_encuesta_id', $dbClienteEnc->cabecera_encuesta_id) + ->first(); + if($found){ + $aguinaldoImpEmpresa = $found->aguinaldo_impactado; + }else{ + $aguinaldoImpEmpresa = 0; + } + + + //Total Compensación anual + $detalle = $detalle->map(function($item){ + $item['total_comp_anual'] = $item['efectivo_total_anual'] + + $item['beneficios_navieras']; + return $item; + }); + + $totalCompAnualMin = $detalle->pluck('total_comp_anual')->min(); + $totalCompAnualMax = $detalle->pluck('total_comp_anual')->max(); + $totalCompAnualProm = $detalle->pluck('total_comp_anual')->avg(); + $totalCompAnualMed = $this->median($detalle->pluck('total_comp_anual')); + $totalCompAnual25Per = $this->percentile(25, $detalle->pluck('total_comp_anual')); + $totalCompAnual75Per = $this->percentile(75, $detalle->pluck('total_comp_anual')); + + $found = $detalle->where('cabecera_encuesta_id', $dbClienteEnc->cabecera_encuesta_id) + ->first(); + if($found){ + $totalCompAnualEmpresa = $found->total_comp_anual; + }else{ + $totalCompAnualEmpresa = 0; + } + + + } + public function segmentArrayFactory($segmentArray){ + foreach ($segmentArray as $value) { + + $response[] = array( Lang::get('reportReport.table_concepts') => $value["concepto"], + Lang::get('reportReport.table_occupants') => $value["casos"], + Lang::get('reportReport.table_cases') => $value["casos"], + Lang::get('reportReport.table_min') => $value["min"], + Lang::get('reportReport.table_perc25') => $value["per25"], + Lang::get('reportReport.table_average') => $value["prom"], + Lang::get('reportReport.table_median') => $value["med"], + Lang::get('reportReport.table_perc75') => $value["per75"], + Lang::get('reportReport.table_max') => $value["max"], + Lang::get('reportReport.table_company') => $value["empresa"] + ); + } + + return $response; + } + + public function getIdioma(){ + return $locale = app()->getLocale(); + } + + public function nivelReport(Request $request, $encuestasIDs, $muestraComision = false){ + + $periodo = $request->periodo; // periodo de la encuesta actual + + $rubro = $request->rubro_id; // rubro de la empresa del cliente + // cargo oficial para el informe + $nivel = $request->nivel_id; + if($this->getIdioma() == "es"){ + $dbNivel = Nivel::find($nivel); + }else{ + $dbNivel = Nivel_en::find($nivel); + } + + $dbEncuestadas = Cabecera_encuesta::whereIn('id', $encuestasIDs)->get(); + // conteo de encuestas según origen + $dbNacionales = 0; + $dbInternacionales = 0; + $dbUniverso = $dbEncuestadas->count(); + $encuestadasNacIds = collect(); + $encuestadasInterIds = collect(); + foreach ($dbEncuestadas as $key => $value) { + if($value->empresa->tipo == 0){ + $dbNacionales++; + $encuestadasNacIds[] = $value->id; + }else{ + $dbInternacionales++; + $encuestadasInterIds[] = $value->id; + }; + } + // Recuperamos los datos de los cargos proveídos por las empresas encuestadas + + $dbEncuestasNivel = Detalle_encuestas_nivel::whereIn('cabecera_encuesta_id', $encuestasIDs) + ->where('nivel_oficial_id', $nivel) + ->where('incluir', 1) + ->get(); + $dbEncuestasNivelNac = Detalle_encuestas_nivel::whereIn('cabecera_encuesta_id', $encuestadasNacIds) + ->where('nivel_oficial_id', $nivel) + ->where('incluir', 1) + ->get(); + $dbEncuestasNivelInter = Detalle_encuestas_nivel::whereIn('cabecera_encuesta_id', $encuestadasInterIds) + ->where('nivel_oficial_id', $nivel) + ->where('incluir', 1) + ->get(); + + // conteo de casos encontrados universo + $countCasos = $dbEncuestasNivel->where('cantidad_ocupantes', '>', '0') + ->unique('cabecera_encuesta_id') + ->count(); + // conteo de casos encontrados nacionales + $countCasosNac = $dbEncuestasNivelNac->where('cantidad_ocupantes', '>', '0') + ->unique('cabecera_encuesta_id') + ->count(); + // conteo de casos encontrados internacionales + $countCasosInter = $dbEncuestasNivelInter->where('cantidad_ocupantes', '>', '0') + ->unique('cabecera_encuesta_id') + ->count(); + + // conteo de casos encontrados + $countOcupantes = $dbEncuestasNivel->sum('cantidad_ocupantes'); + $universo = collect(); + $segmento = "universo"; + // Salario Base + $salariosBase = $dbEncuestasNivel->where('salario_base', '>', '0') + ->pluck('salario_base'); + $salarioMin = $salariosBase->min(); + $salarioMax = $salariosBase->max(); + $salarioProm = $salariosBase->avg(); + $salarioMed = $this->median($salariosBase); + $salario25Per = $this->percentile(25,$salariosBase); + $salario75Per = $this->percentile(75, $salariosBase); + + $this->pusherNivel( $universo, + $countCasos, + Lang::get('reportReport.concept_salary'), + $salarioMin, + $salarioMax, + $salarioProm, + $salarioMed, + $salario25Per, + $salario75Per, + $segmento, + $dbNivel); + + //Bono + $bonos = $dbEncuestasNivel->where('bono_anual', '>', '0') + ->pluck('bono_anual'); + $bonoMin = $bonos->min(); + $bonoMax = $bonos->max(); + $bonoProm = $bonos->avg(); + $bonoMed = $this->median($bonos); + $bono25Per = $this->percentile(25, $bonos); + $bono75Per = $this->percentile(75, $bonos); + + $countCasosBonos = $dbEncuestasNivel->where('bono_anual', '>', '0') + ->unique('cabecera_encuesta_id') + ->count(); + $this->pusherNivel( $universo, + $countCasosBonos, + Lang::get('reportReport.concept_bonus'), + $bonoMin, + $bonoMax, + $bonoProm, + $bonoMed, + $bono25Per, + $bono75Per, + $segmento, + $dbNivel); + + // Efectivo Total Anual + $efectivoAnual = $dbEncuestasNivel->where('salario_base', '>', '0') + ->pluck('total_efectivo_anual'); + + $efectivoTotalMin = $efectivoAnual->min(); + $efectivoTotalMax = $efectivoAnual->max(); + $efectivoTotalProm = $efectivoAnual->avg(); + $efectivoTotalMed = $this->median($efectivoAnual); + $efectivoTotal25Per = $this->percentile(25, $efectivoAnual); + $efectivoTotal75Per = $this->percentile(75, $efectivoAnual); + + $this->pusherNivel( $universo, + $countCasos, + Lang::get('reportReport.concept_bonus'), + $efectivoTotalMin, + $efectivoTotalMax, + $efectivoTotalProm, + $efectivoTotalMed, + $efectivoTotal25Per, + $efectivoTotal75Per, + $segmento, + $dbNivel); + + //$detalleUniverso = $this->nivelSegmentArrayFactory($universo); + $detalleUniverso = array(); + foreach ($universo as $value) { + $detalleUniverso[] = array( "Concepto"=>$value["concepto"], + "ocupantes"=> $countOcupantes, + "Casos"=>$value["casos"], + "Min"=>$value["min"], + "25 Percentil"=>$value["per25"], + "Promedio"=>$value["prom"], + "Mediana"=>$value["med"], + "75 Percentil"=>$value["per75"], + "Max"=>$value["max"], + "nivel"=>$value["nivel"] + ); + } + + $nacional = collect(); + $salarioBase = 0; + $salarioMin = 0; + $salarioMax = 0; + $salarioProm = 0; + $salarioMed = 0; + $salario25Per = 0; + $salario75Per = 0; + $bonos = 0; + $bonoMin = 0; + $bonoMax = 0; + $bonoProm = 0; + $bonoMed = 0; + $bono25Per = 0; + $bono75Per = 0; + $efectivoAnual = 0; + $efectivoTotalMin = 0; + $efectivoTotalMax = 0; + $efectivoTotalProm = 0; + $efectivoTotalMed = 0; + $efectivoTotal25Per = 0; + $efectivoTotal75Per = 0; + + $segmento = "nacional"; + $countOcupantesNac = $dbEncuestasNivelNac->sum('cantidad_ocupantes'); + // Salario Base + $salariosBase = $dbEncuestasNivelNac->where('salario_base', '>', '0')->pluck('salario_base'); + $salarioMin = $salariosBase->min(); + $salarioMax = $salariosBase->max(); + $salarioProm = $salariosBase->avg(); + $salarioMed = $this->median($salariosBase); + $salario25Per = $this->percentile(25,$salariosBase); + $salario75Per = $this->percentile(75, $salariosBase); + + $this->pusherNivel( $nacional, + $countCasosNac, + Lang::get('reportReport.concept_salary'), + $salarioMin, + $salarioMax, + $salarioProm, + $salarioMed, + $salario25Per, + $salario75Per, + $segmento, + $dbNivel); + + //Bono + $bonos = $dbEncuestasNivelNac->where('bono_anual', '>', '0')->pluck('bono_anual'); + $bonoMin = $bonos->min(); + $bonoMax = $bonos->max(); + $bonoProm = $bonos->avg(); + $bonoMed = $this->median($bonos); + $bono25Per = $this->percentile(25, $bonos); + $bono75Per = $this->percentile(75, $bonos); + + $countCasosBonosNac = $dbEncuestasNivelNac->where('bono_anual', '>', '0') + ->unique('cabecera_encuesta_id') + ->count(); + $this->pusherNivel( $nacional, + $countCasosBonosNac, + Lang::get('reportReport.concept_bonus'), + $bonoMin, + $bonoMax, + $bonoProm, + $bonoMed, + $bono25Per, + $bono75Per, + $segmento, + $dbNivel); + + // Efectivo Total Anual + $efectivoAnual = $dbEncuestasNivelNac->where('salario_base', '>', '0') + ->pluck('total_efectivo_anual'); + + $efectivoTotalMin = $efectivoAnual->min(); + $efectivoTotalMax = $efectivoAnual->max(); + $efectivoTotalProm = $efectivoAnual->avg(); + $efectivoTotalMed = $this->median($efectivoAnual); + $efectivoTotal25Per = $this->percentile(25, $efectivoAnual); + $efectivoTotal75Per = $this->percentile(75, $efectivoAnual); + + $this->pusherNivel( $nacional, + $countCasosBonosNac, + Lang::get('reportReport.concept_bonus'), + $efectivoTotalMin, + $efectivoTotalMax, + $efectivoTotalProm, + $efectivoTotalMed, + $efectivoTotal25Per, + $efectivoTotal75Per, + $segmento, + $dbNivel); + + //$detalleNacional = $this->nivelSegmentArrayFactory($nacional); + $detalleNacional = array(); + foreach ($nacional as $value) { + $detalleNacional[] = array( "Concepto"=>$value["concepto"], + "ocupantes"=> $countOcupantesNac, + "Casos"=>$value["casos"], + "Min"=>$value["min"], + "25 Percentil"=>$value["per25"], + "Promedio"=>$value["prom"], + "Mediana"=>$value["med"], + "75 Percentil"=>$value["per75"], + "Max"=>$value["max"], + "nivel"=>$value["nivel"] + ); + } + + $internacional = collect(); + $salarioBase = 0; + $salarioMin = 0; + $salarioMax = 0; + $salarioProm = 0; + $salarioMed = 0; + $salario25Per = 0; + $salario75Per = 0; + $bonos = 0; + $bonoMin = 0; + $bonoMax = 0; + $bonoProm = 0; + $bonoMed = 0; + $bono25Per = 0; + $bono75Per = 0; + $efectivoAnual = 0; + $efectivoTotalMin = 0; + $efectivoTotalMax = 0; + $efectivoTotalProm = 0; + $efectivoTotalMed = 0; + $efectivoTotal25Per = 0; + $efectivoTotal75Per = 0; + $countOcupantesInter = $dbEncuestasNivelInter->sum('cantidad_ocupantes'); + $segmento = "internacional"; + // Salario Base + $salariosBase = $dbEncuestasNivelInter->where('salario_base', '>', '0') + ->pluck('salario_base'); + $salarioMin = $salariosBase->min(); + $salarioMax = $salariosBase->max(); + $salarioProm = $salariosBase->avg(); + $salarioMed = $this->median($salariosBase); + $salario25Per = $this->percentile(25,$salariosBase); + $salario75Per = $this->percentile(75, $salariosBase); + + $this->pusherNivel( $internacional, + $countCasosInter, + Lang::get('reportReport.concept_salary'), + $salarioMin, + $salarioMax, + $salarioProm, + $salarioMed, + $salario25Per, + $salario75Per, + $segmento, + $dbNivel); + + //Bono + $bonos = $dbEncuestasNivelInter->where('bono_anual', '>', '0') + ->pluck('bono_anual'); + $bonoMin = $bonos->min(); + $bonoMax = $bonos->max(); + $bonoProm = $bonos->avg(); + $bonoMed = $this->median($bonos); + $bono25Per = $this->percentile(25, $bonos); + $bono75Per = $this->percentile(75, $bonos); + + $countCasosBonosInter = $dbEncuestasNivelInter->where('bono_anual', '>', '0') + ->unique('cabecera_encuesta_id') + ->count(); + $this->pusherNivel( $internacional, + $countCasosBonosInter, + Lang::get('reportReport.concept_bonus'), + $bonoMin, + $bonoMax, + $bonoProm, + $bonoMed, + $bono25Per, + $bono75Per, + $segmento, + $dbNivel); + + // Efectivo Total Anual + $efectivoAnual = $dbEncuestasNivelInter->where('salario_base', '>', '0') + ->pluck('total_efectivo_anual'); + + $efectivoTotalMin = $efectivoAnual->min(); + $efectivoTotalMax = $efectivoAnual->max(); + $efectivoTotalProm = $efectivoAnual->avg(); + $efectivoTotalMed = $this->median($efectivoAnual); + $efectivoTotal25Per = $this->percentile(25, $efectivoAnual); + $efectivoTotal75Per = $this->percentile(75, $efectivoAnual); + + $this->pusherNivel( $internacional, + $countCasosInter, + Lang::get('reportReport.concept_bonus'), + $efectivoTotalMin, + $efectivoTotalMax, + $efectivoTotalProm, + $efectivoTotalMed, + $efectivoTotal25Per, + $efectivoTotal75Per, + $segmento, + $dbNivel); + + //$detalleInternacional = $this->nivelSegmentArrayFactory($internacional); + $detalleInternacional = array(); + foreach ($internacional as $value) { + $detalleInternacional[] = array("Concepto"=>$value["concepto"], + "ocupantes"=> $countOcupantesInter, + "Casos"=>$value["casos"], + "Min"=>$value["min"], + "25 Percentil"=>$value["per25"], + "Promedio"=>$value["prom"], + "Mediana"=>$value["med"], + "75 Percentil"=>$value["per75"], + "Max"=>$value["max"], + "nivel"=>$value["nivel"] + ); + } + + $resultado = collect([ + "detalle_universo"=> $detalleUniverso, + "detalle_nacional"=> $detalleNacional, + "detalleInternacional"=>$detalleInternacional + ]); + return $resultado; + + } + public function pusherNivel(&$collection, $casos, $concepto, $min, $max, $prom, $med, $per25, $per75, $segmento, $dbNivel){ + + $collection->push([ "concepto"=> $concepto, + "casos"=> $casos, + "min"=>$min, + "max"=>$max, + "prom"=>$prom, + "med"=>$med, + "per25"=>$per25, + "per75"=> $per75, + "segmento"=>$segmento, + "nivel" => $dbNivel->descripcion + ]); + + } + + public function nivelSegmentArrayFactory($segmentArray){ + foreach ($segmentArray as $value) { + + $response[] = array( Lang::get('reportReport.table_concepts') => $value["concepto"], + Lang::get('reportReport.table_occupants') => $value["casos"], + Lang::get('reportReport.table_cases') => $value["casos"], + Lang::get('reportReport.table_min') => $value["min"], + Lang::get('reportReport.table_perc25') => $value["per25"], + Lang::get('reportReport.table_average') => $value["prom"], + Lang::get('reportReport.table_median') => $value["med"], + Lang::get('reportReport.table_perc75') => $value["per75"], + Lang::get('reportReport.table_max') => $value["max"] + ); + } + + return $response; + } + public function cargaDetalleNivel($item, &$itemArray){ + $variableAnual = false; + + foreach ($item as $key => $value) { + switch ($value["Concepto"]) { + case "Comision": + $this->cargadorNivel($value, $itemArray, false); + break; + case Lang::get('reportReport.concept_salary'): + $this->cargadorNivel($value, $itemArray, true); + break; + case Lang::get('reportReport.concept_annual_cash'): + $this->cargadorNivel($value, $itemArray, false); + break; + case Lang::get('reportReport.variable_pay'): + $variableAnual = true; + $this->cargadorNivel($value, $itemArray, false); + + break; + case Lang::get('reportReport.concept_total_incentives'): + $this->cargadorNivel($value, $itemArray, false); + break; + case Lang::get('reportReport.concept_bonus'): + $this->cargadorNivel($value, $itemArray, false); + break; + case Lang::get('reportReport.concept_total_compensation'): + $this->cargadorNivel($value, $itemArray, false); + break; + + } + } + + } + + public function cargadorNivel($value, &$itemArray, $casos){ + if($casos){ + array_push($itemArray, $value["ocupantes"]); + array_push($itemArray, $value["Casos"]); + } + array_push($itemArray, $value["Min"]); + array_push($itemArray, $value["25 Percentil"]); + array_push($itemArray, round($value["Promedio"], 2)); + array_push($itemArray, $value["Mediana"]); + array_push($itemArray, $value["75 Percentil"]); + array_push($itemArray, $value["Max"]); + } + + public function cargoReportAll(Request $request, $tipo, $muestraComision = true){ + + $dbEmpresa = Empresa::find($request->empresa_id); // datos de la empresa del cliente + if(Session::has('periodo')){ + $per = Session::get('periodo'); + $dbEncuesta = Cabecera_encuesta::where('empresa_id', $dbEmpresa->id) + ->whereRaw("periodo = '". $per."'") + ->first(); + }else{ + if(Auth::user()->is_admin){ + $dbEncuesta = Cabecera_encuesta::where('empresa_id', $dbEmpresa->id) + ->whereRaw("periodo = '". $request->periodo."'") + ->first(); + }else{ + $ficha = Ficha_dato::activa()->where('rubro_id', $dbEmpresa->rubro_id)->first(); + if($ficha){ + $per = $ficha->periodo; + }else{ + $per = null; + } + if($per){ + $dbEncuesta = Cabecera_encuesta::where('empresa_id', $dbEmpresa->id) + ->where("periodo",$per) + ->first(); + }else{ + if($dbEmpresa->rubro_id == '1'){ + $per = '06/2018'; + $dbEncuesta = Cabecera_encuesta::where('empresa_id', $dbEmpresa->id) + ->whereRaw("periodo = '". $per."'") + ->first(); + }else{ + $dbEncuesta = Cabecera_encuesta::where('empresa_id', $dbEmpresa->id) + ->whereRaw('id = (select max(id) from cabecera_encuestas where empresa_id = '. $dbEmpresa->id.')') + ->first(); + } + } + + + + } + } + + $periodo = $dbEncuesta->periodo; // periodo de la encuesta actual + + $rubro = $dbEmpresa->rubro_id; // rubro de la empresa del cliente + // cargo oficial para el informe + $cargo = $request->cargo_id; + if($this->getIdioma() == "es"){ + $dbCargo = Cargo::find($cargo); + }else{ + $dbCargo = Cargo_en::find($cargo); + } + + // empresas y cabeceras de encuestas de este periodo para empresas del rubro del cliente + $dbEncuestadas = Cabecera_encuesta::where('periodo', $periodo) + ->where('rubro_id', $rubro) + ->get(); + + $encuestadasIds = $dbEncuestadas->pluck("id"); // Ids de las encuestas para where in + // conteo de encuestas según origen + $dbNacionales = 0; + $dbInternacionales = 0; + $dbUniverso = $dbEncuestadas->count(); + $encuestadasNacIds = collect(); + $encuestadasInterIds = collect(); + foreach ($dbEncuestadas as $key => $value) { + if($value->empresa->tipo == 0){ + $dbNacionales++; + $encuestadasNacIds[] = $value->id; + }else{ + $dbInternacionales++; + $encuestadasInterIds[] = $value->id; + }; + } + // Recuperamos los datos de los cargos proveídos por las empresas encuestadas + $dbCargosEncuestas = Encuestas_cargo::whereIn('cabecera_encuesta_id', $encuestadasIds) + ->where('cargo_id', $cargo) + ->where('incluir', 1) + ->get(); + + $dbCargosEncuestasNac = Encuestas_cargo::whereIn('cabecera_encuesta_id', $encuestadasNacIds)->where('cargo_id', $cargo)->where('incluir', 1)->get(); + $dbCargosEncuestasInter = Encuestas_cargo::whereIn('cabecera_encuesta_id', $encuestadasInterIds)->where('cargo_id', $cargo)->where('incluir', 1)->get(); + + $cargosEncuestasIds = $dbCargosEncuestas->pluck('id'); + $cargosEncuestasNacIds = $dbCargosEncuestasNac->pluck('id'); + $cargosEncuestasInterIds = $dbCargosEncuestasInter->pluck('id'); + + // Recuperamos los datos de las encuestas + $dbDetalle = Detalle_encuesta::whereIn('encuestas_cargo_id', $cargosEncuestasIds)->get(); + // Datos de la encuesta llenada por el cliente + $dbClienteEnc = $dbDetalle->where('cabecera_encuesta_id', $dbEncuesta->id)->first(); + if(empty($dbClienteEnc)){ + // get the column names for the table + $columns = Schema::getColumnListing('detalle_encuestas'); + // create array where column names are keys, and values are null + $columns = array_fill_keys($columns, 0); + $dbClienteEnc = new Detalle_encuesta(); + $dbClienteEnc = $dbClienteEnc->newInstance($columns, true); + } + // conteo de casos encontrados + $countCasos = $dbDetalle->where('cantidad_ocupantes', '>', '0') + ->unique('cabecera_encuesta_id') + ->count(); + $countOcupantes = $dbDetalle->sum('cantidad_ocupantes'); + $countCasosGratif = $dbDetalle->where('cantidad_ocupantes', '>', '0') + ->where('gratificacion', '>', '0') + ->unique('cabecera_encuesta_id')->count(); + $countCasosAguinaldo = $dbDetalle->where('cantidad_ocupantes', '>', '0') + ->where('aguinaldo', '>', '0') + ->unique('cabecera_encuesta_id')->count(); + //$countCasosBeneficios = $dbDetalle->where('beneficios_bancos', '>', 0)->unique('cabecera_encuesta_id')->count(); + $countCasosBono = $dbDetalle->where('cantidad_ocupantes', '>', '0') + ->where('bono_anual', '>', 0) + ->unique('cabecera_encuesta_id')->count(); + + + + $universo = collect(); + $segmento = "universo"; + $this->segmenter( $universo, + $dbUniverso, + $dbDetalle, + $countCasos, + $countCasosGratif, + $countCasosAguinaldo, + // $countCasosBeneficios, + $countCasosBono, + $dbClienteEnc, + $rubro, + $segmento, + $dbCargo, + $muestraComision); + + // conteo de casos encontrados nacionales + $countCasosNac = $encuestadasNacIds->count(); + // buscamos los detalles de las encuestas + $dbDetalleNac = Detalle_encuesta::whereIn('encuestas_cargo_id', $cargosEncuestasNacIds)->get(); + // conteo de casos encontrados + $countOcupantesNac = $dbDetalleNac->sum('cantidad_ocupantes'); + $countCasos = $dbDetalleNac->where('cantidad_ocupantes', '>', '0') + ->unique('cabecera_encuesta_id') + ->count(); + $countCasosGratif = $dbDetalleNac->where('cantidad_ocupantes', '>', '0') + ->where('gratificacion', '>', '0') + ->unique('cabecera_encuesta_id')->count(); + $countCasosAguinaldo = $dbDetalleNac->where('cantidad_ocupantes', '>', '0') + ->where('aguinaldo', '>', '0') + ->unique('cabecera_encuesta_id')->count(); + + $countCasosBono = $dbDetalleNac->where('cantidad_ocupantes', '>', '0') + ->where('bono_anual', '>', 0) + ->unique('cabecera_encuesta_id') + ->count(); + + $nacional = collect(); + $segmento = "nacional"; + $this->segmenter( $nacional, + $countCasosNac, + $dbDetalleNac, + $countCasos, + $countCasosGratif, + $countCasosAguinaldo, + // $countCasosBeneficios, + $countCasosBono, + $dbClienteEnc, + $rubro, + $segmento, + $dbCargo, + $muestraComision); + + // conteo de casos encontrados internacionales + $countCasosInt = $encuestadasInterIds->count(); + // buscamos los detalles de las encuestas + $dbDetalleInt = Detalle_encuesta::whereIn('encuestas_cargo_id', $cargosEncuestasInterIds)->get(); + $countOcupantesInt = $dbDetalleInt->sum('cantidad_ocupantes'); + // conteo de casos encontrados + $countCasos = $dbDetalleInt->where('cantidad_ocupantes', '>', '0') + ->unique('cabecera_encuesta_id') + ->count(); + $countCasosGratif = $dbDetalleInt->where('cantidad_ocupantes', '>', '0') + ->where('gratificacion', '>', '0') + ->unique('cabecera_encuesta_id') + ->count(); + $countCasosAguinaldo = $dbDetalleInt->where('cantidad_ocupantes', '>', '0') + ->where('aguinaldo', '>', '0') + ->unique('cabecera_encuesta_id') + ->count(); + + //$countCasosBeneficios = $dbDetalleInt->where('beneficios_bancos', '>', 0)->unique('cabecera_encuesta_id')->count(); + + + + + $countCasosBono = $dbDetalleInt->where('cantidad_ocupantes', '>', '0') + ->where('bono_anual', '>', 0) + ->unique('cabecera_encuesta_id') + ->count(); + + $internacional = collect(); + $segmento = "internacional"; + + $this->segmenter( $internacional, + $countCasosInt, + $dbDetalleInt, + $countCasos, + $countCasosGratif, + $countCasosAguinaldo, + // $countCasosBeneficios, + $countCasosBono, + $dbClienteEnc, + $rubro, + $segmento, + $dbCargo, + $muestraComision); + if($tipo == "view"){ + if($request->tour){ + $tour = true; + }else{ + $tour = false; + } + + if($request->moneda == "local"){ + $convertir = false; + }else{ + $convertir = true; + } + + $ficha = Ficha_dato::where('periodo', $periodo)->first(); + if($ficha){ + $tipoCambio = $ficha->tipo_cambio; + }else{ + $tipoCambio = 5600; + } + + + return view('report.report')->with('dbCargo', $dbCargo) + ->with('dbEmpresa', $dbEmpresa) + ->with('universo', $universo) + ->with('nacional', $nacional) + ->with('internacional', $internacional) + ->with('countOcupantes', $countOcupantes) + ->with('countOcupantesNac', $countOcupantesNac) + ->with('countOcupantesInt', $countOcupantesInt) + ->with('tour', $tour) + ->with('tipoCambio', $tipoCambio) + ->with('periodo', $periodo) + ->with('convertir', $convertir); + + }elseif($tipo == "excel"){ + $periodo = implode('_', explode('/', $periodo)); + $cargoFileName = str_replace("-", "_", str_replace(" ", "_", $dbCargo->descripcion)); + $filename = 'Resultados_'.$periodo.'_'.$cargoFileName; + $detalleUniverso = $this->segmentArrayFactory($universo); + $detalleNacional = $this->segmentArrayFactory($nacional); + $detalleInternacional = $this->segmentArrayFactory($internacional); + + Excel::create($filename, function($excel) use($detalleUniverso, $detalleNacional, $detalleInternacional ) { + $excel->sheet("universo", function($sheet) use($detalleUniverso){ + $sheet->fromArray($detalleUniverso); + }); + $excel->sheet("nacional", function($sheet) use($detalleNacional){ + $sheet->fromArray($detalleNacional); + }); + $excel->sheet("internacional", function($sheet) use($detalleInternacional){ + $sheet->fromArray($detalleInternacional); + }); + + })->export('xlsx'); + return redirect()->route('resultados'); + }elseif ($tipo == "clubExcel") { + + $cargoFileName = str_replace("-", "_", str_replace(" ", "_", $dbCargo->descripcion)); + $filename = 'Resultados_'.$periodo.'_'.$cargoFileName; + $detalleUniverso = array(); + $detalleNacional = array(); + $detalleInternacional = array(); + foreach ($universo as $value) { + + $detalleUniverso[] = array( "Concepto"=>$value["concepto"], + "ocupantes"=> $countOcupantes, + "Casos"=>$value["casos"], + "Min"=>$value["min"], + "25 Percentil"=>$value["per25"], + "Promedio"=>$value["prom"], + "Mediana"=>$value["med"], + "75 Percentil"=>$value["per75"], + "Max"=>$value["max"], + "Empresa"=>$value["empresa"] + ); + } + foreach ($nacional as $value) { + $detalleNacional[] = array( "Concepto"=>$value["concepto"], + "ocupantes"=> $countOcupantesNac, + "Casos"=>$value["casos"], + "Min"=>$value["min"], + "25 Percentil"=>$value["per25"], + "Promedio"=>$value["prom"], + "Mediana"=>$value["med"], + "75 Percentil"=>$value["per75"], + "Max"=>$value["max"], + "Empresa"=>$value["empresa"] + ); + } + + foreach ($internacional as $value) { + $detalleInternacional[] = array( "Concepto"=>$value["concepto"], + "ocupantes"=> $countOcupantesInt, + "Casos"=>$value["casos"], + "Min"=>$value["min"], + "25 Percentil"=>$value["per25"], + "Promedio"=>$value["prom"], + "Mediana"=>$value["med"], + "75 Percentil"=>$value["per75"], + "Max"=>$value["max"], + "Empresa"=>$value["empresa"] + ); + } + $resultado = collect([ + "detalle_universo"=> $detalleUniverso, + "detalle_nacional"=> $detalleNacional, + "detalleInternacional"=>$detalleInternacional + ]); + + return $resultado; + } + + } + + public function cargoReportEspecial(Request $request, $tipo, $muestraComision = true){ + + $dbEmpresa = Empresa::find($request->empresa_id); // datos de la empresa del cliente + if(Session::has('periodo')){ + $per = Session::get('periodo'); + $dbEncuesta = Cabecera_encuesta::where('empresa_id', $dbEmpresa->id) + ->whereRaw("periodo = '". $per."'") + ->first(); + }else{ + if(Auth::user()->is_admin){ + $dbEncuesta = Cabecera_encuesta::where('empresa_id', $dbEmpresa->id) + ->whereRaw("periodo = '". $request->periodo."'") + ->first(); + }else{ + $ficha = Ficha_dato::activa()->where('rubro_id', $dbEmpresa->rubro_id)->first(); + if($ficha){ + $per = $ficha->periodo; + }else{ + $per = null; + } + if($per){ + $dbEncuesta = Cabecera_encuesta::where('empresa_id', $dbEmpresa->id) + ->where("periodo",$per) + ->first(); + }else{ + if($dbEmpresa->rubro_id == '1'){ + $per = '06/2018'; + $dbEncuesta = Cabecera_encuesta::where('empresa_id', $dbEmpresa->id) + ->whereRaw("periodo = '". $per."'") + ->first(); + }else{ + $dbEncuesta = Cabecera_encuesta::where('empresa_id', $dbEmpresa->id) + ->whereRaw('id = (select max(id) from cabecera_encuestas where empresa_id = '. $dbEmpresa->id.')') + ->first(); + } + } + + + + } + } + $periodo = $dbEncuesta->periodo; // periodo de la encuesta actual + + $rubro = $dbEmpresa->rubro_id; // rubro de la empresa del cliente + $subRubro = $dbEmpresa->sub_rubro_id; + // cargo oficial para el informe + $cargo = $request->cargo_id; + if($this->getIdioma() == "es"){ + $dbCargo = Cargo::find($cargo); + }else{ + $dbCargo = Cargo_en::find($cargo); + } + + // empresas y cabeceras de encuestas de este periodo para empresas del rubro del cliente + $dbEncuestadas = Cabecera_encuesta::where('periodo', $periodo) + ->where('rubro_id', $rubro) + ->where('sub_rubro_id', $subRubro) + ->get(); + + $encuestadasIds = $dbEncuestadas->pluck("id"); // Ids de las encuestas para where in + // conteo de encuestas según origen + $dbNacionales = 0; + $dbInternacionales = 0; + $dbUniverso = $dbEncuestadas->count(); + $encuestadasNacIds = collect(); + $encuestadasInterIds = collect(); + foreach ($dbEncuestadas as $key => $value) { + if($value->empresa->tipo == 0){ + $dbNacionales++; + $encuestadasNacIds[] = $value->id; + }else{ + $dbInternacionales++; + $encuestadasInterIds[] = $value->id; + }; + } + // Recuperamos los datos de los cargos proveídos por las empresas encuestadas + $dbCargosEncuestas = Encuestas_cargo::whereIn('cabecera_encuesta_id', $encuestadasIds) + ->where('cargo_id', $cargo) + ->where('incluir', 1) + ->get(); + + $dbCargosEncuestasNac = Encuestas_cargo::whereIn('cabecera_encuesta_id', $encuestadasNacIds)->where('cargo_id', $cargo)->where('incluir', 1)->get(); + $dbCargosEncuestasInter = Encuestas_cargo::whereIn('cabecera_encuesta_id', $encuestadasInterIds)->where('cargo_id', $cargo)->where('incluir', 1)->get(); + + $cargosEncuestasIds = $dbCargosEncuestas->pluck('id'); + $cargosEncuestasNacIds = $dbCargosEncuestasNac->pluck('id'); + $cargosEncuestasInterIds = $dbCargosEncuestasInter->pluck('id'); + + // Recuperamos los datos de las encuestas + $dbDetalle = Detalle_encuesta::whereIn('encuestas_cargo_id', $cargosEncuestasIds)->get(); + // Datos de la encuesta llenada por el cliente + $dbClienteEnc = $dbDetalle->where('cabecera_encuesta_id', $dbEncuesta->id)->first(); + if(empty($dbClienteEnc)){ + // get the column names for the table + $columns = Schema::getColumnListing('detalle_encuestas'); + // create array where column names are keys, and values are null + $columns = array_fill_keys($columns, 0); + $dbClienteEnc = new Detalle_encuesta(); + $dbClienteEnc = $dbClienteEnc->newInstance($columns, true); + } + // conteo de casos encontrados + $countCasos = $dbDetalle->where('cantidad_ocupantes', '>', '0') + ->unique('cabecera_encuesta_id') + ->count(); + $countOcupantes = $dbDetalle->sum('cantidad_ocupantes'); + $countCasosGratif = $dbDetalle->where('cantidad_ocupantes', '>', '0') + ->where('gratificacion', '>', '0') + ->unique('cabecera_encuesta_id')->count(); + $countCasosAguinaldo = $dbDetalle->where('cantidad_ocupantes', '>', '0') + ->where('aguinaldo', '>', '0') + ->unique('cabecera_encuesta_id')->count(); + //$countCasosBeneficios = $dbDetalle->where('beneficios_bancos', '>', 0)->unique('cabecera_encuesta_id')->count(); + $countCasosBono = $dbDetalle->where('cantidad_ocupantes', '>', '0') + ->where('bono_anual', '>', 0) + ->unique('cabecera_encuesta_id')->count(); + + + + $universo = collect(); + $segmento = "universo"; + $this->segmenter( $universo, + $dbUniverso, + $dbDetalle, + $countCasos, + $countCasosGratif, + $countCasosAguinaldo, + // $countCasosBeneficios, + $countCasosBono, + $dbClienteEnc, + $rubro, + $segmento, + $dbCargo, + $muestraComision); + + // conteo de casos encontrados nacionales + $countCasosNac = $encuestadasNacIds->count(); + // buscamos los detalles de las encuestas + $dbDetalleNac = Detalle_encuesta::whereIn('encuestas_cargo_id', $cargosEncuestasNacIds)->get(); + // conteo de casos encontrados + $countOcupantesNac = $dbDetalleNac->sum('cantidad_ocupantes'); + $countCasos = $dbDetalleNac->where('cantidad_ocupantes', '>', '0') + ->unique('cabecera_encuesta_id') + ->count(); + $countCasosGratif = $dbDetalleNac->where('cantidad_ocupantes', '>', '0') + ->where('gratificacion', '>', '0') + ->unique('cabecera_encuesta_id')->count(); + $countCasosAguinaldo = $dbDetalleNac->where('cantidad_ocupantes', '>', '0') + ->where('aguinaldo', '>', '0') + ->unique('cabecera_encuesta_id')->count(); + + $countCasosBono = $dbDetalleNac->where('cantidad_ocupantes', '>', '0') + ->where('bono_anual', '>', 0) + ->unique('cabecera_encuesta_id') + ->count(); + + $nacional = collect(); + $segmento = "nacional"; + $this->segmenter( $nacional, + $countCasosNac, + $dbDetalleNac, + $countCasos, + $countCasosGratif, + $countCasosAguinaldo, + // $countCasosBeneficios, + $countCasosBono, + $dbClienteEnc, + $rubro, + $segmento, + $dbCargo, + $muestraComision); + + // conteo de casos encontrados internacionales + $countCasosInt = $encuestadasInterIds->count(); + // buscamos los detalles de las encuestas + $dbDetalleInt = Detalle_encuesta::whereIn('encuestas_cargo_id', $cargosEncuestasInterIds)->get(); + $countOcupantesInt = $dbDetalleInt->sum('cantidad_ocupantes'); + // conteo de casos encontrados + $countCasos = $dbDetalleInt->where('cantidad_ocupantes', '>', '0') + ->unique('cabecera_encuesta_id') + ->count(); + $countCasosGratif = $dbDetalleInt->where('cantidad_ocupantes', '>', '0') + ->where('gratificacion', '>', '0') + ->unique('cabecera_encuesta_id') + ->count(); + $countCasosAguinaldo = $dbDetalleInt->where('cantidad_ocupantes', '>', '0') + ->where('aguinaldo', '>', '0') + ->unique('cabecera_encuesta_id') + ->count(); + + $countCasosBono = $dbDetalleInt->where('cantidad_ocupantes', '>', '0') + ->where('bono_anual', '>', 0) + ->unique('cabecera_encuesta_id') + ->count(); + + $internacional = collect(); + $segmento = "internacional"; + + $this->segmenter( $internacional, + $countCasosInt, + $dbDetalleInt, + $countCasos, + $countCasosGratif, + $countCasosAguinaldo, + // $countCasosBeneficios, + $countCasosBono, + $dbClienteEnc, + $rubro, + $segmento, + $dbCargo, + $muestraComision); + if($tipo == "view"){ + if($request->tour){ + $tour = true; + }else{ + $tour = false; + } + + if($request->moneda == "local"){ + $convertir = false; + }else{ + $convertir = true; + } + + $ficha = Ficha_dato::where('periodo', $periodo)->first(); + if($ficha){ + $tipoCambio = $ficha->tipo_cambio; + }else{ + $tipoCambio = 5600; + } + + + return view('report.report')->with('dbCargo', $dbCargo) + ->with('dbEmpresa', $dbEmpresa) + ->with('universo', $universo) + ->with('nacional', $nacional) + ->with('internacional', $internacional) + ->with('countOcupantes', $countOcupantes) + ->with('countOcupantesNac', $countOcupantesNac) + ->with('countOcupantesInt', $countOcupantesInt) + ->with('tour', $tour) + ->with('tipoCambio', $tipoCambio) + ->with('periodo', $periodo) + ->with('convertir', $convertir); + + }elseif($tipo == "excel"){ + $periodo = implode('_', explode('/', $periodo)); + $cargoFileName = str_replace("-", "_", str_replace(" ", "_", $dbCargo->descripcion)); + $filename = 'Resultados_'.$periodo.'_'.$cargoFileName; + $detalleUniverso = $this->segmentArrayFactory($universo); + $detalleNacional = $this->segmentArrayFactory($nacional); + $detalleInternacional = $this->segmentArrayFactory($internacional); + + Excel::create($filename, function($excel) use($detalleUniverso, $detalleNacional, $detalleInternacional ) { + $excel->sheet("universo", function($sheet) use($detalleUniverso){ + $sheet->fromArray($detalleUniverso); + }); + $excel->sheet("nacional", function($sheet) use($detalleNacional){ + $sheet->fromArray($detalleNacional); + }); + $excel->sheet("internacional", function($sheet) use($detalleInternacional){ + $sheet->fromArray($detalleInternacional); + }); + + })->export('xlsx'); + return redirect()->route('resultados'); + }elseif ($tipo == "clubExcel") { + + $cargoFileName = str_replace("-", "_", str_replace(" ", "_", $dbCargo->descripcion)); + $filename = 'Resultados_'.$periodo.'_'.$cargoFileName; + $detalleUniverso = array(); + $detalleNacional = array(); + $detalleInternacional = array(); + foreach ($universo as $value) { + + $detalleUniverso[] = array( "Concepto"=>$value["concepto"], + "ocupantes"=> $countOcupantes, + "Casos"=>$value["casos"], + "Min"=>$value["min"], + "25 Percentil"=>$value["per25"], + "Promedio"=>$value["prom"], + "Mediana"=>$value["med"], + "75 Percentil"=>$value["per75"], + "Max"=>$value["max"], + "Empresa"=>$value["empresa"] + ); + } + foreach ($nacional as $value) { + $detalleNacional[] = array( "Concepto"=>$value["concepto"], + "ocupantes"=> $countOcupantesNac, + "Casos"=>$value["casos"], + "Min"=>$value["min"], + "25 Percentil"=>$value["per25"], + "Promedio"=>$value["prom"], + "Mediana"=>$value["med"], + "75 Percentil"=>$value["per75"], + "Max"=>$value["max"], + "Empresa"=>$value["empresa"] + ); + } + + foreach ($internacional as $value) { + $detalleInternacional[] = array( "Concepto"=>$value["concepto"], + "ocupantes"=> $countOcupantesInt, + "Casos"=>$value["casos"], + "Min"=>$value["min"], + "25 Percentil"=>$value["per25"], + "Promedio"=>$value["prom"], + "Mediana"=>$value["med"], + "75 Percentil"=>$value["per75"], + "Max"=>$value["max"], + "Empresa"=>$value["empresa"] + ); + } + $resultado = collect([ + "detalle_universo"=> $detalleUniverso, + "detalle_nacional"=> $detalleNacional, + "detalleInternacional"=>$detalleInternacional + ]); + + return $resultado; + } + } + + public function cargoComparativoEspecial($encuesta, $encuestaAnt, $empresa, $cargo, $convertir, $contNuevo){ + // periodo de la encuesta actual + $periodo = $encuesta->periodo; + // periodo de la encuesta anterior + $periodoAnt = $encuestaAnt->periodo; + // rubro de la empresa del cliente + $rubro = $empresa->rubro_id; + $subRubro = $empresa->sub_rubro_id; + // tipo de cambio + if($convertir){ + $ficha = Ficha_dato::where('periodo', $periodo) + ->where('rubro_id', $rubro) + ->first(); + if($ficha){ + $tipoCambio = $ficha->tipo_cambio; + }else{ + $tipoCambio = 6000; + } + }else{ + $tipoCambio = 1; + } + // cargo oficial para el informe + if($this->getIdioma() == "es"){ + $dbCargo = Cargo::find($cargo); + }else{ + $dbCargo = Cargo_en::find($cargo); + } + + // empresas y cabeceras de encuestas de este periodo para empresas del rubro del cliente + $dbEncuestadas = Cabecera_encuesta::where('periodo', $periodo) + ->where('rubro_id', $rubro) + ->where('sub_rubro_id', $subRubro) + ->get(); + + $encuestadasIds = $dbEncuestadas->pluck("id"); // Ids de las encuestas para where in + // Recuperamos los datos de los cargos proveídos por las empresas encuestadas + $dbCargosEncuestas = Encuestas_cargo::whereIn('cabecera_encuesta_id', $encuestadasIds) + ->where('cargo_id', $cargo) + ->where('incluir', 1) + ->get(); + + $cargosEncuestasIds = $dbCargosEncuestas->pluck('id'); + + // Recuperamos los datos de las encuestas + if($contNuevo){ + $cargosNuevosID = Encuestas_cargo::whereIn('cabecera_encuesta_id', $encuestadasIds) + ->where('cargo_id', $cargo) + ->where('es_contrato_periodo', 1) + ->where('incluir', 1) + ->pluck('id'); + + $dbDetalle = Detalle_encuesta::whereIn('encuestas_cargo_id', $cargosNuevosID) + ->get(); + + $countCasos = $dbDetalle->where('cantidad_ocupantes', '>', '0') + ->whereIn('encuestas_cargo_id', $cargosNuevosID) + ->sum('cantidad_ocupantes'); + }else{ + $dbDetalle = Detalle_encuesta::whereIn('encuestas_cargo_id', $cargosEncuestasIds) + ->get(); + $countCasos = 0; + } + + + // Datos de la encuesta llenada por el cliente + $dbClienteEnc = $dbDetalle->where('cabecera_encuesta_id', $encuesta->id)->first(); + if(empty($dbClienteEnc)){ + // get the column names for the table + $columns = Schema::getColumnListing('detalle_encuestas'); + // create array where column names are keys, and values are null + $columns = array_fill_keys($columns, 0); + $dbClienteEnc = new Detalle_encuesta(); + $dbClienteEnc = $dbClienteEnc->newInstance($columns, true); + } + + // empresas y cabeceras de encuestas de este periodo para empresas del rubro del cliente + $dbEncuestadasAnt = Cabecera_encuesta::where('periodo', $periodoAnt) + ->where('rubro_id', $rubro) + ->where('sub_rubro_id', $subRubro) + ->get(); + + $encuestadasAntIds = $dbEncuestadasAnt->pluck("id"); // Ids de las encuestas para where in + // Recuperamos los datos de los cargos proveídos por las empresas encuestadas + $dbCargosEncuestasAnt = Encuestas_cargo::whereIn('cabecera_encuesta_id', $encuestadasAntIds) + ->where('cargo_id', $cargo) + ->where('incluir', 1) + ->get(); + + $cargosEncuestasAntIds = $dbCargosEncuestasAnt->pluck('id'); + + // Recuperamos los datos de las encuestas + $dbDetalleAnt = Detalle_encuesta::whereIn('encuestas_cargo_id', $cargosEncuestasAntIds)->get(); + // Datos de la encuesta llenada por el cliente + $dbClienteEncAnt = $dbDetalleAnt->where('cabecera_encuesta_id', $encuestaAnt->id)->first(); + if(empty($dbClienteEncAnt)){ + // get the column names for the table + $columns = Schema::getColumnListing('detalle_encuestas'); + // create array where column names are keys, and values are null + $columns = array_fill_keys($columns, 0); + $dbClienteEnc = new Detalle_encuesta(); + $dbClienteEnc = $dbClienteEnc->newInstance($columns, true); + } + + $salBase = collect(); + $this->segmenterComparativo( $salBase, + $dbDetalle, + $dbDetalleAnt, + $dbClienteEnc, + $dbClienteEncAnt, + "SB", + $dbCargo, + $countCasos + ); + $detalleSalarioBase = $this->comparativoArrayFactory($salBase, $tipoCambio, $contNuevo); + + + + $efectivoTotalAnual = collect(); + $this->segmenterComparativo( $efectivoTotalAnual, + $dbDetalle, + $dbDetalleAnt, + $dbClienteEnc, + $dbClienteEncAnt, + "ETA", + $dbCargo + ); + $detalleETA = $this->comparativoArrayFactory($efectivoTotalAnual, $tipoCambio); + + $variable = collect(); + $this->segmenterComparativo( $variable, + $dbDetalle, + $dbDetalleAnt, + $dbClienteEnc, + $dbClienteEncAnt, + "VAR", + $dbCargo + ); + $detalleVar = $this->comparativoArrayFactory($variable, $tipoCambio); + + $variableViaje = collect(); + $this->segmenterComparativo( $variableViaje, + $dbDetalle, + $dbDetalleAnt, + $dbClienteEnc, + $dbClienteEncAnt, + "VV", + $dbCargo + ); + $detalleVarViaje = $this->comparativoArrayFactory($variableViaje, $tipoCambio); + + $salBaseVarViaje = collect(); + $this->segmenterComparativo( $salBaseVarViaje, + $dbDetalle, + $dbDetalleAnt, + $dbClienteEnc, + $dbClienteEncAnt, + "SBVV", + $dbCargo + ); + $detalleSBVV = $this->comparativoArrayFactory($salBaseVarViaje, $tipoCambio); + + + $adicionalTotal = collect(); + $this->segmenterComparativo( $adicionalTotal, + $dbDetalle, + $dbDetalleAnt, + $dbClienteEnc, + $dbClienteEncAnt, + "ATA", + $dbCargo + ); + $detalleATA = $this->comparativoArrayFactory($adicionalTotal, $tipoCambio); + + $resultado = collect([ + "detalle_salario_base"=> $detalleSalarioBase, + "detalle_efectivo_total_anual" => $detalleETA, + "detalle_variable" => $detalleVar, + "detalle_variable_viaje" => $detalleVarViaje, + "detalle_sb_vv" => $detalleSBVV, + "detalle_adicional_total_anual" => $detalleATA + ]); + + return $resultado; + + + } + + public function comparativoArrayFactory($collection, $tipoCambio, $contNuevo = false){ + foreach ($collection as $value) { + + $brechaMin = $this->calcBrecha($value['min_ant'], $value["min"]); + $brecha25P = $this->calcBrecha($value['per25_ant'], $value["per25"]); + $brechaProm = $this->calcBrecha($value['prom_ant'], $value["prom"]); + $brechaMed = $this->calcBrecha($value['med_ant'], $value["med"]); + $brecha75P = $this->calcBrecha($value['per75_ant'], $value["per75"]); + $brechaMax = $this->calcBrecha($value['max_ant'], $value["max"]); + + if($value["min"]){ + $min = $value["min"]; + }else{ + $min = 0; + } + + if($value["max"]){ + $max = $value["max"]; + }else{ + $max = 0; + } + + if($tipoCambio > 1){ + $min = round(($min * 1000) / $tipoCambio, 2); + $per25 = round(($value["per25"] * 1000) / $tipoCambio, 2); + $prom = round(($value["prom"] * 1000) / $tipoCambio, 2); + $med = round(($value["med"] * 1000) / $tipoCambio, 2); + $per75 = round(($value["per75"] * 1000) / $tipoCambio, 2); + $max = round(($max * 1000) / $tipoCambio, 2); + }else{ + $per25 = $value["per25"]; + $prom = $value["prom"]; + $med = $value["med"]; + $per75 = $value["per75"]; + } + + if($contNuevo){ + $response[] = array( "Concepto" => $value["concepto"], + "Ocupantes" => $value["ocupantes"], + "Min" => $min, + "25 Percentil" => $per25, + "Promedio" => $prom, + "Mediana" => $med, + "75 Percentil" => $per75, + "Max" => $max, + "Empresa" => $value["empresa"] + ); + }else{ + if($value["min_ant"]){ + $minAnt = $value["min_ant"]; + }else{ + $minAnt = 0; + } - public function getPeriodos($id){ - // recuperamos todas las encuestas del primer rubro recuperado - $periodos = Cabecera_encuesta::where('rubro_id', $id)->get(); - // filtramos los periodos para el primer rubro recuperado - $periodos = $periodos->map(function($item){ - $rubro = $item->rubro->descripcion; - $periodo = $item->periodo; - $item['periodo_combo'] = $periodo.' - '.$rubro; - return $item; - })->unique('periodo')->pluck('periodo_combo', 'periodo'); - - return $periodos; + if($value["max_ant"]){ + $maxAnt = $value["max_ant"]; + }else{ + $maxAnt = 0; + } + + if($tipoCambio > 1){ + $minAnt = round(($minAnt * 1000)/$tipoCambio, 2); + $per25Ant = round(($value["per25_ant"] * 1000) / $tipoCambio, 2); + $promAnt = round(($value["prom_ant"] * 1000) / $tipoCambio, 2); + $medAnt = round(($value["med_ant"] * 1000) / $tipoCambio, 2); + $per75Ant = round(($value["per75_ant"] * 1000) / $tipoCambio, 2); + $maxAnt = round(($maxAnt * 1000) / $tipoCambio, 2); + }else{ + $per25Ant = $value["per25_ant"]; + $promAnt = $value["prom_ant"]; + $medAnt = $value["med_ant"]; + $per75Ant = $value["per75_ant"]; + } + $response[] = array( "Concepto" => $value["concepto"], + "Min Ant" => $minAnt, + "25P Ant" => $per25Ant, + "Prom Ant" => $promAnt, + "Med Ant" => $medAnt, + "75P Ant" => $per75Ant, + "Max Ant" => $maxAnt, + "Min" => $min, + "25 Percentil" => $per25, + "Promedio" => $prom, + "Mediana" => $med, + "75 Percentil" => $per75, + "Max" => $max, + "Empresa" => $value["empresa"], + "Brecha Min" => $brechaMin, + "Brecha 25P" => $brecha25P, + "Brecha Prom" => $brechaProm, + "Brecha Med" => $brechaMed, + "Brecha 75P" => $brecha75P, + "Brecha Max" => $brechaMax, + ); + } + + } + + return $response; + } + + public function calcBrecha($anterior, $actual){ + if($anterior == 0){ + if($actual > 0){ + $brecha = -100; + }else{ + $brecha = 0; + } + }else{ + $brecha = round((($actual/$anterior) -1)*100, 2); + } + + return $brecha; + } + + public function median($arr) { + if($arr->count() <= 0){ + return 0; + } + $sorted = $arr->sort()->values(); + $count = count($sorted); //total numbers in array + $middleval = floor(($count-1)/2); // find the middle value, or the lowest middle value + if($count % 2) { // odd number, middle is the median + $median = $sorted[$middleval]; + } else { // even number, calculate avg of 2 medians + $low = $sorted[$middleval]; + $high = $sorted[$middleval+1]; + $median = (($low+$high)/2); + } + return $median; + } + + public function percentile($percentile, $arr) { + if($arr->count() <= 1){ + return 0; + } + $sorted = $arr->sort()->values(); + + $count = $sorted->count(); + + // percentil.exc -- método de cálculo de la fórmula percentil.exc en excel + //$perN = (($count+1) * ($percentile/100)); + + // percentil.inc -- método de cálculo de la fórmula percentil.inc en excel + $perN = (($count-1)* ($percentile/100) + 1 ); + + if (is_int($perN)) { + $result = $sorted[$perN - 1]; + } + else { + $int = floor($perN); + $dec = $perN - $int; + + $result = $dec * ($sorted[$int] - $sorted[$int - 1]) + $sorted[$int-1]; + } + return $result; + } + + public function getCargosHomologados($rubro, $periodo){ + $empresasId = Empresa::where('rubro_id', $rubro)->pluck('id'); + $encuestasRubro = Cabecera_encuesta::whereIn('empresa_id', $empresasId)->where('periodo', $periodo)->pluck('id'); + $encuestasCargos = Encuestas_cargo::whereIn('cabecera_encuesta_id', $encuestasRubro) + ->whereNotNull('cargo_id') + ->where('incluir', 1) + ->get(); + $cargosEmpresas = collect(); + foreach ($encuestasCargos as $encuestaCargo) { + if($encuestaCargo->detalleEncuestas){ + if($encuestaCargo->detalleEncuestas->cantidad_ocupantes > 0){ + $cargosEmpresas->push(["cargo"=> $encuestaCargo->cargo_id, "empresa"=>$encuestaCargo->cabeceraEncuestas->empresa_id]); + } + } + } + + $groupedCargosEmpresas = $cargosEmpresas->groupBy('cargo'); + + // lista de cargos existentes en la encuesta (exlcluyendo los que hay en una sola empresa) + $cargosIds = $groupedCargosEmpresas->map(function($item, $key){ + if($item->groupBy('empresa')->count() > 1){ + return $key; + } + })->values()->reject(function($value, $key){ + return is_null($value); + })->sort(); + + return $cargosIds; } } \ No newline at end of file diff --git a/database/migrations/2019_08_25_110554_add_variable_viaje_to_detalle_encuestas_table.php b/database/migrations/2019_08_25_110554_add_variable_viaje_to_detalle_encuestas_table.php new file mode 100644 index 0000000..a37a770 --- /dev/null +++ b/database/migrations/2019_08_25_110554_add_variable_viaje_to_detalle_encuestas_table.php @@ -0,0 +1,30 @@ +integer('variable_viaje')->default(0)->after('plus_rendimiento'); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + // + } +} diff --git a/database/migrations/2018_04_26_133447_create_ficha_datos_table.php b/database/migrations/exclude/2018_04_26_133447_create_ficha_datos_table.php similarity index 100% rename from database/migrations/2018_04_26_133447_create_ficha_datos_table.php rename to database/migrations/exclude/2018_04_26_133447_create_ficha_datos_table.php diff --git a/database/migrations/2018_09_12_160252_create_file_attachment_table.php b/database/migrations/exclude/2018_09_12_160252_create_file_attachment_table.php similarity index 100% rename from database/migrations/2018_09_12_160252_create_file_attachment_table.php rename to database/migrations/exclude/2018_09_12_160252_create_file_attachment_table.php diff --git a/database/migrations/2019_03_04_110846_create_beneficios_periodos_table.php b/database/migrations/exclude/2019_03_04_110846_create_beneficios_periodos_table.php similarity index 100% rename from database/migrations/2019_03_04_110846_create_beneficios_periodos_table.php rename to database/migrations/exclude/2019_03_04_110846_create_beneficios_periodos_table.php diff --git a/database/migrations/2019_04_25_214748_create_sair_pruebas_table.php b/database/migrations/exclude/2019_04_25_214748_create_sair_pruebas_table.php similarity index 100% rename from database/migrations/2019_04_25_214748_create_sair_pruebas_table.php rename to database/migrations/exclude/2019_04_25_214748_create_sair_pruebas_table.php diff --git a/packages/elsoftpy/Utiles/src/Flash/FlashNotifier.php b/packages/elsoftpy/Utiles/src/Flash/FlashNotifier.php index 3885242..52a8dcf 100644 --- a/packages/elsoftpy/Utiles/src/Flash/FlashNotifier.php +++ b/packages/elsoftpy/Utiles/src/Flash/FlashNotifier.php @@ -174,7 +174,7 @@ public function elsoftMessage($code, $modal = false) break; case 10: if($modal){ - $this->overlay('El Reporte no está disponible por el momento
Favor comuníquese con al consultora para mayor información', 'info', 'S&B - 10'); + $this->overlay('El Reporte no está disponible por el momento
Favor comuníquese con la consultora para mayor información', 'info', 'S&B - 10'); }else{ $this->info('El Reporte no está disponible por el momento
Favor comuníquese con al consultora para mayor información', 'info'); } diff --git a/resources/lang/en/reportReport.php b/resources/lang/en/reportReport.php index 413adc8..25bd073 100644 --- a/resources/lang/en/reportReport.php +++ b/resources/lang/en/reportReport.php @@ -38,6 +38,7 @@ "concept_13month_impacted" => "13th Month - Impacted by: (annual base salary + additional fixed + annual total short-term incentives)/12", "concept_total_compensation"=> "Annual Total Compensation", "concept_variable_pay" => "Annual Variable Pay", + "concept_variable_pay_trip" => "Variable Pay per Trip", "concept_mooring" => "Annual Additional: mooring", "concept_fuel_type" => "Annual Additional: fuel type", "concept_shipping" => "Annual Additional: available shipping", diff --git a/resources/lang/es/reportReport.php b/resources/lang/es/reportReport.php index 2cca7c5..58d66c2 100644 --- a/resources/lang/es/reportReport.php +++ b/resources/lang/es/reportReport.php @@ -38,6 +38,7 @@ "concept_13month_impacted" => "Aguinaldo Impactado por Adicional, Gratificación y Bono", "concept_total_compensation"=> "Compensación Anual Total", "concept_variable_pay" => "Variable Anual", + "concept_variable_pay_trip" => "Variable por Viaje", "concept_mooring" => "Adicional por Amarre", "concept_fuel_type" => "Adicional por Tipo de Combustible", "concept_shipping" => "Adicional por Disponibilidad/Emarque", diff --git a/resources/views/beneficios/complete.blade.php b/resources/views/beneficios/complete.blade.php index 541f3a5..f23aeb0 100644 --- a/resources/views/beneficios/complete.blade.php +++ b/resources/views/beneficios/complete.blade.php @@ -23,10 +23,13 @@ @foreach ($dbDetalle as $detalle)

- {{$loop->iteration}} ) {{$detalle->pregunta}} + @if (App::isLocale('en')) + {{$detalle->orden}} ) {{$detalle->pregunta_en}} + @else + {{$loop->iteration}} ) {{$detalle->pregunta}} + @endif +

- - @if($detalle->cerrada != 'S')
@if($dbData->detalleBeneficio->where('beneficios_pregunta_id', $detalle->id)->first()) @@ -113,20 +116,25 @@ @php $existe = $dbData->detalleBeneficio->where('beneficios_pregunta_id', $detalle->id)->first(); $opcionId = $dbData->detalleBeneficio->where('beneficios_pregunta_id', $detalle->id)->where('beneficios_opcion_id', $option->id)->first(); + if(App::isLocale('en')){ + $opcion = $option->opcion_en; + }else{ + $opcion = $option->opcion; + } @endphp @if($opcionId) @if ($opcionId->beneficios_opcion_id == $option->id)


@else


@endif @@ -134,7 +142,7 @@


@endif @@ -144,14 +152,21 @@
+ @php + if(App::isLocale('en')){ + $english = true; + }else{ + $english = false; + } + @endphp
-

{{$item->titulo}}

+ @if (!$english) +

{{$item->titulo_en}}

+ @else +

{{$item->titulo}}

+ @endif
@@ -50,7 +66,12 @@
  • diff --git a/resources/views/beneficios_report/composicion_charts.blade.php b/resources/views/beneficios_report/composicion_charts.blade.php index c5a7596..8876f1c 100644 --- a/resources/views/beneficios_report/composicion_charts.blade.php +++ b/resources/views/beneficios_report/composicion_charts.blade.php @@ -18,14 +18,31 @@ @endsection @section('content') -
    Fecha de Corte:{{$encuesta->periodo}}
    + @if (App::isLocale('en')) +
    Date:{{$encuesta->periodo}}
    + @else +
    Fecha de Corte:{{$encuesta->periodo}}
    + @endif +
    + @php + if(App::isLocale('en')){ + $english = true; + }else{ + $english = false; + } + @endphp
    -

    {{$item->titulo}}

    + @if (!$english) +

    {{$item->titulo_en}}

    + @else +

    {{$item->titulo}}

    + @endif +
    @@ -33,7 +50,12 @@
    • -
      Composición de la Muestra
      + @if ($english) +
      Universe composition
      + @else +
      Composición de la Muestra
      + @endif +
        @@ -41,9 +63,16 @@
      • - + @if ($english) + + @else + + @endif +
      • diff --git a/resources/views/beneficios_report/index.blade.php b/resources/views/beneficios_report/index.blade.php index b3d07a7..fd41e4e 100644 --- a/resources/views/beneficios_report/index.blade.php +++ b/resources/views/beneficios_report/index.blade.php @@ -33,14 +33,25 @@
        + @php + if(App::isLocale('en')){ + $descripcion = $element->descripcion_en; + $titulo = $element->titulo_en; + $english = true; + }else{ + $descripcion = $element->descripcion; + $titulo = $element->titulo; + $english = false; + } + @endphp
        - {{$element->descripcion}} + {{$descripcion}}
        • - {{$element->titulo}} + {{$titulo}}
            @@ -53,8 +64,7 @@
            - +
            @else @@ -62,7 +72,11 @@
            - + @else + + @endif
            diff --git a/resources/views/clientes/home.blade.php b/resources/views/clientes/home.blade.php index 9989c7b..5abb098 100644 --- a/resources/views/clientes/home.blade.php +++ b/resources/views/clientes/home.blade.php @@ -76,9 +76,11 @@
            @lang('homepage.modal_survey')
            @if($dbEncuesta) @if($dbEncuestaAnt) - - {{$dbEncuestaOld->periodo}} - + @if ($dbEncuestaOld) + + {{$dbEncuestaOld->periodo}} + + @endif {{$dbEncuestaAnt->periodo}} @@ -105,9 +107,11 @@
            @lang('homepage.modal_survey')
            @if($dbEncuesta) @if($dbEncuestaAnt) - - {{$dbEncuestaOld->periodo}} - + @if ($dbEncuestaOld) + + {{$dbEncuestaOld->periodo}} + + @endif {{$dbEncuestaAnt->periodo}} diff --git a/resources/views/encuestas/clonar_bancard.blade.php b/resources/views/encuestas/clonar_bancard.blade.php new file mode 100644 index 0000000..4caea72 --- /dev/null +++ b/resources/views/encuestas/clonar_bancard.blade.php @@ -0,0 +1,55 @@ +@extends('layout') +@section('content') +
            +
            +
            +

            Clonar Periodo Bancard

            +
            +
            +
            +
            +
            + + +
            +
            + +
            + +
            +
            +
            +
            +
            + @if($toast) +
            + @endif +@stop +@push('scripts') + +@endpush \ No newline at end of file diff --git a/resources/views/encuestas/clonar_puente.blade.php b/resources/views/encuestas/clonar_puente.blade.php new file mode 100644 index 0000000..16ae5a1 --- /dev/null +++ b/resources/views/encuestas/clonar_puente.blade.php @@ -0,0 +1,55 @@ +@extends('layout') +@section('content') +
            +
            +
            +

            Clonar Periodo Puente

            +
            +
            +
            +
            +
            + + +
            +
            + +
            + +
            +
            +
            +
            +
            + @if($toast) +
            + @endif +@stop +@push('scripts') + +@endpush \ No newline at end of file diff --git a/resources/views/encuestas_cargos/show.blade.php b/resources/views/encuestas_cargos/show.blade.php index 403707d..b2e63f9 100644 --- a/resources/views/encuestas_cargos/show.blade.php +++ b/resources/views/encuestas_cargos/show.blade.php @@ -103,11 +103,7 @@ "width":"15%", "orderable": false, "searchable": false, - }, - { - targets:[6], - visible: false - } + } @@ -145,7 +141,7 @@ e.preventDefault(); var id = $(this).closest("tr").find("input[name=cargo_id]").val(); var cargoId = $(this).closest("tr").find("#cargos").val(); - console.log(cargoId); + console.log(id); $.post("{{route('homologacion.store')}}", {"id": id, "cargo_id": cargoId, "_token": "{{csrf_token()}}"}, function(data){ alert(data); diff --git a/resources/views/layout.blade.php b/resources/views/layout.blade.php index a6d96f8..373b08c 100644 --- a/resources/views/layout.blade.php +++ b/resources/views/layout.blade.php @@ -62,6 +62,12 @@
          • Encuestas
          • +
          • + Clonar Bancard +
          • +
          • + Clonar Puente +
          • Importar/Exportar
          • @@ -185,6 +191,12 @@
            +
          • + Clonar Puente +
          • +
          • + Clonar Bancard +
          • Importar/Exportar
          • diff --git a/resources/views/layouts/report.blade.php b/resources/views/layouts/report.blade.php index 76a7b13..576ac8b 100644 --- a/resources/views/layouts/report.blade.php +++ b/resources/views/layouts/report.blade.php @@ -40,7 +40,11 @@
          • Encuestas
          • Preguntas
          - + @if(Auth::check()) @if(Auth::user()->is_admin)
          diff --git a/resources/views/report/cargos_club.blade.php b/resources/views/report/cargos_club.blade.php index 8d10e9f..48d0bbd 100644 --- a/resources/views/report/cargos_club.blade.php +++ b/resources/views/report/cargos_club.blade.php @@ -14,12 +14,13 @@
          +
          -
          +
          @@ -29,7 +30,18 @@ @endif
          - +
          +
          +
          + + + + @if (session('especial')) + + @endif +
          diff --git a/routes/web.php b/routes/web.php index 751d840..e97752e 100644 --- a/routes/web.php +++ b/routes/web.php @@ -44,6 +44,15 @@ 'uses'=> 'EncuestasController@clonePoll', 'as'=> 'encuestas.clone' ]); + + Route::get('clone_bancard', 'EncuestasController@cloneBancard')->name('clonar.bancard'); + + Route::post('clone_bancard', 'EncuestasController@clonarBancard')->name('clonar.bancardAction'); + + Route::get('clone_puente', 'EncuestasController@clonePuente')->name('clonar.puente'); + + Route::post('clone_puente', 'EncuestasController@clonarPuente')->name('clonar.puenteAction'); + Route::post('encuestas_new', [ 'uses'=> 'EncuestasController@storeNew', 'as'=> 'encuestas.storeNew'