trabajando2

This commit is contained in:
2025-07-18 17:56:39 +02:00
parent f73472c729
commit ad8e0ac75b
5 changed files with 149 additions and 0 deletions

View File

@ -18,5 +18,57 @@ class TipoPapelGenericoModel extends \App\Models\BaseModel
];
protected $returnType = "App\Entities\Configuracion\TipoPapelGenerico";
public function getTiposPapel($data)
{
$builder = $this->db
->table($this->table . " t1")
->select(
"t1.id as id, t1.clave AS nombre",
// for debug, t2.nombre AS nombre_papel_impresion, t4.nombre AS maquina_nombre, t5.uso AS tarifa_uso, t5.tipo AS tarifa_tipo"
)
->join("lg_papel_generico t2", "t2.tipo_papel_generico_id = t1.id", "inner")
->join("lg_papel_impresion t3", "t3.papel_generico_id = t2.id", "inner")
->join("lg_maquina_papel_impresion t4", "t4.papel_impresion_id = t3.id", "inner")
->join("lg_maquinas t5", "t4.maquina_id = t5.id", "inner")
->join("lg_maquinas_tarifas_impresion t6", "t6.maquina_id = t5.id", "inner")
->where("t2.is_deleted", 0)
->where("t2.show_in_client", 1)
->where("t3.is_deleted", 0)
->where("t3.isActivo", 1)
->where("t3.use_in_client", 1)
->where("t4.active", 1)
->where("t5.is_deleted", 0)
->where("t5.min <= ", $data['tirada'] ?? 0)
->where("t5.max >= ", $data['tirada'] ?? 0)
->where("t5.tipo", "impresion")
->where("t6.is_deleted", 0)
->where("t6.tipo", $data['tipo'] ?? null)
->distinct('t1.id');
// Validación adicional para asegurar que t1.id esté presente en las combinaciones con t3.active = 1
$builder->whereIn("t2.id", function ($subQuery) {
$subQuery->select("t1_inner.id")
->from("lg_papel_generico t1_inner")
->join("lg_papel_impresion t2_inner", "t2_inner.papel_generico_id = t1_inner.id", "inner")
->join("lg_maquina_papel_impresion t3_inner", "t3_inner.papel_impresion_id = t2_inner.id", "inner")
->where("t3_inner.active", 1);
});
$builder->groupStart()
->groupStart()
->where("t5.ancho_impresion >", $data['ancho'] ?? 0)
->where("t5.alto_impresion >", $data['alto'] ?? 0)
->groupEnd()
->orGroupStart()
->where("t5.ancho_impresion >", $data['alto'] ?? 0)
->where("t5.alto_impresion >", $data['ancho'] ?? 0)
->groupEnd()
->orGroupStart()
->where("t5.ancho_impresion >", $data['alto'] ?? 0)
->where("t5.is_rotativa", 1)
->groupEnd()
->groupEnd();
}
}