recuperados cambios de rama antigua

This commit is contained in:
jaimejimenezortega
2024-04-14 20:55:38 +02:00
parent 5c298bfc78
commit f5262ac77e
12 changed files with 102 additions and 112 deletions

View File

@ -10,6 +10,7 @@ class PresupuestoEncuadernacionesEntity extends \CodeIgniter\Entity\Entity
"presupuesto_id" => null,
"tarifa_encuadernado_id" => null,
"precio_unidad" => null,
"tiempo" => null,
"precio_total" => null,
"margen" => null,
"created_at" => null,
@ -19,6 +20,7 @@ class PresupuestoEncuadernacionesEntity extends \CodeIgniter\Entity\Entity
"presupuesto_id" => "int",
"tarifa_encuadernado_id" => "int",
"precio_unidad" => "float",
"tiempo" => "float",
"precio_total" => "float",
"margen" => "float",
];