- CodeIgniter 4 framework setup with SQL Server database config - Models: Control, Test, Dept, Result, Daily/ Monthly entry models - Controllers: Dashboard, Control, Test, Dept, Entry, Report, API endpoints - Views: CRUD pages with modal dialogs, dashboard, reports - Database: Migrations for control test and daily/monthly result tables - Legacy v1 PHP application preserved in /v1 directory - Documentation: AGENTS.md, VIEWS_RULES.md for development guidelines
30 lines
855 B
PHP
30 lines
855 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class DictTestModel extends Model
|
|
{
|
|
protected $table = 'dict_tests';
|
|
protected $primaryKey = 'test_id';
|
|
protected $useAutoIncrement = true;
|
|
protected $returnType = 'array';
|
|
protected $useSoftDeletes = false;
|
|
protected $allowedFields = ['test_id', 'dept_ref_id', 'name', 'unit', 'method', 'cva', 'ba', 'tea'];
|
|
protected $useTimestamps = false;
|
|
|
|
public function getByDept($deptId)
|
|
{
|
|
return $this->where('dept_ref_id', $deptId)->findAll();
|
|
}
|
|
|
|
public function getWithDept()
|
|
{
|
|
$builder = $this->db->table('dict_tests t');
|
|
$builder->select('t.*, d.name as dept_name');
|
|
$builder->join('dict_depts d', 'd.dept_id = t.dept_ref_id', 'left');
|
|
return $builder->get()->getResultArray();
|
|
}
|
|
}
|