| Rekam Medis | : | {{ optional($checkup->patient)->medical_record_number ?? '-' }} |
| Nomor Kartu | : | {{ optional($checkup->patient)->type_number ?? '-' }} |
| Nama | : | {{ optional($checkup->patient)->name ?? '-' }} |
| Tanggal Lahir | : | {{ optional($checkup->patient->birthday)->format('d/m/Y') ?? '-' }} ({{ optional($checkup->patient)->age ?? '-' }}) |
| Tanggal Pemeriksaan | : | {{ $checkup->created_at->format('d/m/Y') ?? '-' }} |
| Alamat | : | {{ optional($checkup->patient)->address ?? '-' }} |
| Nomor Ponsel | : | {{ optional($checkup->patient)->phone_number ?? '-' }} |
| Jenis Registrasi | : | {{ $checkup->queuePatient->type ?? '-' }} |
| Laboratorium *Data Lab sedang diproses |
-
|
||||
| Laboratorium | Hasil | Nilai Normal | Satuan | ||
| {{ optional($checkup->getLab($item))->name ?? '-' }} | |||||
| {{ $lab->pemeriksaan ?? '-' }} | {{ optional(json_decode($checkup->support->lab_result_impression))->hasil[$key][$keylab] ?? '-' }} | {{ $lab->nilai_normal ?? '-' }} | @else{{ $lab->nilai_laki ?? '-' }} | {{ $lab->nilai_perempuan ?? '-' }} | @endif{{ $lab->satuan ?? '-' }} |
| Tidak diinputkan. | |||||
| Total |
{{ money_format_idr($total['lab']) ?? '-' }}
|
||||
| Obat | @if(app_setting('APP_MODE') == 'lab')@endif | Jumlah | {{-- Dosis --}} | Harga | Total | ||
| {{$prescription->racikan}} |
@if($checkup->has_payed != '1')
|
{{money_format_idr($this->totalHarga($key))}} | |||||
| {{ optional($checkup->management->getDrug($prescription->obat))->name ?? '-' }} | @if(app_setting('APP_MODE') == 'lab')
@if($checkup->has_payed != '1')
|
@endif
@if($checkup->has_payed != '1') @if(optional($checkup->management->getDrug($prescription->obat))->type == 'Generik') @endif @endif @if(isset($change_stock[$key])) {{ $change_stock[$key] }} @else {{ $prescription->jumlah ?? '-' }} @endif | {{-- {{ $prescription->dosis ?? '-' }} --}} | {{ money_format_idr(optional($checkup->management->getDrug($prescription->obat))->latestPrice()) ?? '-' }} | @if(isset($change_stock[$key])){{ money_format_idr(optional($checkup->management->getDrug($prescription->obat))->latestPrice() * $change_stock[$key]) ?? '-' }} | @else{{ money_format_idr(optional($checkup->management->getDrug($prescription->obat))->latestPrice() * $prescription->jumlah) ?? '-' }} | @endif|
| Tidak diinputkan. | |||||||
| Total |
{{ money_format_idr($total['obat']) ?? '-' }}
|
||||||
| Layanan | Harga | |
| {{ $this->checkup->diagnosis->getService($id)->name ?? '-' }} | {{ money_format_idr($this->checkup->diagnosis->getService($id)->rates) ?? '-' }} | |
| Tidak diinputkan. | ||
| Total |
{{ money_format_idr($total['layanan']) ?? '-' }}
|
|
| BHP | Jumlah | Keterangan | Harga |
| {{ $this->checkup->management->getConsumable($consumable->bhp)->name ?? '-' }} | {{ $consumable->jumlah ?? '-' }} | {{ $consumable->keterangan ?? '-' }} | {{ money_format_idr(optional($this->checkup->management->getConsumable($consumable->bhp))->price) ?? '-' }} |
| Tidak diinputkan. | |||
| Total |
{{ money_format_idr($total['BHP']) ?? '-' }}
|
||
| Pembayaran : | |||||
| - Total Bayar |
{{ money_format_idr($total_bayar) ?? '-' }}
|
||||
| - Jumlah Bayar |
@if($checkup->has_payed)
{{ money_format_idr($checkup->amount_paid) ?? '-' }}
@else
Rp.
@endif
|
||||
| - Terbilang |
{{ Str::title(in_number($total_bayar)) }}
|
||||
| - Metode Pembayaran |
@if($checkup->has_payed)
{{ $checkup->payment_method ?? '-' }}
@else
|
||||
| - Kembalian |
{{ money_format_idr($kembalian) ?? '-' }}
|
||||