Merge branch 'main' into 'mod/presupuesto_admin'

Main

See merge request jjimenez/safekat!456
This commit is contained in:
2024-12-27 09:49:48 +00:00
12 changed files with 195 additions and 78 deletions

View File

@ -47,4 +47,13 @@ class ConfigVariableModel extends Model
protected $afterFind = [];
protected $beforeDelete = [];
protected $afterDelete = [];
public function getVariable($name)
{
$builder = $this->db
->table($this->table . " t1")
->where('name', $name);
return $builder->get()->getFirstRow();
}
}

View File

@ -1,37 +0,0 @@
<?php
namespace App\Models\Configuracion;
class ConfiguracionSistemaModel extends \App\Models\BaseModel
{
protected $table = "configuracion_sistema";
/**
* Whether primary key uses auto increment.
*
* @var bool
*/
protected $useAutoIncrement = true;
protected $allowedFields = ["var_name", "value", "datatype"];
protected $returnType = "App\Entities\Configuracion\ConfiguracionSistemaEntity";
public static $labelField = "var_name";
protected $validationRules = [
];
protected $validationMessages = [
];
public function getPOD()
{
$builder = $this->db
->table($this->table . " t1")
->select(
'(SELECT CAST(t1.value AS INT)) AS POD', false)
->where('t1.var_name', 'POD');
$POD = intval($builder->get()->getFirstRow()->POD);
return $POD;
}
}