CHANGE_ added policy_id in hr file upload table : GWM
This commit is contained in:
parent
63f04fb222
commit
2f121b34e3
@ -3818,6 +3818,7 @@ class EmployeeRestController extends AdminController
|
|||||||
$data = [
|
$data = [
|
||||||
'client_id' => $this->request->getPost('client_id'),
|
'client_id' => $this->request->getPost('client_id'),
|
||||||
'client_branch_id' => $this->request->getPost('client_branch_id'),
|
'client_branch_id' => $this->request->getPost('client_branch_id'),
|
||||||
|
'policy_id' => $this->request->getPost('policy_id'),
|
||||||
'policy_no' => $this->request->getPost('policy_no'),
|
'policy_no' => $this->request->getPost('policy_no'),
|
||||||
'file_name' => $newFileName,
|
'file_name' => $newFileName,
|
||||||
'file_action' => $this->request->getPost('file_action'),
|
'file_action' => $this->request->getPost('file_action'),
|
||||||
@ -3854,6 +3855,7 @@ class EmployeeRestController extends AdminController
|
|||||||
$data = [
|
$data = [
|
||||||
'client_id' => $this->request->getPost('client_id'),
|
'client_id' => $this->request->getPost('client_id'),
|
||||||
'client_branch_id' => $this->request->getPost('client_branch_id'),
|
'client_branch_id' => $this->request->getPost('client_branch_id'),
|
||||||
|
'policy_id' => $this->request->getPost('policy_id'),
|
||||||
'policy_no' => $this->request->getPost('policy_no'),
|
'policy_no' => $this->request->getPost('policy_no'),
|
||||||
'file_action' => $this->request->getPost('file_action'),
|
'file_action' => $this->request->getPost('file_action'),
|
||||||
'status' => $this->request->getPost('status'),
|
'status' => $this->request->getPost('status'),
|
||||||
@ -3968,6 +3970,7 @@ class EmployeeRestController extends AdminController
|
|||||||
$filters = [
|
$filters = [
|
||||||
'client_id',
|
'client_id',
|
||||||
'client_branch_id',
|
'client_branch_id',
|
||||||
|
'policy_id',
|
||||||
'policy_no',
|
'policy_no',
|
||||||
'file_action',
|
'file_action',
|
||||||
'status',
|
'status',
|
||||||
|
|||||||
@ -14,6 +14,7 @@ class HrFileUploadModel extends Model
|
|||||||
protected $allowedFields = [
|
protected $allowedFields = [
|
||||||
'client_id',
|
'client_id',
|
||||||
'client_branch_id',
|
'client_branch_id',
|
||||||
|
'policy_id',
|
||||||
'policy_no',
|
'policy_no',
|
||||||
'file_name',
|
'file_name',
|
||||||
'file_action',
|
'file_action',
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user