modificaciones en tarifas: añadido margen, cambiado tirada por paginas y añadidas tarifas encuadernacion

This commit is contained in:
Jaime Jimenez
2023-07-21 18:07:46 +02:00
parent 2a30e2d8a2
commit 4d1fd30cb1
44 changed files with 2018 additions and 205 deletions

View File

@ -8,9 +8,10 @@ class TarifapreimpresionEntity extends \CodeIgniter\Entity\Entity
protected $attributes = [
"id" => null,
"nombre" => null,
"precio" => null,
"precio_pagina" => null,
"precio_min" => 0,
"importe_fijo" => 0,
"margen" => 0,
"user_created_id" => 1,
"user_update_id" => 1,
"is_deleted" => 0,
@ -19,9 +20,10 @@ class TarifapreimpresionEntity extends \CodeIgniter\Entity\Entity
"updated_at" => null,
];
protected $casts = [
"precio" => "float",
"precio_pagina" => "float",
"precio_min" => "float",
"importe_fijo" => "float",
"margen" => "float",
"user_created_id" => "int",
"user_update_id" => "int",
"is_deleted" => "int",