añadido factor y factor ponderado a presupuesto

This commit is contained in:
75134972k
2024-03-14 10:00:35 +01:00
parent 634c907cfb
commit 2474e27600
4 changed files with 36 additions and 4 deletions

View File

@ -77,11 +77,13 @@ class PresupuestoEntity extends \CodeIgniter\Entity\Entity
"total_margen_envios" => null,
"total_costes" => null,
"total_margenes" => null,
"total_antes_descuento" => null,
"total_antes_descuento" => null,
"total_descuento" => null,
"total_descuentoPercent" => null,
"total_presupuesto" => null,
"total_precio_unidad" => null,
"total_factor" => null,
"total_factor_ponderado" => null,
"acabado_cubierta_id" => null,
"acabado_sobrecubierta_id" => null,
];
@ -141,6 +143,8 @@ class PresupuestoEntity extends \CodeIgniter\Entity\Entity
"total_descuentoPercent" => "?float",
"total_presupuesto" => "?float",
"total_precio_unidad" => "?float",
"total_factor" => "?float",
"total_factor_ponderado" => "?float",
"acabado_cubierta_id" => "int",
"acabado_sobrecubierta_id" => "int",
];