mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
terminadas LP
This commit is contained in:
@ -29,6 +29,7 @@ class PresupuestoLineaEntity extends \CodeIgniter\Entity\Entity
|
||||
"precio" => null,
|
||||
"total_papel_pedido" => null,
|
||||
"margen_papel_pedido" => null,
|
||||
"margen_impresion" => null,
|
||||
"rotativa_impresion" => null,
|
||||
"rotativa_pag_color" => 0,
|
||||
"rotativa_set_values" => false,
|
||||
@ -65,9 +66,15 @@ class PresupuestoLineaEntity extends \CodeIgniter\Entity\Entity
|
||||
"rotativa_tiempo_corte" => 0,
|
||||
"rotativa_precio_hora_corte" => 0,
|
||||
"rotativa_total_corte" => 0,
|
||||
"isActiva" => false,
|
||||
"check_impresion_total" => false,
|
||||
"check_papel_total" => false,
|
||||
"maquina" => null,
|
||||
"papel_impresion" => null,
|
||||
"maquina_tipo" => 'toner',
|
||||
"horas_maquina" => 0,
|
||||
"precio_hora" => 0,
|
||||
"precio_impresion" => 0,
|
||||
"total_linea" => 0,
|
||||
];
|
||||
protected $casts = [
|
||||
"presupuesto_id" => "int",
|
||||
@ -89,6 +96,7 @@ class PresupuestoLineaEntity extends \CodeIgniter\Entity\Entity
|
||||
"precio" => "?float",
|
||||
"total_papel_pedido" => "?float",
|
||||
"margen_papel_pedido" => "?float",
|
||||
"margen_impresion" => "?float",
|
||||
"rotativa_pag_color" => "int",
|
||||
"rotativa_set_values" => "boolean",
|
||||
"rotativa_negro" => "float",
|
||||
@ -124,8 +132,11 @@ class PresupuestoLineaEntity extends \CodeIgniter\Entity\Entity
|
||||
"rotativa_tiempo_corte" => "float",
|
||||
"rotativa_precio_hora_corte" => "float",
|
||||
"rotativa_total_corte" => "float",
|
||||
"isActiva" => "boolean",
|
||||
"check_impresion_total" => "boolean",
|
||||
"check_papel_total" => "boolean",
|
||||
"horas_maquina" => "double",
|
||||
"precio_hora" => "double",
|
||||
"precio_impresion" => "double",
|
||||
"total_linea" => "double",
|
||||
];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user