Trabajando en los campos del form

This commit is contained in:
Jaime Jimenez
2023-09-13 08:15:55 +02:00
parent 5d251a1b2c
commit 4a2d930b57
17 changed files with 2314 additions and 2067 deletions

View File

@ -0,0 +1,22 @@
<?php
namespace App\Entities\Configuracion;
use CodeIgniter\Entity;
class PapelFormatoEntity extends \CodeIgniter\Entity\Entity
{
protected $attributes = [
"id" => null,
"ancho" => null,
"alto" => null,
"is_deleted" => 0,
"deleted_at" => null,
"created_at" => null,
"updated_at" => null,
];
protected $casts = [
"ancho" => "float",
"alto" => "float",
"is_deleted" => "int",
];
}

View File

@ -29,7 +29,7 @@ class PresupuestoEntity extends \CodeIgniter\Entity\Entity
"papel_formato_personalizado" => false,
"papel_formato_ancho" => null,
"papel_formato_alto" => null,
"titulo" => "titulo",
"titulo" => "",
"autor" => null,
"coleccion" => null,
"numero_edicion" => null,
@ -43,7 +43,7 @@ class PresupuestoEntity extends \CodeIgniter\Entity\Entity
"sobrecubiertas" => false,
"sobrecubiertas_ancho" => 0.0,
"merma" => null,
"merma_cubierta" => 6.0,
"merma_portada" => 6.0,
"imagenes_bn_interior" => false,
"comentarios" => null,
"comentarios_safekat" => null,
@ -201,7 +201,7 @@ class PresupuestoEntity extends \CodeIgniter\Entity\Entity
"sobrecubiertas" => "boolean",
"sobrecubiertas_ancho" => "float",
"merma" => "float",
"merma_cubierta" => "float",
"merma_portada" => "float",
"imagenes_bn_interior" => "boolean",
"en_produccion" => "boolean",
"en_espera" => "boolean",