Merge branch 'main' into dev/chat

This commit is contained in:
Alvaro Mazuecos Nogales
2024-09-23 10:04:55 +02:00
25 changed files with 204 additions and 183 deletions

View File

@ -9,8 +9,6 @@ class TarifaextraEntity extends \CodeIgniter\Entity\Entity
"id" => null,
"nombre" => null,
"precio" => null,
"precio_min" => 0,
"importe_fijo" => 0,
"margen" => 0,
"mostrar_en_presupuesto" => 1,
"user_created_id" => 1,
@ -22,8 +20,6 @@ class TarifaextraEntity extends \CodeIgniter\Entity\Entity
];
protected $casts = [
"precio" => "float",
"precio_min" => "float",
"importe_fijo" => "float",
"margen" => "float",
"mostrar_en_presupuesto" => "int",
"user_created_id" => "int",

View File

@ -9,8 +9,6 @@ class TarifapreimpresionEntity extends \CodeIgniter\Entity\Entity
"id" => null,
"nombre" => null,
"precio" => null,
"precio_min" => 0,
"importe_fijo" => 0,
"margen" => 0,
"mostrar_en_presupuesto" => 1,
"user_created_id" => 1,
@ -22,8 +20,6 @@ class TarifapreimpresionEntity extends \CodeIgniter\Entity\Entity
];
protected $casts = [
"precio" => "float",
"precio_min" => "float",
"importe_fijo" => "float",
"margen" => "float",
"mostrar_en_presupuesto" => "int",
"user_created_id" => "int",