CHANGE_ADD_AILMENT_MAPPING
This commit is contained in:
parent
4307757a91
commit
8f8f9ee987
@ -22,6 +22,7 @@ class Acl
|
||||
'#^/util/log_list#' => ['roles' => [ADMIN_ROLE_ID]],
|
||||
'#^/util/view_log#' => ['roles' => [ADMIN_ROLE_ID]],
|
||||
'#^/util/download_log#' => ['roles' => [ADMIN_ROLE_ID]],
|
||||
'#^/metaDashboardDemo#' => ['roles' => [ADMIN_ROLE_ID, HEAD_ROLE_ID]],
|
||||
|
||||
// ===================== PUBLIC DOWNLOADS / FORMS =====================
|
||||
'#^/download-#' => ['public' => true],
|
||||
|
||||
@ -111,6 +111,7 @@ class AbhiClaimImportService extends BaseTpaClaimImportService
|
||||
'diagnosis' => 'claim_description',
|
||||
'healthcard_id' => 'tpa_no',
|
||||
'claim_type' => 'tpa_claim_type',
|
||||
'diagnosis' => 'tpa_ailments',
|
||||
|
||||
];
|
||||
|
||||
|
||||
@ -174,6 +174,8 @@ class FhplClaimImportService extends BaseTpaClaimImportService
|
||||
'cheque_no' => 'utr_details',
|
||||
'uhid_no' => 'tpa_no',
|
||||
'claim_type' => 'tpa_claim_type',
|
||||
'diagnosis' => 'tpa_ailments',
|
||||
|
||||
];
|
||||
|
||||
protected $statusMapping = [
|
||||
@ -219,7 +221,7 @@ class FhplClaimImportService extends BaseTpaClaimImportService
|
||||
|
||||
$builder = $this->db->table('claims_dump_fhpl');
|
||||
return $builder->insertBatch($data);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
public function importClaimMaster(array $data): bool
|
||||
|
||||
@ -101,6 +101,7 @@ class IciciClaimImportService extends BaseTpaClaimImportService
|
||||
'uhid' => 'tpa_no',
|
||||
'rejected_query_desc' => 'claim_description',
|
||||
'type_of_claim' => 'tpa_claim_type',
|
||||
'diagnosis' => 'tpa_ailments',
|
||||
];
|
||||
|
||||
protected $statusMapping = [
|
||||
|
||||
@ -152,6 +152,7 @@ class MediAssistClaimImportService extends BaseTpaClaimImportService
|
||||
// Payment
|
||||
'utr_no' => 'utr_details',
|
||||
'claim_type' => 'tpa_claim_type',
|
||||
'primary_ailment_name' => 'tpa_ailments',
|
||||
];
|
||||
|
||||
protected $statusMapping = [
|
||||
|
||||
@ -84,6 +84,8 @@ class RcareClaimImportService extends BaseTpaClaimImportService
|
||||
'hospital_district' => 'hospital_city',
|
||||
|
||||
'diagnosis' => 'claim_description',
|
||||
'diagnosis' => 'tpa_ailments',
|
||||
|
||||
|
||||
// Payment
|
||||
'cheque_neft_number' => 'utr_details',
|
||||
|
||||
@ -343,7 +343,9 @@ class VidalClaimImportService extends BaseTpaClaimImportService
|
||||
|
||||
// Meta
|
||||
'file_id' => 'file_id',
|
||||
'type_of_claim' => 'tpa_claim_type',
|
||||
'type_of_claim' => 'tpa_claim_type',
|
||||
'diagnosis' => 'tpa_ailments',
|
||||
|
||||
];
|
||||
|
||||
protected $statusMapping = [
|
||||
|
||||
Loading…
Reference in New Issue
Block a user