mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
76 lines
2.3 KiB
PHP
76 lines
2.3 KiB
PHP
<?php
|
|
|
|
namespace App\Models\Tarifas\Maquinas;
|
|
|
|
|
|
use App\Entities\Tarifas\Maquinas\TarifaExtraMaquinaEntity;
|
|
use CodeIgniter\Database\BaseBuilder;
|
|
use CodeIgniter\Model;
|
|
|
|
class TarifaExtraMaquinaModel extends Model
|
|
{
|
|
protected $table = 'tarifa_extra_maquinas';
|
|
protected $primaryKey = 'id';
|
|
protected $useAutoIncrement = true;
|
|
protected $returnType = TarifaExtraMaquinaEntity::class;
|
|
protected $useSoftDeletes = true;
|
|
protected $protectFields = true;
|
|
protected $allowedFields = [
|
|
"tarifa_extra_id",
|
|
"maquina_id",
|
|
"maquina_tarea_id"
|
|
];
|
|
|
|
protected bool $allowEmptyInserts = false;
|
|
protected bool $updateOnlyChanged = true;
|
|
|
|
protected array $casts = [];
|
|
protected array $castHandlers = [];
|
|
|
|
// Dates
|
|
protected $useTimestamps = true;
|
|
protected $dateFormat = 'datetime';
|
|
protected $createdField = 'created_at';
|
|
protected $updatedField = 'updated_at';
|
|
protected $deletedField = 'deleted_at';
|
|
|
|
// Validation
|
|
protected $validationRules = [];
|
|
protected $validationMessages = [];
|
|
protected $skipValidation = false;
|
|
protected $cleanValidationRules = true;
|
|
|
|
// Callbacks
|
|
protected $allowCallbacks = true;
|
|
protected $beforeInsert = [];
|
|
protected $afterInsert = [];
|
|
protected $beforeUpdate = [];
|
|
protected $afterUpdate = [];
|
|
protected $beforeFind = [];
|
|
protected $afterFind = [];
|
|
protected $beforeDelete = [];
|
|
protected $afterDelete = [];
|
|
|
|
/**
|
|
* Query for datatable
|
|
*
|
|
* @param integer|null $tarifa_extra_id
|
|
* @return BaseBuilder
|
|
*/
|
|
public function queryDatatable(?int $tarifa_extra_id = null): BaseBuilder
|
|
{
|
|
$query = $this->builder()->select(
|
|
[
|
|
"tarifa_extra_maquinas.id",
|
|
"lg_maquinas.nombre as maquinaNombre",
|
|
"maquina_tareas.name as tareaNombre"
|
|
]
|
|
)->join("lg_maquinas", "lg_maquinas.id = tarifa_extra_maquinas.maquina_id", "left")
|
|
->join("maquina_tareas", "maquina_tareas.id = tarifa_extra_maquinas.maquina_tarea_id", "left")
|
|
->where("tarifa_extra_maquinas.deleted_at", null);
|
|
if ($tarifa_extra_id)
|
|
$query->where("tarifa_extra_maquinas.tarifa_extra_id", $tarifa_extra_id);
|
|
return $query;
|
|
}
|
|
}
|