ya funciona añadir los servicios

This commit is contained in:
Jaime Jiménez
2024-02-21 21:58:58 +01:00
parent ae133e8bea
commit 417bc74e1f
10 changed files with 150 additions and 49 deletions

View File

@ -12,6 +12,8 @@ class PresupuestoAcabadosEntity extends \CodeIgniter\Entity\Entity
"precio_unidad" => null,
"precio_total" => null,
"margen" => null,
"cubierta" => null,
"sobrecubierta" => null,
"created_at" => null,
"updated_at" => null,
];
@ -21,5 +23,7 @@ class PresupuestoAcabadosEntity extends \CodeIgniter\Entity\Entity
"precio_unidad" => "float",
"precio_total" => "float",
"margen" => "float",
"cubierta" => "int",
"sobrecubierta" => "int",
];
}