CHANGE_ added policy_id in hr file upload table : GWM

This commit is contained in:
Gowtham M 2025-08-22 15:49:39 +05:30
parent 63f04fb222
commit 2f121b34e3
2 changed files with 4 additions and 0 deletions

View File

@ -3818,6 +3818,7 @@ class EmployeeRestController extends AdminController
$data = [
'client_id' => $this->request->getPost('client_id'),
'client_branch_id' => $this->request->getPost('client_branch_id'),
'policy_id' => $this->request->getPost('policy_id'),
'policy_no' => $this->request->getPost('policy_no'),
'file_name' => $newFileName,
'file_action' => $this->request->getPost('file_action'),
@ -3854,6 +3855,7 @@ class EmployeeRestController extends AdminController
$data = [
'client_id' => $this->request->getPost('client_id'),
'client_branch_id' => $this->request->getPost('client_branch_id'),
'policy_id' => $this->request->getPost('policy_id'),
'policy_no' => $this->request->getPost('policy_no'),
'file_action' => $this->request->getPost('file_action'),
'status' => $this->request->getPost('status'),
@ -3968,6 +3970,7 @@ class EmployeeRestController extends AdminController
$filters = [
'client_id',
'client_branch_id',
'policy_id',
'policy_no',
'file_action',
'status',

View File

@ -14,6 +14,7 @@ class HrFileUploadModel extends Model
protected $allowedFields = [
'client_id',
'client_branch_id',
'policy_id',
'policy_no',
'file_name',
'file_action',