lp en edit terminadas

This commit is contained in:
Jaime Jiménez Ortega
2023-11-14 08:21:34 +01:00
parent 2f38df4886
commit e12913c2a0
13 changed files with 394 additions and 140 deletions

View File

@ -64,6 +64,8 @@ class PresupuestoLineaEntity extends \CodeIgniter\Entity\Entity
"rotativa_precio_hora_corte" => 0,
"rotativa_total_corte" => 0,
"isActiva" => false,
"check_impresion_total" => false,
"check_papel_total" => false,
];
protected $casts = [
"presupuesto_id" => "int",
@ -119,5 +121,7 @@ class PresupuestoLineaEntity extends \CodeIgniter\Entity\Entity
"rotativa_precio_hora_corte" => "float",
"rotativa_total_corte" => "float",
"isActiva" => "boolean",
"check_impresion_total" => "boolean",
"check_papel_total" => "boolean",
];
}