Skip to content

Commit

Permalink
prevent using scope activa()
Browse files Browse the repository at this point in the history
  • Loading branch information
elsoftpy committed Oct 22, 2024
1 parent 971158a commit 931063b
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion app/Http/Controllers/BeneficiosController.php
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
2 changes: 1 addition & 1 deletion app/Http/Controllers/HomeController.php
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions app/Http/Controllers/ReporteController.php
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ public function ficha($id){
}

}else{
$dbFicha = Ficha_dato::activa()
$dbFicha = Ficha_dato::where('activo', 1)
->where('rubro_id', $rubro)
->first();

Expand Down Expand Up @@ -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){
Expand Down
4 changes: 2 additions & 2 deletions app/Http/Controllers/ReporteController_bkp.php
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down Expand Up @@ -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{
Expand Down
4 changes: 2 additions & 2 deletions app/Traits/ReportTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -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{
Expand Down Expand Up @@ -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{
Expand Down

0 comments on commit 931063b

Please sign in to comment.