FIX_BDS : RV
This commit is contained in:
parent
f7d029c0f8
commit
367d035629
@ -1723,7 +1723,8 @@ class MasterController extends AdminController
|
|||||||
'excel' => WRITEPATH . 'uploads/excel/',
|
'excel' => WRITEPATH . 'uploads/excel/',
|
||||||
'statements' => WRITEPATH . 'uploads/statements/',
|
'statements' => WRITEPATH . 'uploads/statements/',
|
||||||
'import_excel' => WRITEPATH . 'uploads/import_excel/',
|
'import_excel' => WRITEPATH . 'uploads/import_excel/',
|
||||||
'logs' => WRITEPATH . 'uploads/logs/',
|
'logs' => WRITEPATH . 'logs',
|
||||||
|
'session' => WRITEPATH . 'session',
|
||||||
'client_kyc_documents' => WRITEPATH . 'uploads/client_kyc_documents/',
|
'client_kyc_documents' => WRITEPATH . 'uploads/client_kyc_documents/',
|
||||||
'tmp' => WRITEPATH . 'tmp/',
|
'tmp' => WRITEPATH . 'tmp/',
|
||||||
'e_card_imgs' => ROOTPATH . 'public/e_card_imgs',
|
'e_card_imgs' => ROOTPATH . 'public/e_card_imgs',
|
||||||
@ -1732,6 +1733,7 @@ class MasterController extends AdminController
|
|||||||
'logo' => ROOTPATH . 'public/uploads/logo/',
|
'logo' => ROOTPATH . 'public/uploads/logo/',
|
||||||
'template_bg' => ROOTPATH . 'public/uploads/template_bg/',
|
'template_bg' => ROOTPATH . 'public/uploads/template_bg/',
|
||||||
'attachments' => WRITEPATH . 'uploads/attachments/',
|
'attachments' => WRITEPATH . 'uploads/attachments/',
|
||||||
|
'cache' => WRITEPATH . 'cache',
|
||||||
'sample_import_excel' => ROOTPATH . 'public/sample_import_excel',
|
'sample_import_excel' => ROOTPATH . 'public/sample_import_excel',
|
||||||
'lead_files' => WRITEPATH . 'uploads/lead_files/',
|
'lead_files' => WRITEPATH . 'uploads/lead_files/',
|
||||||
];
|
];
|
||||||
|
|||||||
@ -274,7 +274,7 @@ class PolicyTransactionController extends BaseController
|
|||||||
// Separate Insurer and TPA Branch IDs and IDs
|
// Separate Insurer and TPA Branch IDs and IDs
|
||||||
if(isset($data['insurer_id']) && !empty($data['insurer_id'])){
|
if(isset($data['insurer_id']) && !empty($data['insurer_id'])){
|
||||||
list($data['insurer_branch_id'], $data['insurer_id']) = explode('-', $data['insurer_id']);
|
list($data['insurer_branch_id'], $data['insurer_id']) = explode('-', $data['insurer_id']);
|
||||||
if (isset($data['tpa'])) {
|
if (isset($data['tpa']) && !empty($data['tpa'])) {
|
||||||
list($data['tpa_branch_id'], $data['tpa_id']) = explode('-', $data['tpa']);
|
list($data['tpa_branch_id'], $data['tpa_id']) = explode('-', $data['tpa']);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -1117,7 +1117,7 @@ class PolicyTransactionController extends BaseController
|
|||||||
// Separate Insurer and TPA Branch IDs and IDs
|
// Separate Insurer and TPA Branch IDs and IDs
|
||||||
if(isset($data['insurer_id']) && !empty($data['insurer_id'])){
|
if(isset($data['insurer_id']) && !empty($data['insurer_id'])){
|
||||||
list($data['insurer_branch_id'], $data['insurer_id']) = explode('-', $data['insurer_id']);
|
list($data['insurer_branch_id'], $data['insurer_id']) = explode('-', $data['insurer_id']);
|
||||||
if (isset($data['tpa'])) {
|
if (isset($data['tpa']) && !empty($data['tpa'])) {
|
||||||
list($data['tpa_branch_id'], $data['tpa_id']) = explode('-', $data['tpa']);
|
list($data['tpa_branch_id'], $data['tpa_id']) = explode('-', $data['tpa']);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user