mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
Trabajando en los campos del form
This commit is contained in:
22
ci4/app/Entities/Configuracion/PapelFormatoEntity.php
Normal file
22
ci4/app/Entities/Configuracion/PapelFormatoEntity.php
Normal 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",
|
||||
];
|
||||
}
|
||||
@ -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",
|
||||
|
||||
Reference in New Issue
Block a user