trabajando en resumen

This commit is contained in:
Jaime Jiménez
2023-12-13 15:33:56 +01:00
parent 9b2aa65c36
commit 3a43f90ef9
5 changed files with 87 additions and 18 deletions

View File

@ -11,6 +11,7 @@ class PresupuestoEncuadernacionesEntity extends \CodeIgniter\Entity\Entity
"tarifa_encuadernado_id" => null,
"precio_unidad" => null,
"precio_total" => null,
"margen" => null,
"created_at" => null,
"updated_at" => null,
];
@ -19,5 +20,6 @@ class PresupuestoEncuadernacionesEntity extends \CodeIgniter\Entity\Entity
"tarifa_encuadernado_id" => "int",
"precio_unidad" => "float",
"precio_total" => "float",
"margen" => "float",
];
}