totalizadores de servicios realizado

This commit is contained in:
Jaime Jiménez
2023-12-14 15:34:45 +01:00
parent 3a43f90ef9
commit 7a27bf56a7
11 changed files with 190 additions and 78 deletions

View File

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

View File

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

View File

@ -9,15 +9,15 @@ class PresupuestoPreimpresionesEntity extends \CodeIgniter\Entity\Entity
"id" => null,
"presupuesto_id" => null,
"tarifa_preimpresion_id" => null,
"precio_unidad" => null,
"precio_total" => null,
"margen" => null,
"created_at" => null,
"updated_at" => null,
];
protected $casts = [
"presupuesto_id" => "int",
"tarifa_preimpresion_id" => "int",
"precio_unidad" => "float",
"precio_total" => "float",
"margen" => "float",
];
}