mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
Añadidos ubicaciones y series de facturas
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 = [
|
||||
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user