diff --git a/app/Http/Controllers/BeneficiosController.php b/app/Http/Controllers/BeneficiosController.php index 7c4bc22..9d287ef 100644 --- a/app/Http/Controllers/BeneficiosController.php +++ b/app/Http/Controllers/BeneficiosController.php @@ -148,7 +148,7 @@ public function edit($id) $dbDetalle = beneficios_pregunta::where('rubro_id', $rubro) ->orWhere('rubro_id', null) ->orderBy('orden') - ->activa() + ->where('activo', 1) ->get(); $dbMarca = Autos_marca::pluck('descripcion', 'id'); $opcioneses = collect(); diff --git a/app/Http/Controllers/HomeController.php b/app/Http/Controllers/HomeController.php index 5c0108b..6cff641 100644 --- a/app/Http/Controllers/HomeController.php +++ b/app/Http/Controllers/HomeController.php @@ -70,7 +70,7 @@ public function index() }else{ $dbEmpresa = $user->empresa; - $ficha = Ficha_dato::where('rubro_id', $dbEmpresa->rubro_id)->activa()->first(); + $ficha = Ficha_dato::where('rubro_id', $dbEmpresa->rubro_id)->where('activo', 1)->first(); if($ficha){ $dbEncuesta = Cabecera_encuesta::where('empresa_id', $dbEmpresa->id) diff --git a/app/Http/Controllers/ReporteController.php b/app/Http/Controllers/ReporteController.php index 1a6f46d..cd9b58a 100644 --- a/app/Http/Controllers/ReporteController.php +++ b/app/Http/Controllers/ReporteController.php @@ -149,7 +149,7 @@ public function ficha($id){ } }else{ - $dbFicha = Ficha_dato::activa() + $dbFicha = Ficha_dato::where('activo', 1) ->where('rubro_id', $rubro) ->first(); @@ -328,7 +328,7 @@ public function cargoReportClubExcel(Request $request){ $per = Session::get('periodo'); $dbEncuesta = Cabecera_encuesta::where('empresa_id', $dbEmpresa->id)->whereRaw("periodo = '". $per."'")->first(); }else{ - $dbFicha = Ficha_dato::activa() + $dbFicha = Ficha_dato::where('activo', 1) ->where('rubro_id', $dbEmpresa->rubro_id) ->first(); if($dbFicha){ diff --git a/app/Http/Controllers/ReporteController_bkp.php b/app/Http/Controllers/ReporteController_bkp.php index 5f485c7..4f22c40 100644 --- a/app/Http/Controllers/ReporteController_bkp.php +++ b/app/Http/Controllers/ReporteController_bkp.php @@ -174,7 +174,7 @@ public function ficha($id){ ->where('periodo', $per) ->first(); }else{ - $dbFicha = Ficha_dato::activa()->where('rubro_id', $rubro)->first(); + $dbFicha = Ficha_dato::where('activo', 1)->where('rubro_id', $rubro)->first(); if($dbFicha){ $periodo = $dbFicha->periodo; $dbEncuesta = Cabecera_encuesta::where('empresa_id', $id)->where('periodo', $periodo)->first(); @@ -3069,7 +3069,7 @@ private function cargoReportAll(Request $request, $tipo, $muestraComision = true ->first(); //dd($dbEncuesta, $request->periodo); }else{ - $ficha = Ficha_dato::activa()->where('rubro_id', $dbEmpresa->rubro_id)->first(); + $ficha = Ficha_dato::where('activo', 1)->where('rubro_id', $dbEmpresa->rubro_id)->first(); if($ficha){ $per = $ficha->periodo; }else{ diff --git a/app/Traits/ReportTrait.php b/app/Traits/ReportTrait.php index f6eb7b1..7fc3f89 100644 --- a/app/Traits/ReportTrait.php +++ b/app/Traits/ReportTrait.php @@ -2399,7 +2399,7 @@ public function cargoReportAll(Request $request, $tipo, $muestraComision = true) ->whereRaw("periodo = '". $request->periodo."'") ->first(); }else{ - $ficha = Ficha_dato::activa()->where('rubro_id', $dbEmpresa->rubro_id)->first(); + $ficha = Ficha_dato::where('activo', 1)->where('rubro_id', $dbEmpresa->rubro_id)->first(); if($ficha){ $per = $ficha->periodo; }else{ @@ -2731,7 +2731,7 @@ public function cargoReportEspecial(Request $request, $tipo, $muestraComision = ->whereRaw("periodo = '". $request->periodo."'") ->first(); }else{ - $ficha = Ficha_dato::activa()->where('rubro_id', $dbEmpresa->rubro_id)->first(); + $ficha = Ficha_dato::where('activo', 1)->where('rubro_id', $dbEmpresa->rubro_id)->first(); if($ficha){ $per = $ficha->periodo; }else{