mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
Merge branch 'main' into 'dev/pedidos_v1'
Main See merge request jjimenez/safekat!272
This commit is contained in:
21
ci4/app/Entities/Configuracion/SeriesFacturasEntity.php
Normal file
21
ci4/app/Entities/Configuracion/SeriesFacturasEntity.php
Normal file
@ -0,0 +1,21 @@
|
||||
<?php
|
||||
namespace App\Entities\Configuracion;
|
||||
|
||||
use CodeIgniter\Entity;
|
||||
|
||||
class SeriesFacturasEntity extends \CodeIgniter\Entity\Entity
|
||||
{
|
||||
protected $attributes = [
|
||||
'id' => null,
|
||||
'nombre' => null,
|
||||
'tipo' => 'facturacion', // default value
|
||||
'formato' => null,
|
||||
'next' => 1, // default value
|
||||
'grupo' => 0, // default value
|
||||
'created_at' => null, // default value
|
||||
'updated_at' => null, // default value
|
||||
];
|
||||
protected $casts = [
|
||||
|
||||
];
|
||||
}
|
||||
16
ci4/app/Entities/Configuracion/UbicacionesEntity.php
Normal file
16
ci4/app/Entities/Configuracion/UbicacionesEntity.php
Normal file
@ -0,0 +1,16 @@
|
||||
<?php
|
||||
namespace App\Entities\Configuracion;
|
||||
|
||||
use CodeIgniter\Entity;
|
||||
|
||||
class UbicacionesEntity extends \CodeIgniter\Entity\Entity
|
||||
{
|
||||
protected $attributes = [
|
||||
'id' => null,
|
||||
'nombre' => null,
|
||||
'deleted_at' => null, // default value
|
||||
];
|
||||
protected $casts = [
|
||||
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user