falta guardar tiradas

This commit is contained in:
2024-05-16 14:52:18 +02:00
parent fdb1fe77db
commit b110fd063c
12 changed files with 21745 additions and 186 deletions

View File

@ -9,6 +9,7 @@ class PresupuestoEncuadernacionesEntity extends \CodeIgniter\Entity\Entity
"id" => null,
"presupuesto_id" => null,
"tarifa_encuadernado_id" => null,
"proveedor_id" => null,
"precio_unidad" => null,
"tiempo" => null,
"precio_total" => null,
@ -19,6 +20,7 @@ class PresupuestoEncuadernacionesEntity extends \CodeIgniter\Entity\Entity
protected $casts = [
"presupuesto_id" => "int",
"tarifa_encuadernado_id" => "int",
"proveedor_id" => "int",
"precio_unidad" => "float",
"tiempo" => "float",
"precio_total" => "float",