Files
alrahma_sunday_school/app/Models/InventoryMovementModel.php
T
root 716cc8b8d3
Tests / PHPUnit (push) Failing after 1m20s
fix school year for all tables
2026-07-18 14:45:38 -04:00

27 lines
661 B
PHP

<?php
namespace App\Models;
use CodeIgniter\Model;
use App\Models\Concerns\SchoolYearAutoFillTrait;
class InventoryMovementModel extends Model
{
use SchoolYearAutoFillTrait;
protected $table = 'inventory_movements';
protected $primaryKey = 'id';
protected $returnType = 'array';
protected $useTimestamps = true;
protected $allowedFields = [
'item_id','qty_change','movement_type','reason','note',
'semester','school_year',
'performed_by','teacher_id','student_id','class_section_id',
];
protected $validationRules = [
'school_year' => 'required|string|max_length[9]',
];
}