mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
47 lines
1.3 KiB
PHP
47 lines
1.3 KiB
PHP
<?php
|
|
namespace App\Entities\Pedidos;
|
|
|
|
use CodeIgniter\Entity;
|
|
|
|
class AlbaranEntity extends \CodeIgniter\Entity\Entity
|
|
{
|
|
protected $attributes = [
|
|
'id' => null,
|
|
'pedido_id' => null,
|
|
'presupuesto_id' => null,
|
|
'presupuesto_direccion_id' => null,
|
|
'cliente_id' => null,
|
|
'serie_id' => null,
|
|
'numero_albaran' => null,
|
|
'mostrar_precios' => null,
|
|
'total' => null,
|
|
'direccion_albaran' => null,
|
|
'att_albaran' => null,
|
|
'user_created_id' => null,
|
|
'user_updated_id' => null,
|
|
'created_at' => null,
|
|
'updated_at' => null,
|
|
'deleted_at' => null,
|
|
];
|
|
|
|
protected $dates = ['created_at', 'updated_at', 'deleted_at'];
|
|
|
|
protected $casts = [
|
|
'id' => 'integer',
|
|
'pedido_id' => '?integer',
|
|
'presupuesto_id' => '?integer',
|
|
'presupuesto_direccion_id' => '?integer',
|
|
'cliente_id' => '?integer',
|
|
'serie_id' => '?integer',
|
|
'numero_albaran' => '?string',
|
|
'mostrar_precios' => '?boolean',
|
|
'total' => 'float',
|
|
'direccion_albaran' => '?string',
|
|
'att_albaran' => '?string',
|
|
'user_created_id' => 'integer',
|
|
'user_updated_id' => 'integer',
|
|
];
|
|
|
|
// Agrega tus métodos personalizados aquí
|
|
}
|