update template
This commit is contained in:
@@ -23,6 +23,7 @@ class RequestLogService
|
|||||||
public $doc_headers_to_field_map = [
|
public $doc_headers_to_field_map = [
|
||||||
"Date Of Request" => "submission_date",
|
"Date Of Request" => "submission_date",
|
||||||
"Date Addmission" => "submission_date",
|
"Date Addmission" => "submission_date",
|
||||||
|
"Date Discharge" => "discharge_date",
|
||||||
"Member ID Peserta" => "member_id",
|
"Member ID Peserta" => "member_id",
|
||||||
"Type of patient" => "service",
|
"Type of patient" => "service",
|
||||||
"Provider Name" => "organization_id",
|
"Provider Name" => "organization_id",
|
||||||
@@ -44,6 +45,7 @@ class RequestLogService
|
|||||||
public $field_to_doc_headers_map = [
|
public $field_to_doc_headers_map = [
|
||||||
"submission_date" => "Date Of Request",
|
"submission_date" => "Date Of Request",
|
||||||
"submission_date" => "Date Addmission",
|
"submission_date" => "Date Addmission",
|
||||||
|
"discharge_date" => "Date Discharge",
|
||||||
"member_id" => "Member ID Peserta",
|
"member_id" => "Member ID Peserta",
|
||||||
"service" => "Type of patient",
|
"service" => "Type of patient",
|
||||||
"organization_id" => "Provider Name",
|
"organization_id" => "Provider Name",
|
||||||
@@ -64,6 +66,7 @@ class RequestLogService
|
|||||||
public $result_doc_headers = [
|
public $result_doc_headers = [
|
||||||
"Date Of Request",
|
"Date Of Request",
|
||||||
"Date Addmission",
|
"Date Addmission",
|
||||||
|
"Date Discharge",
|
||||||
"Member ID Peserta",
|
"Member ID Peserta",
|
||||||
"Type of patient",
|
"Type of patient",
|
||||||
"Provider Name",
|
"Provider Name",
|
||||||
@@ -84,6 +87,7 @@ class RequestLogService
|
|||||||
public $listing_doc_headers = [
|
public $listing_doc_headers = [
|
||||||
"Date Of Request",
|
"Date Of Request",
|
||||||
"Date Addmission",
|
"Date Addmission",
|
||||||
|
"Date Discharge",
|
||||||
"Member ID Peserta",
|
"Member ID Peserta",
|
||||||
"Type of patient",
|
"Type of patient",
|
||||||
"Provider Name",
|
"Provider Name",
|
||||||
@@ -213,7 +217,7 @@ class RequestLogService
|
|||||||
'code' => $code,
|
'code' => $code,
|
||||||
'member_id' => $member->id,
|
'member_id' => $member->id,
|
||||||
'submission_date' => $row['submission_date'],
|
'submission_date' => $row['submission_date'],
|
||||||
'discharge_date' => $row['submission_date'],
|
'discharge_date' => $row['discharge_date'],
|
||||||
'payment_type' => 'cashless',
|
'payment_type' => 'cashless',
|
||||||
'status' => $status,
|
'status' => $status,
|
||||||
'status_final_log' => $statusFinalLog,
|
'status_final_log' => $statusFinalLog,
|
||||||
@@ -232,7 +236,7 @@ class RequestLogService
|
|||||||
'code' => $code,
|
'code' => $code,
|
||||||
'member_id' => $member->id,
|
'member_id' => $member->id,
|
||||||
'submission_date' => $row['submission_date'],
|
'submission_date' => $row['submission_date'],
|
||||||
'discharge_date' => $row['submission_date'],
|
'discharge_date' => $row['discharge_date'],
|
||||||
'payment_type' => 'cashless',
|
'payment_type' => 'cashless',
|
||||||
'status' => $status,
|
'status' => $status,
|
||||||
'status_final_log' => $statusFinalLog,
|
'status_final_log' => $statusFinalLog,
|
||||||
|
|||||||
@@ -20,6 +20,7 @@ class RequestLog extends Model
|
|||||||
public $fillable = [
|
public $fillable = [
|
||||||
'uuid',
|
'uuid',
|
||||||
'submission_date',
|
'submission_date',
|
||||||
|
'discharge_date',
|
||||||
'member_id',
|
'member_id',
|
||||||
'payment_type',
|
'payment_type',
|
||||||
'service_code',
|
'service_code',
|
||||||
|
|||||||
@@ -518,7 +518,7 @@ export default function ServiceMonitoring() {
|
|||||||
gap={1}
|
gap={1}
|
||||||
>
|
>
|
||||||
<CircleIcon sx={{ width: 8 }} />
|
<CircleIcon sx={{ width: 8 }} />
|
||||||
Amount Approved : Rp. {fSplit(benefitValue.amountApproved)}
|
Amount Approved : Rp {fSplit(benefitValue.amountApproved)}
|
||||||
</Typography>
|
</Typography>
|
||||||
</ListItemText>
|
</ListItemText>
|
||||||
</ListItem>
|
</ListItem>
|
||||||
@@ -533,7 +533,7 @@ export default function ServiceMonitoring() {
|
|||||||
gap={1}
|
gap={1}
|
||||||
>
|
>
|
||||||
<CircleIcon sx={{ width: 8 }} />
|
<CircleIcon sx={{ width: 8 }} />
|
||||||
Amount Not Approved : Rp. {fSplit(benefitValue.amountNotAprroved)}
|
Amount Not Approved : Rp {fSplit(benefitValue.amountNotAprroved)}
|
||||||
</Typography>
|
</Typography>
|
||||||
</ListItemText>
|
</ListItemText>
|
||||||
</ListItem>
|
</ListItem>
|
||||||
@@ -548,7 +548,7 @@ export default function ServiceMonitoring() {
|
|||||||
gap={1}
|
gap={1}
|
||||||
>
|
>
|
||||||
<CircleIcon sx={{ width: 8 }} />
|
<CircleIcon sx={{ width: 8 }} />
|
||||||
Excess Paid : Rp. {fSplit(benefitValue.excessPaid)}
|
Excess Paid : Rp {fSplit(benefitValue.excessPaid)}
|
||||||
</Typography>
|
</Typography>
|
||||||
</ListItemText>
|
</ListItemText>
|
||||||
</ListItem>
|
</ListItem>
|
||||||
@@ -563,7 +563,7 @@ export default function ServiceMonitoring() {
|
|||||||
gap={1}
|
gap={1}
|
||||||
>
|
>
|
||||||
<CircleIcon sx={{ width: 8 }} />
|
<CircleIcon sx={{ width: 8 }} />
|
||||||
Description : Rp. {fSplit(benefitValue.description)}
|
Description : {benefitValue.description}
|
||||||
</Typography>
|
</Typography>
|
||||||
</ListItemText>
|
</ListItemText>
|
||||||
</ListItem>
|
</ListItem>
|
||||||
|
|||||||
Reference in New Issue
Block a user