mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
77 lines
2.1 KiB
PHP
77 lines
2.1 KiB
PHP
<?php
|
|
|
|
namespace App\Models\Configuracion;
|
|
|
|
use App\Entities\Tarifas\Maquinas\TareaMaquinaEntity;
|
|
use CodeIgniter\Database\BaseBuilder;
|
|
use CodeIgniter\Database\MySQLi\Builder;
|
|
use CodeIgniter\Database\Query;
|
|
use CodeIgniter\Model;
|
|
|
|
class MaquinaTareaModel extends Model
|
|
{
|
|
protected $table = 'maquina_tareas';
|
|
protected $primaryKey = 'id';
|
|
protected $useAutoIncrement = true;
|
|
protected $returnType = TareaMaquinaEntity::class;
|
|
protected $useSoftDeletes = true;
|
|
protected $protectFields = true;
|
|
protected $allowedFields = [
|
|
"name",
|
|
"description",
|
|
];
|
|
|
|
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 select2
|
|
*
|
|
* @param string|null $q Query param from select2 ajax request
|
|
* @return array
|
|
*
|
|
*/
|
|
public function getSelectQuery(?string $q = null): array
|
|
{
|
|
$query = $this->builder()->select(["id", "name", "description"])
|
|
->where("deleted_at", null);
|
|
if ($q) {
|
|
$query->like("nombre", $q);
|
|
}
|
|
|
|
return $query->get()->getResultArray();
|
|
}
|
|
public function getQueryDatatable(): BaseBuilder
|
|
{
|
|
return $this->builder()->select(["id","name","description","created_at"])
|
|
->where("deleted_at", null);
|
|
}
|
|
}
|