|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
|
|
|
|
class PayrollScheduleModel extends Model
|
|
|
|
{
|
|
|
|
protected $table = 'pay_schedule';
|
|
|
|
protected $primaryKey = 'payschedule_id';
|
|
|
|
protected $useAutoIncrement = true;
|
|
|
|
protected $returnType = \App\Entities\PayrollSchedule::class;
|
|
|
|
protected $useSoftDeletes = false;
|
|
|
|
protected $protectFields = true;
|
|
|
|
protected $allowedFields = ['sched_code', 'sched_name'];
|
|
|
|
|
|
|
|
protected bool $allowEmptyInserts = false;
|
|
|
|
|
|
|
|
// 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 = ['assignCreatedBy'];
|
|
|
|
protected $afterInsert = [];
|
|
|
|
protected $beforeUpdate = ['assignUpdatedBy'];
|
|
|
|
protected $afterUpdate = [];
|
|
|
|
protected $beforeFind = [];
|
|
|
|
protected $afterFind = [];
|
|
|
|
protected $beforeDelete = [];
|
|
|
|
protected $afterDelete = [];
|
|
|
|
|
|
|
|
public function assignCreatedBy(array $data)
|
|
|
|
{
|
|
|
|
$data['data']['created_by'] = auth()->user()->employee_id;
|
|
|
|
return $data;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function assignUpdatedBy(array $data)
|
|
|
|
{
|
|
|
|
$data['data']['updated_by'] = auth()->user()->employee_id;
|
|
|
|
return $data;
|
|
|
|
}
|
|
|
|
}
|