Update
This commit is contained in:
@@ -206,7 +206,7 @@
|
||||
|
||||
@if (isset($keterangan))
|
||||
Komentar:<br />
|
||||
{!! nl2br(e($keterangan)) !!}
|
||||
{!! $keterangan !!}
|
||||
@endif
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
@@ -161,7 +161,7 @@
|
||||
<td valign="top" colspan="7" width="755">
|
||||
@if (isset($keterangan))
|
||||
Komentar:<br />
|
||||
{!! nl2br(e($keterangan)) !!}
|
||||
{!! $keterangan !!}
|
||||
@endif
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
@@ -302,64 +302,12 @@
|
||||
@php
|
||||
$nomor++;
|
||||
@endphp
|
||||
@if (isset($data['id_bakteri01']) OR isset($data['id_bakteri02']))
|
||||
@if (isset($data['id_biakankultur']))
|
||||
<tr>
|
||||
<td valign="top">{{$nomor}}. Biakan Kultur (Aerob / Anaerob)</td>
|
||||
<td valign="top">:</td>
|
||||
<td valign="top">
|
||||
@if (isset($data['id_biakankultur']))
|
||||
{!! $data['id_biakankultur'] !!}
|
||||
@endif
|
||||
<table cellpadding="0" cellspacing="0" width="100%" border="0">
|
||||
<tr>
|
||||
<td width="20%">Bakteri I</td>
|
||||
<td width="5%">:</td>
|
||||
<td width="75%">
|
||||
@if (isset($data['id_bakteri01']))
|
||||
<i>{!! $data['id_bakteri01'] !!}</i>
|
||||
@endif
|
||||
@if (isset($data['id_bakterisir01']))
|
||||
( {!! $data['id_bakterisir01'] !!} )
|
||||
@endif
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Hitung Koloni</td>
|
||||
<td>:</td>
|
||||
<td>
|
||||
@if (isset($data['id_bakterihitungkol01']) AND $data['id_bakterihitungkol01'] != 'lainnya')
|
||||
{!! $data['id_bakterihitungkol01'] !!}
|
||||
@endif
|
||||
@if (isset($data['id_bakterihitungkolteks01']))
|
||||
{!! $data['id_bakterihitungkolteks01'] !!}
|
||||
@endif
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Bakteri II</td>
|
||||
<td>:</td>
|
||||
<td>
|
||||
@if (isset($data['id_bakteri02']))
|
||||
<i>{!! $data['id_bakteri02'] !!}</i>
|
||||
@endif
|
||||
@if (isset($data['id_bakterisir02']))
|
||||
( {!! $data['id_bakterisir02'] !!} )
|
||||
@endif
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Hitung Koloni</td>
|
||||
<td>:</td>
|
||||
<td>
|
||||
@if (isset($data['id_bakterihitungkol02']) AND $data['id_bakterihitungkol02'] != 'lainnya')
|
||||
{!! $data['id_bakterihitungkol02'] !!}
|
||||
@endif
|
||||
@if (isset($data['id_bakterihitungkolteks02']))
|
||||
{!! $data['id_bakterihitungkolteks02'] !!}
|
||||
@endif
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
{!! $data['id_biakankultur'] !!}
|
||||
</td>
|
||||
</tr>
|
||||
@endif
|
||||
@@ -369,76 +317,104 @@
|
||||
@endphp
|
||||
|
||||
@if (!isset($cekketerangan[1]) && isset($antibiotiks) && $antibiotiks->isNotEmpty())
|
||||
@if (isset($data['bakteri']))
|
||||
<p>Bakteri Yang ditemukan : <strong><i>{{$data['bakteri']}}</i></strong> {{$data['bakterisir'] ?? ''}}</p>
|
||||
@endif
|
||||
@php
|
||||
// Filter antibiotik yang printrow == true
|
||||
$filtered = $antibiotiks->filter(function($row) {
|
||||
return $row->printrow;
|
||||
})->values(); // reset index
|
||||
|
||||
|
||||
$total = $filtered->count();
|
||||
$half = ceil($total / 2);
|
||||
$left = $filtered->slice(0, $half)->values();
|
||||
$right = $filtered->slice($half)->values();
|
||||
@php
|
||||
// Kelompokkan antibiotik berdasarkan nama kuman
|
||||
$grouped = $antibiotiks->filter(function ($row) {
|
||||
return $row->printrow; // hanya yang perlu dicetak
|
||||
})->groupBy('kuman');
|
||||
@endphp
|
||||
|
||||
<table style="width:100%" border="1" cellpadding="0" cellspacing="0">
|
||||
<thead>
|
||||
<tr>
|
||||
<th><strong>No</strong></th>
|
||||
<th><strong>Antibiotik</strong></th>
|
||||
<th><strong>Value</strong></th>
|
||||
<th><strong>Interpretation</strong></th>
|
||||
<th> </th>
|
||||
<th><strong>No</strong></th>
|
||||
<th><strong>Antibiotik</strong></th>
|
||||
<th><strong>Value</strong></th>
|
||||
<th><strong>Interpretation</strong></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@for ($i = 0; $i < $half; $i++)
|
||||
<tr>
|
||||
{{-- Kolom kiri --}}
|
||||
@if (isset($left[$i]))
|
||||
<td>{{ $i + 1 }}</td>
|
||||
<td>{{ $left[$i]->antibiotic }}</td>
|
||||
@if (isset($left[$i]->printcol) && $left[$i]->printcol == 1)
|
||||
<td>{{ $left[$i]->value }}</td>
|
||||
@else
|
||||
<td> </td>
|
||||
@endif
|
||||
<td align="center">{{ $left[$i]->interpretation }}</td>
|
||||
@else
|
||||
<td colspan="4"> </td>
|
||||
@endif
|
||||
{{-- Loop tiap kuman --}}
|
||||
@foreach ($grouped as $kuman => $items)
|
||||
@php
|
||||
$cetakjudul = false;
|
||||
@endphp
|
||||
@if (isset($data['bakteri']) AND $data['bakteri'] == $kuman)
|
||||
<p>Bakteri Yang ditemukan : <strong><i>{{ $data['bakteri'] }}</i></strong> {{ $data['bakterisir'] ?? '' }}</p>
|
||||
@if (isset($data['id_bakterihitungkol']))
|
||||
<p>Jumlah Koloni : <strong><i>{{ $data['id_bakterihitungkol'] }}</i></strong></p>
|
||||
@endif
|
||||
@php
|
||||
$cetakjudul = true;
|
||||
@endphp
|
||||
@endif
|
||||
@if (isset($data['id_bakteri01']) AND $data['id_bakteri01'] == $kuman)
|
||||
<p>Bakteri Yang ditemukan : <strong><i>{{ $data['id_bakteri01'] }}</i></strong> {{ $data['id_bakterisir01'] ?? '' }}</p>
|
||||
@if (isset($data['id_bakterihitungkol01']))
|
||||
<p>Jumlah Koloni : <strong><i>{{ $data['id_bakterihitungkol01'] }}</i></strong></p>
|
||||
@endif
|
||||
@php
|
||||
$cetakjudul = true;
|
||||
@endphp
|
||||
@endif
|
||||
@if (isset($data['id_bakteri02']) AND $data['id_bakteri02'] == $kuman)
|
||||
<p>Bakteri Yang ditemukan : <strong><i>{{ $data['id_bakteri02'] }}</i></strong> {{ $data['id_bakterisir02'] ?? '' }}</p>
|
||||
@if (isset($data['id_bakterihitungkol02']))
|
||||
<p>Jumlah Koloni : <strong><i>{{ $data['id_bakterihitungkol02'] }}</i></strong></p>
|
||||
@endif
|
||||
@php
|
||||
$cetakjudul = true;
|
||||
@endphp
|
||||
@endif
|
||||
@php
|
||||
$total = $items->count();
|
||||
$half = ceil($total / 2);
|
||||
$left = $items->slice(0, $half)->values();
|
||||
$right = $items->slice($half)->values();
|
||||
@endphp
|
||||
@if ($cetakjudul)
|
||||
<table style="width:100%; border-collapse: collapse;" border="1" cellpadding="3" cellspacing="0">
|
||||
<thead>
|
||||
<tr style="background-color: #f2f2f2;">
|
||||
<th>No</th>
|
||||
<th>Antibiotik</th>
|
||||
<th>Value</th>
|
||||
<th>Interpretation</th>
|
||||
<th> </th>
|
||||
<th>No</th>
|
||||
<th>Antibiotik</th>
|
||||
<th>Value</th>
|
||||
<th>Interpretation</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@for ($i = 0; $i < $half; $i++)
|
||||
<tr>
|
||||
{{-- Kolom kiri --}}
|
||||
@if (isset($left[$i]))
|
||||
<td>{{ $i + 1 }}</td>
|
||||
<td>{{ $left[$i]->antibiotic }}</td>
|
||||
<td>{{ $left[$i]->printcol == 1 ? $left[$i]->value : '' }}</td>
|
||||
<td align="center">{{ $left[$i]->interpretation }}</td>
|
||||
@else
|
||||
<td colspan="4"> </td>
|
||||
@endif
|
||||
|
||||
<td> </td> {{-- Spacer kolom tengah --}}
|
||||
<td> </td> {{-- Pemisah tengah --}}
|
||||
|
||||
{{-- Kolom kanan --}}
|
||||
@if (isset($right[$i]))
|
||||
<td>{{ $i + 1 + $half }}</td>
|
||||
<td>{{ $right[$i]->antibiotic }}</td>
|
||||
@if (isset($right[$i]->printcol) && $right[$i]->printcol == 1)
|
||||
<td>{{ $right[$i]->value }}</td>
|
||||
@else
|
||||
<td> </td>
|
||||
@endif
|
||||
<td align="center">{{ $right[$i]->interpretation }}</td>
|
||||
@else
|
||||
<td colspan="4"> </td>
|
||||
@endif
|
||||
</tr>
|
||||
@endfor
|
||||
</tbody>
|
||||
</table>
|
||||
{{-- Kolom kanan --}}
|
||||
@if (isset($right[$i]))
|
||||
<td>{{ $i + 1 + $half }}</td>
|
||||
<td>{{ $right[$i]->antibiotic }}</td>
|
||||
<td>{{ $right[$i]->printcol == 1 ? $right[$i]->value : '' }}</td>
|
||||
<td align="center">{{ $right[$i]->interpretation }}</td>
|
||||
@else
|
||||
<td colspan="4"> </td>
|
||||
@endif
|
||||
</tr>
|
||||
@endfor
|
||||
</tbody>
|
||||
</table>
|
||||
@endif
|
||||
@endforeach
|
||||
@endif
|
||||
|
||||
|
||||
@if (isset($data['keterangan']))
|
||||
Komentar:<br />
|
||||
{!! nl2br(e($data['keterangan'])) !!}
|
||||
{!! $data['keterangan'] !!}
|
||||
@endif
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
@@ -292,7 +292,7 @@
|
||||
|
||||
@if (isset($keterangan))
|
||||
Komentar:<br />
|
||||
{!! nl2br(e($keterangan)) !!}
|
||||
{!! $keterangan !!}
|
||||
@endif
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
@@ -1402,9 +1402,12 @@
|
||||
if (isset($data['id_lamariwayatpengobatantb']) && $data['id_lamariwayatpengobatantb'] == 'Riwayat Pengobatan < 5 tahun'){
|
||||
$rw1 = ' ';
|
||||
$rw2 = '√';
|
||||
} else {
|
||||
} else if (isset($data['id_lamariwayatpengobatantb']) && $data['id_lamariwayatpengobatantb'] == 'Riwayat Pengobatan >= 5 tahun'){
|
||||
$rw2 = ' ';
|
||||
$rw1 = '√';
|
||||
} else {
|
||||
$rw2 = ' ';
|
||||
$rw1 = ' ';
|
||||
}
|
||||
echo $rw1;
|
||||
@endphp
|
||||
@@ -1475,10 +1478,14 @@
|
||||
$d1 = ' ';
|
||||
$d2 = '√';
|
||||
$d3 = ' ';
|
||||
} else {
|
||||
} else if (isset($data['id_alasanpemeriksaan']) && $data['id_alasanpemeriksaan'] == 'Akhir Pengobatan'){
|
||||
$d1 = ' ';
|
||||
$d3 = '√';
|
||||
$d2 = ' ';
|
||||
} else {
|
||||
$d1 = ' ';
|
||||
$d3 = ' ';
|
||||
$d2 = ' ';
|
||||
}
|
||||
echo $d1;
|
||||
@endphp
|
||||
@@ -2387,6 +2394,44 @@
|
||||
<td class=xl123> </td>
|
||||
<td class=xl117> </td>
|
||||
</tr>
|
||||
@if (isset($data['hasilpemeriksaantbbiakan_pagi']))
|
||||
@php
|
||||
$hasilpemeriksaantbbiakan_pagi = $data['hasilpemeriksaantbbiakan_pagi'];
|
||||
if ($hasilpemeriksaantbbiakan_pagi == '+++') {
|
||||
$hasilpemeriksaantbbiakan_pagi01 = '√';
|
||||
} else {
|
||||
$hasilpemeriksaantbbiakan_pagi01 = ' ';
|
||||
}
|
||||
if ($hasilpemeriksaantbbiakan_pagi == '++') {
|
||||
$hasilpemeriksaantbbiakan_pagi02 = '√';
|
||||
} else {
|
||||
$hasilpemeriksaantbbiakan_pagi02 = ' ';
|
||||
}
|
||||
if ($hasilpemeriksaantbbiakan_pagi == '+') {
|
||||
$hasilpemeriksaantbbiakan_pagi03 = '√';
|
||||
} else {
|
||||
$hasilpemeriksaantbbiakan_pagi03 = ' ';
|
||||
}
|
||||
if ($hasilpemeriksaantbbiakan_pagi == '1-9') {
|
||||
$hasilpemeriksaantbbiakan_pagi04 = '√';
|
||||
} else {
|
||||
$hasilpemeriksaantbbiakan_pagi04 = ' ';
|
||||
}
|
||||
if ($hasilpemeriksaantbbiakan_pagi == 'Neg') {
|
||||
$hasilpemeriksaantbbiakan_pagi05 = '√';
|
||||
} else {
|
||||
$hasilpemeriksaantbbiakan_pagi05 = ' ';
|
||||
}
|
||||
@endphp
|
||||
@else
|
||||
@php
|
||||
$hasilpemeriksaantbbiakan_pagi01 = ' ';
|
||||
$hasilpemeriksaantbbiakan_pagi02 = ' ';
|
||||
$hasilpemeriksaantbbiakan_pagi03 = ' ';
|
||||
$hasilpemeriksaantbbiakan_pagi04 = ' ';
|
||||
$hasilpemeriksaantbbiakan_pagi05 = ' ';
|
||||
@endphp
|
||||
@endif
|
||||
<tr style='mso-height-source:userset;height:16.0pt'>
|
||||
<td class=xl64 style='height:16.0pt'> </td>
|
||||
<td class=xl102> </td>
|
||||
@@ -2398,7 +2443,7 @@
|
||||
@if (isset($data['inlineCheckbox12']) && $data['inlineCheckbox12'] != '')
|
||||
√
|
||||
@else
|
||||
|
||||
{!! $hasilpemeriksaantbbiakan_pagi01 !!}
|
||||
@endif
|
||||
</td>
|
||||
<td class=xl116> </td>
|
||||
@@ -2407,7 +2452,7 @@
|
||||
@if (isset($data['inlineCheckbox13']) && $data['inlineCheckbox13'] != '')
|
||||
√
|
||||
@else
|
||||
|
||||
{!! $hasilpemeriksaantbbiakan_pagi02 !!}
|
||||
@endif
|
||||
</td>
|
||||
<td class=xl116> </td>
|
||||
@@ -2416,7 +2461,7 @@
|
||||
@if (isset($data['inlineCheckbox14']) && $data['inlineCheckbox14'] != '')
|
||||
√
|
||||
@else
|
||||
|
||||
{!! $hasilpemeriksaantbbiakan_pagi03 !!}
|
||||
@endif
|
||||
</td>
|
||||
<td class=xl116> </td>
|
||||
@@ -2425,7 +2470,7 @@
|
||||
@if (isset($data['inlineCheckbox15']) && $data['inlineCheckbox15'] != '')
|
||||
√
|
||||
@else
|
||||
|
||||
{!! $hasilpemeriksaantbbiakan_pagi04 !!}
|
||||
@endif
|
||||
</td>
|
||||
<td class=xl116> </td>
|
||||
@@ -2434,7 +2479,7 @@
|
||||
@if (isset($data['inlineCheckbox16']) && $data['inlineCheckbox16'] != '')
|
||||
√
|
||||
@else
|
||||
|
||||
{!! $hasilpemeriksaantbbiakan_pagi05 !!}
|
||||
@endif
|
||||
</td>
|
||||
<td class=xl125> </td>
|
||||
@@ -2509,6 +2554,44 @@
|
||||
<td class=xl123></td>
|
||||
<td class=xl117></td>
|
||||
</tr>
|
||||
@if (isset($data['hasilpemeriksaantbbiakan_sewaktu']))
|
||||
@php
|
||||
$hasilpemeriksaantbbiakan_sewaktu = $data['hasilpemeriksaantbbiakan_sewaktu'];
|
||||
if ($hasilpemeriksaantbbiakan_sewaktu == '+++') {
|
||||
$hasilpemeriksaantbbiakan_sewaktu01 = '√';
|
||||
} else {
|
||||
$hasilpemeriksaantbbiakan_sewaktu01 = ' ';
|
||||
}
|
||||
if ($hasilpemeriksaantbbiakan_sewaktu == '++') {
|
||||
$hasilpemeriksaantbbiakan_sewaktu02 = '√';
|
||||
} else {
|
||||
$hasilpemeriksaantbbiakan_sewaktu02 = ' ';
|
||||
}
|
||||
if ($hasilpemeriksaantbbiakan_sewaktu == '+') {
|
||||
$hasilpemeriksaantbbiakan_sewaktu03 = '√';
|
||||
} else {
|
||||
$hasilpemeriksaantbbiakan_sewaktu03 = ' ';
|
||||
}
|
||||
if ($hasilpemeriksaantbbiakan_sewaktu == '1-9') {
|
||||
$hasilpemeriksaantbbiakan_sewaktu04 = '√';
|
||||
} else {
|
||||
$hasilpemeriksaantbbiakan_sewaktu04 = ' ';
|
||||
}
|
||||
if ($hasilpemeriksaantbbiakan_sewaktu == 'Neg') {
|
||||
$hasilpemeriksaantbbiakan_sewaktu05 = '√';
|
||||
} else {
|
||||
$hasilpemeriksaantbbiakan_sewaktu05 = ' ';
|
||||
}
|
||||
@endphp
|
||||
@else
|
||||
@php
|
||||
$hasilpemeriksaantbbiakan_sewaktu01 = ' ';
|
||||
$hasilpemeriksaantbbiakan_sewaktu02 = ' ';
|
||||
$hasilpemeriksaantbbiakan_sewaktu03 = ' ';
|
||||
$hasilpemeriksaantbbiakan_sewaktu04 = ' ';
|
||||
$hasilpemeriksaantbbiakan_sewaktu05 = ' ';
|
||||
@endphp
|
||||
@endif
|
||||
<tr style='mso-height-source:userset;height:16.0pt'>
|
||||
<td class=xl64 style='height:16.0pt'> </td>
|
||||
<td class=xl102> </td>
|
||||
@@ -2520,7 +2603,7 @@
|
||||
@if (isset($data['inlineCheckbox17']) && $data['inlineCheckbox17'] != '')
|
||||
√
|
||||
@else
|
||||
|
||||
{!! $hasilpemeriksaantbbiakan_sewaktu01 !!}
|
||||
@endif
|
||||
</td>
|
||||
<td class=xl116> </td>
|
||||
@@ -2529,7 +2612,7 @@
|
||||
@if (isset($data['inlineCheckbox18']) && $data['inlineCheckbox18'] != '')
|
||||
√
|
||||
@else
|
||||
|
||||
{!! $hasilpemeriksaantbbiakan_sewaktu02 !!}
|
||||
@endif
|
||||
</td>
|
||||
<td class=xl116> </td>
|
||||
@@ -2538,7 +2621,7 @@
|
||||
@if (isset($data['inlineCheckbox19']) && $data['inlineCheckbox19'] != '')
|
||||
√
|
||||
@else
|
||||
|
||||
{!! $hasilpemeriksaantbbiakan_sewaktu03 !!}
|
||||
@endif
|
||||
</td>
|
||||
<td class=xl116> </td>
|
||||
@@ -2547,7 +2630,7 @@
|
||||
@if (isset($data['inlineCheckbox20']) && $data['inlineCheckbox20'] != '')
|
||||
√
|
||||
@else
|
||||
|
||||
{!! $hasilpemeriksaantbbiakan_sewaktu04 !!}
|
||||
@endif
|
||||
</td>
|
||||
<td class=xl116> </td>
|
||||
@@ -2556,7 +2639,7 @@
|
||||
@if (isset($data['inlineCheckbox21']) && $data['inlineCheckbox21'] != '')
|
||||
√
|
||||
@else
|
||||
|
||||
{!! $hasilpemeriksaantbbiakan_sewaktu05 !!}
|
||||
@endif
|
||||
</td>
|
||||
<td class=xl125> </td>
|
||||
@@ -2641,6 +2724,44 @@
|
||||
<td colspan=3 class=xl109 width=60 style='border-right:.5pt solid black; border-left:none;width:45pt'>Metode Uji</td>
|
||||
<td colspan=25 class=xl106 style='border-right:.5pt solid black;border-left: none'>Hasil Pemeriksaan Mikroskopis (BTA/lainnya) **)</td>
|
||||
</tr>
|
||||
@if (isset($data['hasilpemeriksaantbbiakan_hasilbiakanmgit']))
|
||||
@php
|
||||
$hasilpemeriksaantbbiakan_hasilbiakanmgit = $data['hasilpemeriksaantbbiakan_hasilbiakanmgit'];
|
||||
if ($hasilpemeriksaantbbiakan_hasilbiakanmgit == 'Pos') {
|
||||
$hasilpemeriksaantbbiakan_hasilbiakanmgit01 = '√';
|
||||
} else {
|
||||
$hasilpemeriksaantbbiakan_hasilbiakanmgit01 = ' ';
|
||||
}
|
||||
if ($hasilpemeriksaantbbiakan_hasilbiakanmgit == 'Neg') {
|
||||
$hasilpemeriksaantbbiakan_hasilbiakanmgit02 = '√';
|
||||
} else {
|
||||
$hasilpemeriksaantbbiakan_hasilbiakanmgit02 = ' ';
|
||||
}
|
||||
if ($hasilpemeriksaantbbiakan_hasilbiakanmgit == 'NTM') {
|
||||
$hasilpemeriksaantbbiakan_hasilbiakanmgit03 = '√';
|
||||
} else {
|
||||
$hasilpemeriksaantbbiakan_hasilbiakanmgit03 = ' ';
|
||||
}
|
||||
if ($hasilpemeriksaantbbiakan_hasilbiakanmgit == 'KTM') {
|
||||
$hasilpemeriksaantbbiakan_hasilbiakanmgit04 = '√';
|
||||
} else {
|
||||
$hasilpemeriksaantbbiakan_hasilbiakanmgit04 = ' ';
|
||||
}
|
||||
if ($hasilpemeriksaantbbiakan_hasilbiakanmgit == 'TDL') {
|
||||
$hasilpemeriksaantbbiakan_hasilbiakanmgit05 = '√';
|
||||
} else {
|
||||
$hasilpemeriksaantbbiakan_hasilbiakanmgit05 = ' ';
|
||||
}
|
||||
@endphp
|
||||
@else
|
||||
@php
|
||||
$hasilpemeriksaantbbiakan_hasilbiakanmgit01 = ' ';
|
||||
$hasilpemeriksaantbbiakan_hasilbiakanmgit02 = ' ';
|
||||
$hasilpemeriksaantbbiakan_hasilbiakanmgit03 = ' ';
|
||||
$hasilpemeriksaantbbiakan_hasilbiakanmgit04 = ' ';
|
||||
$hasilpemeriksaantbbiakan_hasilbiakanmgit05 = ' ';
|
||||
@endphp
|
||||
@endif
|
||||
<tr>
|
||||
<td class=xl64> </td>
|
||||
<td colspan=3 class=xl74 style='border-right:.5pt solid black'> </td>
|
||||
@@ -2672,7 +2793,7 @@
|
||||
@if (isset($data['inlineCheckbox22']) && $data['inlineCheckbox22'] != '')
|
||||
√
|
||||
@else
|
||||
|
||||
{!! $hasilpemeriksaantbbiakan_hasilbiakanmgit01 !!}
|
||||
@endif
|
||||
</td>
|
||||
<td class=xl116> </td>
|
||||
@@ -2681,7 +2802,7 @@
|
||||
@if (isset($data['inlineCheckbox23']) && $data['inlineCheckbox23'] != '')
|
||||
√
|
||||
@else
|
||||
|
||||
{!! $hasilpemeriksaantbbiakan_hasilbiakanmgit02 !!}
|
||||
@endif
|
||||
</td>
|
||||
<td class=xl116> </td>
|
||||
@@ -2690,7 +2811,7 @@
|
||||
@if (isset($data['inlineCheckbox24']) && $data['inlineCheckbox24'] != '')
|
||||
√
|
||||
@else
|
||||
|
||||
{!! $hasilpemeriksaantbbiakan_hasilbiakanmgit03 !!}
|
||||
@endif
|
||||
</td>
|
||||
<td class=xl116> </td>
|
||||
@@ -2699,7 +2820,7 @@
|
||||
@if (isset($data['inlineCheckbox25']) && $data['inlineCheckbox25'] != '')
|
||||
√
|
||||
@else
|
||||
|
||||
{!! $hasilpemeriksaantbbiakan_hasilbiakanmgit04 !!}
|
||||
@endif
|
||||
</td>
|
||||
<td class=xl116> </td>
|
||||
@@ -2708,7 +2829,7 @@
|
||||
@if (isset($data['inlineCheckbox26']) && $data['inlineCheckbox26'] != '')
|
||||
√
|
||||
@else
|
||||
|
||||
{!! $hasilpemeriksaantbbiakan_hasilbiakanmgit05 !!}
|
||||
@endif
|
||||
</td>
|
||||
<td class=xl117> </td>
|
||||
@@ -2779,6 +2900,62 @@
|
||||
<td class=xl124></td>
|
||||
<td class=xl114></td>
|
||||
</tr>
|
||||
@if (isset($data['hasilpemeriksaantbbiakan_hasilbiakanlj']))
|
||||
@php
|
||||
$hasilpemeriksaantbbiakan_hasilbiakanlj = $data['hasilpemeriksaantbbiakan_hasilbiakanlj'];
|
||||
if ($hasilpemeriksaantbbiakan_hasilbiakanlj == '3+') {
|
||||
$hasilpemeriksaantbbiakan_hasilbiakanlj01 = '√';
|
||||
} else {
|
||||
$hasilpemeriksaantbbiakan_hasilbiakanlj01 = ' ';
|
||||
}
|
||||
if ($hasilpemeriksaantbbiakan_hasilbiakanlj == '3+') {
|
||||
$hasilpemeriksaantbbiakan_hasilbiakanlj02 = '√';
|
||||
} else {
|
||||
$hasilpemeriksaantbbiakan_hasilbiakanlj02 = ' ';
|
||||
}
|
||||
if ($hasilpemeriksaantbbiakan_hasilbiakanlj == '1+') {
|
||||
$hasilpemeriksaantbbiakan_hasilbiakanlj03 = '√';
|
||||
} else {
|
||||
$hasilpemeriksaantbbiakan_hasilbiakanlj03 = ' ';
|
||||
}
|
||||
if ($hasilpemeriksaantbbiakan_hasilbiakanlj == '1-9') {
|
||||
$hasilpemeriksaantbbiakan_hasilbiakanlj04 = '√';
|
||||
} else {
|
||||
$hasilpemeriksaantbbiakan_hasilbiakanlj04 = ' ';
|
||||
}
|
||||
if ($hasilpemeriksaantbbiakan_hasilbiakanlj == 'Neg') {
|
||||
$hasilpemeriksaantbbiakan_hasilbiakanlj05 = '√';
|
||||
} else {
|
||||
$hasilpemeriksaantbbiakan_hasilbiakanlj05 = ' ';
|
||||
}
|
||||
if ($hasilpemeriksaantbbiakan_hasilbiakanlj == 'NTM') {
|
||||
$hasilpemeriksaantbbiakan_hasilbiakanlj06 = '√';
|
||||
} else {
|
||||
$hasilpemeriksaantbbiakan_hasilbiakanlj06 = ' ';
|
||||
}
|
||||
if ($hasilpemeriksaantbbiakan_hasilbiakanlj == 'KTM') {
|
||||
$hasilpemeriksaantbbiakan_hasilbiakanlj07 = '√';
|
||||
} else {
|
||||
$hasilpemeriksaantbbiakan_hasilbiakanlj07 = ' ';
|
||||
}
|
||||
if ($hasilpemeriksaantbbiakan_hasilbiakanlj == 'TDL') {
|
||||
$hasilpemeriksaantbbiakan_hasilbiakanlj08 = '√';
|
||||
} else {
|
||||
$hasilpemeriksaantbbiakan_hasilbiakanlj08 = ' ';
|
||||
}
|
||||
@endphp
|
||||
@else
|
||||
@php
|
||||
$hasilpemeriksaantbbiakan_hasilbiakanlj01 = ' ';
|
||||
$hasilpemeriksaantbbiakan_hasilbiakanlj02 = ' ';
|
||||
$hasilpemeriksaantbbiakan_hasilbiakanlj03 = ' ';
|
||||
$hasilpemeriksaantbbiakan_hasilbiakanlj04 = ' ';
|
||||
$hasilpemeriksaantbbiakan_hasilbiakanlj05 = ' ';
|
||||
$hasilpemeriksaantbbiakan_hasilbiakanlj06 = ' ';
|
||||
$hasilpemeriksaantbbiakan_hasilbiakanlj07 = ' ';
|
||||
$hasilpemeriksaantbbiakan_hasilbiakanlj08 = ' ';
|
||||
@endphp
|
||||
@endif
|
||||
<tr>
|
||||
<td class=xl64> </td>
|
||||
<td class=xl88> </td>
|
||||
@@ -2813,7 +2990,7 @@
|
||||
@if (isset($data['inlineCheckbox27']) && $data['inlineCheckbox27'] != '')
|
||||
√
|
||||
@else
|
||||
|
||||
{!! $hasilpemeriksaantbbiakan_hasilbiakanlj01 !!}
|
||||
@endif
|
||||
</td>
|
||||
<td class=xl116> </td>
|
||||
@@ -2821,7 +2998,7 @@
|
||||
@if (isset($data['inlineCheckbox28']) && $data['inlineCheckbox28'] != '')
|
||||
√
|
||||
@else
|
||||
|
||||
{!! $hasilpemeriksaantbbiakan_hasilbiakanlj02 !!}
|
||||
@endif
|
||||
</td>
|
||||
<td class=xl125> </td>
|
||||
@@ -2829,7 +3006,7 @@
|
||||
@if (isset($data['inlineCheckbox29']) && $data['inlineCheckbox29'] != '')
|
||||
√
|
||||
@else
|
||||
|
||||
{!! $hasilpemeriksaantbbiakan_hasilbiakanlj03 !!}
|
||||
@endif
|
||||
</td>
|
||||
<td class=xl116> </td>
|
||||
@@ -2837,7 +3014,7 @@
|
||||
@if (isset($data['inlineCheckbox30']) && $data['inlineCheckbox30'] != '')
|
||||
√
|
||||
@else
|
||||
|
||||
{!! $hasilpemeriksaantbbiakan_hasilbiakanlj04 !!}
|
||||
@endif
|
||||
</td>
|
||||
<td class=xl125> </td>
|
||||
@@ -2845,7 +3022,7 @@
|
||||
@if (isset($data['inlineCheckbox31']) && $data['inlineCheckbox31'] != '')
|
||||
√
|
||||
@else
|
||||
|
||||
{!! $hasilpemeriksaantbbiakan_hasilbiakanlj05 !!}
|
||||
@endif
|
||||
</td>
|
||||
<td class=xl116> </td>
|
||||
@@ -2853,7 +3030,7 @@
|
||||
@if (isset($data['inlineCheckbox32']) && $data['inlineCheckbox32'] != '')
|
||||
√
|
||||
@else
|
||||
|
||||
{!! $hasilpemeriksaantbbiakan_hasilbiakanlj06 !!}
|
||||
@endif
|
||||
</td>
|
||||
<td class=xl116> </td>
|
||||
@@ -2861,7 +3038,7 @@
|
||||
@if (isset($data['inlineCheckbox33']) && $data['inlineCheckbox33'] != '')
|
||||
√
|
||||
@else
|
||||
|
||||
{!! $hasilpemeriksaantbbiakan_hasilbiakanlj07 !!}
|
||||
@endif
|
||||
</td>
|
||||
<td class=xl125> </td>
|
||||
@@ -2869,7 +3046,7 @@
|
||||
@if (isset($data['inlineCheckbox34']) && $data['inlineCheckbox34'] != '')
|
||||
√
|
||||
@else
|
||||
|
||||
{!! $hasilpemeriksaantbbiakan_hasilbiakanlj08 !!}
|
||||
@endif
|
||||
</td>
|
||||
<td class=xl117> </td>
|
||||
@@ -2948,14 +3125,14 @@
|
||||
<td class=xl64> </td>
|
||||
<td class=xl64> </td>
|
||||
<td class=xl64> </td>
|
||||
<td colspan=21 class=xl98><!-- $ttdexecutor --> </td>
|
||||
<td colspan=21 class=xl98>{!! $ttdanalis !!}</td>
|
||||
<td colspan=12 class=xl98>{!! $tandatangan !!}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class=xl64> </td>
|
||||
<td class=xl64> </td>
|
||||
<td class=xl64> </td>
|
||||
<td colspan=21 class=xl70>{{ $periksa->nmanalis }}</td>
|
||||
<td colspan=21 class=xl70>{!! $periksa->nmanalis !!}</td>
|
||||
<td colspan=12 class=xl70>{!! $periksa->nmdokter !!}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
@@ -3021,6 +3198,7 @@
|
||||
<td width=23 style='width:17pt'> </td>
|
||||
</tr>
|
||||
<![endif]>
|
||||
<font color="white">ekspertisetbbiakan</font>
|
||||
</table>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -1402,9 +1402,12 @@
|
||||
if (isset($data['id_lamariwayatpengobatantb']) && $data['id_lamariwayatpengobatantb'] == 'Riwayat Pengobatan < 5 tahun'){
|
||||
$rw1 = ' ';
|
||||
$rw2 = '√';
|
||||
} else {
|
||||
} else if (isset($data['id_lamariwayatpengobatantb']) && $data['id_lamariwayatpengobatantb'] == 'Riwayat Pengobatan >= 5 tahun'){
|
||||
$rw2 = ' ';
|
||||
$rw1 = '√';
|
||||
} else {
|
||||
$rw2 = ' ';
|
||||
$rw1 = ' ';
|
||||
}
|
||||
echo $rw1;
|
||||
@endphp
|
||||
@@ -1475,10 +1478,14 @@
|
||||
$d1 = ' ';
|
||||
$d2 = '√';
|
||||
$d3 = ' ';
|
||||
} else {
|
||||
} else if (isset($data['id_alasanpemeriksaan']) && $data['id_alasanpemeriksaan'] == 'Akhir Pengobatan'){
|
||||
$d1 = ' ';
|
||||
$d3 = '√';
|
||||
$d2 = ' ';
|
||||
} else {
|
||||
$d1 = ' ';
|
||||
$d3 = ' ';
|
||||
$d2 = ' ';
|
||||
}
|
||||
echo $d1;
|
||||
@endphp
|
||||
@@ -2361,6 +2368,44 @@
|
||||
<td class=xl123> </td>
|
||||
<td class=xl117> </td>
|
||||
</tr>
|
||||
@if (isset($data['hasilpemeriksaantmikroskopis_hasilsewaktu']))
|
||||
@php
|
||||
$hasilpemeriksaantmikroskopis_hasilsewaktu = $data['hasilpemeriksaantmikroskopis_hasilsewaktu'];
|
||||
if ($hasilpemeriksaantmikroskopis_hasilsewaktu == '+++') {
|
||||
$hasilpemeriksaantmikroskopis_hasilsewaktu01 = '√';
|
||||
} else {
|
||||
$hasilpemeriksaantmikroskopis_hasilsewaktu01 = ' ';
|
||||
}
|
||||
if ($hasilpemeriksaantmikroskopis_hasilsewaktu == '++') {
|
||||
$hasilpemeriksaantmikroskopis_hasilsewaktu02 = '√';
|
||||
} else {
|
||||
$hasilpemeriksaantmikroskopis_hasilsewaktu02 = ' ';
|
||||
}
|
||||
if ($hasilpemeriksaantmikroskopis_hasilsewaktu == '+') {
|
||||
$hasilpemeriksaantmikroskopis_hasilsewaktu03 = '√';
|
||||
} else {
|
||||
$hasilpemeriksaantmikroskopis_hasilsewaktu03 = ' ';
|
||||
}
|
||||
if ($hasilpemeriksaantmikroskopis_hasilsewaktu == '1-9') {
|
||||
$hasilpemeriksaantmikroskopis_hasilsewaktu04 = '√';
|
||||
} else {
|
||||
$hasilpemeriksaantmikroskopis_hasilsewaktu04 = ' ';
|
||||
}
|
||||
if ($hasilpemeriksaantmikroskopis_hasilsewaktu == 'Neg') {
|
||||
$hasilpemeriksaantmikroskopis_hasilsewaktu05 = '√';
|
||||
} else {
|
||||
$hasilpemeriksaantmikroskopis_hasilsewaktu05 = ' ';
|
||||
}
|
||||
@endphp
|
||||
@else
|
||||
@php
|
||||
$hasilpemeriksaantmikroskopis_hasilsewaktu01 = ' ';
|
||||
$hasilpemeriksaantmikroskopis_hasilsewaktu02 = ' ';
|
||||
$hasilpemeriksaantmikroskopis_hasilsewaktu03 = ' ';
|
||||
$hasilpemeriksaantmikroskopis_hasilsewaktu04 = ' ';
|
||||
$hasilpemeriksaantmikroskopis_hasilsewaktu05 = ' ';
|
||||
@endphp
|
||||
@endif
|
||||
<tr style='mso-height-source:userset;height:16.0pt'>
|
||||
<td class=xl64 style='height:16.0pt'> </td>
|
||||
<td class=xl102> </td>
|
||||
@@ -2372,7 +2417,7 @@
|
||||
@if (isset($data['inlineCheckbox35']) && $data['inlineCheckbox35'] != '')
|
||||
√
|
||||
@else
|
||||
|
||||
{!! $hasilpemeriksaantmikroskopis_hasilsewaktu01 !!}
|
||||
@endif
|
||||
</td>
|
||||
<td class=xl116> </td>
|
||||
@@ -2381,7 +2426,7 @@
|
||||
@if (isset($data['inlineCheckbox36']) && $data['inlineCheckbox36'] != '')
|
||||
√
|
||||
@else
|
||||
|
||||
{!! $hasilpemeriksaantmikroskopis_hasilsewaktu02 !!}
|
||||
@endif
|
||||
</td>
|
||||
<td class=xl116> </td>
|
||||
@@ -2390,7 +2435,7 @@
|
||||
@if (isset($data['inlineCheckbox37']) && $data['inlineCheckbox37'] != '')
|
||||
√
|
||||
@else
|
||||
|
||||
{!! $hasilpemeriksaantmikroskopis_hasilsewaktu03 !!}
|
||||
@endif
|
||||
</td>
|
||||
<td class=xl116> </td>
|
||||
@@ -2399,7 +2444,7 @@
|
||||
@if (isset($data['inlineCheckbox38']) && $data['inlineCheckbox38'] != '')
|
||||
√
|
||||
@else
|
||||
|
||||
{!! $hasilpemeriksaantmikroskopis_hasilsewaktu04 !!}
|
||||
@endif
|
||||
</td>
|
||||
<td class=xl116> </td>
|
||||
@@ -2408,7 +2453,7 @@
|
||||
@if (isset($data['inlineCheckbox39']) && $data['inlineCheckbox39'] != '')
|
||||
√
|
||||
@else
|
||||
|
||||
{!! $hasilpemeriksaantmikroskopis_hasilsewaktu05 !!}
|
||||
@endif
|
||||
</td>
|
||||
<td class=xl125> </td>
|
||||
@@ -2483,6 +2528,44 @@
|
||||
<td class=xl123></td>
|
||||
<td class=xl117></td>
|
||||
</tr>
|
||||
@if (isset($data['hasilpemeriksaantmikroskopis_hasilpagi']))
|
||||
@php
|
||||
$hasilpemeriksaantmikroskopis_hasilpagi = $data['hasilpemeriksaantmikroskopis_hasilpagi'];
|
||||
if ($hasilpemeriksaantmikroskopis_hasilpagi == '+++') {
|
||||
$hasilpemeriksaantmikroskopis_hasilpagi01 = '√';
|
||||
} else {
|
||||
$hasilpemeriksaantmikroskopis_hasilpagi01 = ' ';
|
||||
}
|
||||
if ($hasilpemeriksaantmikroskopis_hasilpagi == '++') {
|
||||
$hasilpemeriksaantmikroskopis_hasilpagi02 = '√';
|
||||
} else {
|
||||
$hasilpemeriksaantmikroskopis_hasilpagi02 = ' ';
|
||||
}
|
||||
if ($hasilpemeriksaantmikroskopis_hasilpagi == '+') {
|
||||
$hasilpemeriksaantmikroskopis_hasilpagi03 = '√';
|
||||
} else {
|
||||
$hasilpemeriksaantmikroskopis_hasilpagi03 = ' ';
|
||||
}
|
||||
if ($hasilpemeriksaantmikroskopis_hasilpagi == '1-9') {
|
||||
$hasilpemeriksaantmikroskopis_hasilpagi04 = '√';
|
||||
} else {
|
||||
$hasilpemeriksaantmikroskopis_hasilpagi04 = ' ';
|
||||
}
|
||||
if ($hasilpemeriksaantmikroskopis_hasilpagi == 'Neg') {
|
||||
$hasilpemeriksaantmikroskopis_hasilpagi05 = '√';
|
||||
} else {
|
||||
$hasilpemeriksaantmikroskopis_hasilpagi05 = ' ';
|
||||
}
|
||||
@endphp
|
||||
@else
|
||||
@php
|
||||
$hasilpemeriksaantmikroskopis_hasilpagi01 = ' ';
|
||||
$hasilpemeriksaantmikroskopis_hasilpagi02 = ' ';
|
||||
$hasilpemeriksaantmikroskopis_hasilpagi03 = ' ';
|
||||
$hasilpemeriksaantmikroskopis_hasilpagi04 = ' ';
|
||||
$hasilpemeriksaantmikroskopis_hasilpagi05 = ' ';
|
||||
@endphp
|
||||
@endif
|
||||
<tr style='mso-height-source:userset;height:16.0pt'>
|
||||
<td class=xl64 style='height:16.0pt'> </td>
|
||||
<td class=xl102> </td>
|
||||
@@ -2494,7 +2577,7 @@
|
||||
@if (isset($data['inlineCheckbox40']) && $data['inlineCheckbox40'] != '')
|
||||
√
|
||||
@else
|
||||
|
||||
{!! $hasilpemeriksaantmikroskopis_hasilpagi01 !!}
|
||||
@endif
|
||||
</td>
|
||||
<td class=xl116> </td>
|
||||
@@ -2503,7 +2586,7 @@
|
||||
@if (isset($data['inlineCheckbox41']) && $data['inlineCheckbox41'] != '')
|
||||
√
|
||||
@else
|
||||
|
||||
{!! $hasilpemeriksaantmikroskopis_hasilpagi02 !!}
|
||||
@endif
|
||||
</td>
|
||||
<td class=xl116> </td>
|
||||
@@ -2512,7 +2595,7 @@
|
||||
@if (isset($data['inlineCheckbox42']) && $data['inlineCheckbox42'] != '')
|
||||
√
|
||||
@else
|
||||
|
||||
{!! $hasilpemeriksaantmikroskopis_hasilpagi03 !!}
|
||||
@endif
|
||||
</td>
|
||||
<td class=xl116> </td>
|
||||
@@ -2521,7 +2604,7 @@
|
||||
@if (isset($data['inlineCheckbox43']) && $data['inlineCheckbox43'] != '')
|
||||
√
|
||||
@else
|
||||
|
||||
{!! $hasilpemeriksaantmikroskopis_hasilpagi04 !!}
|
||||
@endif
|
||||
</td>
|
||||
<td class=xl116> </td>
|
||||
@@ -2530,7 +2613,7 @@
|
||||
@if (isset($data['inlineCheckbox45']) && $data['inlineCheckbox45'] != '')
|
||||
√
|
||||
@else
|
||||
|
||||
{!! $hasilpemeriksaantmikroskopis_hasilpagi05 !!}
|
||||
@endif
|
||||
</td>
|
||||
<td class=xl125> </td>
|
||||
@@ -2614,7 +2697,7 @@
|
||||
<td class=xl64> </td>
|
||||
<td class=xl64> </td>
|
||||
<td class=xl64> </td>
|
||||
<td colspan=21 class=xl98><!-- $ttdexecutor --> </td>
|
||||
<td colspan=21 class=xl98>{!! $ttdanalis !!}</td>
|
||||
<td colspan=12 class=xl98>{!! $tandatangan !!}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
@@ -2688,6 +2771,7 @@
|
||||
</tr>
|
||||
<![endif]>
|
||||
</table>
|
||||
<font color="white">ekspertisetbmikroskopis</font>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -753,9 +753,12 @@
|
||||
if (isset($data['id_lamariwayatpengobatantb']) && $data['id_lamariwayatpengobatantb'] == 'Riwayat Pengobatan < 5 tahun'){
|
||||
$rw1 = ' ';
|
||||
$rw2 = '√';
|
||||
} else {
|
||||
} else if (isset($data['id_lamariwayatpengobatantb']) && $data['id_lamariwayatpengobatantb'] == 'Riwayat Pengobatan >= 5 tahun'){
|
||||
$rw2 = ' ';
|
||||
$rw1 = '√';
|
||||
} else {
|
||||
$rw2 = ' ';
|
||||
$rw1 = ' ';
|
||||
}
|
||||
@endphp
|
||||
<tr style='height:16.0pt'>
|
||||
@@ -805,10 +808,14 @@
|
||||
$d1 = ' ';
|
||||
$d2 = '√';
|
||||
$d3 = ' ';
|
||||
} else {
|
||||
} else if (isset($data['id_alasanpemeriksaan']) && $data['id_alasanpemeriksaan'] == 'Akhir Pengobatan'){
|
||||
$d1 = ' ';
|
||||
$d3 = '√';
|
||||
$d2 = ' ';
|
||||
} else {
|
||||
$d1 = ' ';
|
||||
$d3 = ' ';
|
||||
$d2 = ' ';
|
||||
}
|
||||
@endphp
|
||||
<tr style='height:16.0pt'>
|
||||
@@ -1221,58 +1228,108 @@
|
||||
<td class=xl80>Error</td>
|
||||
<td colspan=2 class=xl80 style='border-right:.5pt solid black'>No Result</td>
|
||||
</tr>
|
||||
@if (isset($data['hasilpemeriksaanttcmmtbrifxpert_hasilsewaktu']))
|
||||
@php
|
||||
$hasilpemeriksaanttcmmtbrifxpert_hasilsewaktu = $data['hasilpemeriksaanttcmmtbrifxpert_hasilsewaktu'];
|
||||
if ($hasilpemeriksaanttcmmtbrifxpert_hasilsewaktu == 'Neg') {
|
||||
$hasilpemeriksaanttcmmtbrifxpert_hasilsewaktu01 = '√';
|
||||
} else {
|
||||
$hasilpemeriksaanttcmmtbrifxpert_hasilsewaktu01 = ' ';
|
||||
}
|
||||
if ($hasilpemeriksaanttcmmtbrifxpert_hasilsewaktu == 'Rif Sen') {
|
||||
$hasilpemeriksaanttcmmtbrifxpert_hasilsewaktu02 = '√';
|
||||
} else {
|
||||
$hasilpemeriksaanttcmmtbrifxpert_hasilsewaktu02 = ' ';
|
||||
}
|
||||
if ($hasilpemeriksaanttcmmtbrifxpert_hasilsewaktu == 'Rif Res') {
|
||||
$hasilpemeriksaanttcmmtbrifxpert_hasilsewaktu03 = '√';
|
||||
} else {
|
||||
$hasilpemeriksaanttcmmtbrifxpert_hasilsewaktu03 = ' ';
|
||||
}
|
||||
if ($hasilpemeriksaanttcmmtbrifxpert_hasilsewaktu == 'Rif Indet') {
|
||||
$hasilpemeriksaanttcmmtbrifxpert_hasilsewaktu04 = '√';
|
||||
} else {
|
||||
$hasilpemeriksaanttcmmtbrifxpert_hasilsewaktu04 = ' ';
|
||||
}
|
||||
if ($hasilpemeriksaanttcmmtbrifxpert_hasilsewaktu == 'Invalid') {
|
||||
$hasilpemeriksaanttcmmtbrifxpert_hasilsewaktu05 = '√';
|
||||
} else {
|
||||
$hasilpemeriksaanttcmmtbrifxpert_hasilsewaktu05 = ' ';
|
||||
}
|
||||
if ($hasilpemeriksaanttcmmtbrifxpert_hasilsewaktu == 'Error') {
|
||||
$hasilpemeriksaanttcmmtbrifxpert_hasilsewaktu06 = '√';
|
||||
} else {
|
||||
$hasilpemeriksaanttcmmtbrifxpert_hasilsewaktu06 = ' ';
|
||||
}
|
||||
if ($hasilpemeriksaanttcmmtbrifxpert_hasilsewaktu == 'No result') {
|
||||
$hasilpemeriksaanttcmmtbrifxpert_hasilsewaktu07 = '√';
|
||||
} else {
|
||||
$hasilpemeriksaanttcmmtbrifxpert_hasilsewaktu07 = ' ';
|
||||
}
|
||||
@endphp
|
||||
@else
|
||||
@php
|
||||
$hasilpemeriksaanttcmmtbrifxpert_hasilsewaktu01 = ' ';
|
||||
$hasilpemeriksaanttcmmtbrifxpert_hasilsewaktu02 = ' ';
|
||||
$hasilpemeriksaanttcmmtbrifxpert_hasilsewaktu03 = ' ';
|
||||
$hasilpemeriksaanttcmmtbrifxpert_hasilsewaktu04 = ' ';
|
||||
$hasilpemeriksaanttcmmtbrifxpert_hasilsewaktu05 = ' ';
|
||||
$hasilpemeriksaanttcmmtbrifxpert_hasilsewaktu06 = ' ';
|
||||
$hasilpemeriksaanttcmmtbrifxpert_hasilsewaktu07 = ' ';
|
||||
@endphp
|
||||
@endif
|
||||
<tr style='height:16.0pt'>
|
||||
<td style='height:16.0pt'> </td>
|
||||
<td class=xl64>{{$data['hasilpemeriksaanttcmmtbrifxpert_sewaktu'] ?? ''}}</td>
|
||||
<td class=xl73>Swaktu</td>
|
||||
<td class=xl73>Sewaktu</td>
|
||||
<td> </td>
|
||||
<td class=xl79>
|
||||
@if (isset($data['inlineCheckbox46']) && $data['inlineCheckbox46'] != '')
|
||||
√
|
||||
@else
|
||||
|
||||
{!! $hasilpemeriksaanttcmmtbrifxpert_hasilsewaktu01 !!}
|
||||
@endif
|
||||
</td>
|
||||
<td class=xl79 style='border-left:none'>
|
||||
@if (isset($data['inlineCheckbox47']) && $data['inlineCheckbox47'] != '')
|
||||
√
|
||||
@else
|
||||
|
||||
{!! $hasilpemeriksaanttcmmtbrifxpert_hasilsewaktu02 !!}
|
||||
@endif
|
||||
</td>
|
||||
<td class=xl79 style='border-left:none'>
|
||||
@if (isset($data['inlineCheckbox48']) && $data['inlineCheckbox48'] != '')
|
||||
√
|
||||
@else
|
||||
|
||||
{!! $hasilpemeriksaanttcmmtbrifxpert_hasilsewaktu03 !!}
|
||||
@endif
|
||||
</td>
|
||||
<td colspan=2 class=xl79 style='border-left:none'>
|
||||
@if (isset($data['inlineCheckbox49']) && $data['inlineCheckbox49'] != '')
|
||||
√
|
||||
@else
|
||||
|
||||
{!! $hasilpemeriksaanttcmmtbrifxpert_hasilsewaktu04 !!}
|
||||
@endif
|
||||
</td>
|
||||
<td class=xl79 style='border-left:none'>
|
||||
@if (isset($data['inlineCheckbox50']) && $data['inlineCheckbox50'] != '')
|
||||
√
|
||||
@else
|
||||
|
||||
{!! $hasilpemeriksaanttcmmtbrifxpert_hasilsewaktu05 !!}
|
||||
@endif
|
||||
</td>
|
||||
<td class=xl79 style='border-left:none'>
|
||||
@if (isset($data['inlineCheckbox51']) && $data['inlineCheckbox51'] != '')
|
||||
√
|
||||
@else
|
||||
|
||||
{!! $hasilpemeriksaanttcmmtbrifxpert_hasilsewaktu06 !!}
|
||||
@endif
|
||||
</td>
|
||||
<td colspan=2 class=xl79 style='border-left:none'>
|
||||
@if (isset($data['inlineCheckbox52']) && $data['inlineCheckbox52'] != '')
|
||||
√
|
||||
@else
|
||||
|
||||
{!! $hasilpemeriksaanttcmmtbrifxpert_hasilsewaktu07 !!}
|
||||
@endif
|
||||
</td>
|
||||
</tr>
|
||||
@@ -1340,6 +1397,56 @@
|
||||
<td class=xl80>Error</td>
|
||||
<td colspan=2 class=xl80 style='border-right:.5pt solid black'>No Result</td>
|
||||
</tr>
|
||||
@if (isset($data['hasilpemeriksaanttcmmtbrifxpert_hasilpagi']))
|
||||
@php
|
||||
$hasilpemeriksaanttcmmtbrifxpert_hasilpagi = $data['hasilpemeriksaanttcmmtbrifxpert_hasilpagi'];
|
||||
if ($hasilpemeriksaanttcmmtbrifxpert_hasilpagi == 'Neg') {
|
||||
$hasilpemeriksaanttcmmtbrifxpert_hasilpagi01 = '√';
|
||||
} else {
|
||||
$hasilpemeriksaanttcmmtbrifxpert_hasilpagi01 = ' ';
|
||||
}
|
||||
if ($hasilpemeriksaanttcmmtbrifxpert_hasilpagi == 'Rif Sen') {
|
||||
$hasilpemeriksaanttcmmtbrifxpert_hasilpagi02 = '√';
|
||||
} else {
|
||||
$hasilpemeriksaanttcmmtbrifxpert_hasilpagi02 = ' ';
|
||||
}
|
||||
if ($hasilpemeriksaanttcmmtbrifxpert_hasilpagi == 'Rif Res') {
|
||||
$hasilpemeriksaanttcmmtbrifxpert_hasilpagi03 = '√';
|
||||
} else {
|
||||
$hasilpemeriksaanttcmmtbrifxpert_hasilpagi03 = ' ';
|
||||
}
|
||||
if ($hasilpemeriksaanttcmmtbrifxpert_hasilpagi == 'Rif Indet') {
|
||||
$hasilpemeriksaanttcmmtbrifxpert_hasilpagi04 = '√';
|
||||
} else {
|
||||
$hasilpemeriksaanttcmmtbrifxpert_hasilpagi04 = ' ';
|
||||
}
|
||||
if ($hasilpemeriksaanttcmmtbrifxpert_hasilpagi == 'Invalid') {
|
||||
$hasilpemeriksaanttcmmtbrifxpert_hasilpagi05 = '√';
|
||||
} else {
|
||||
$hasilpemeriksaanttcmmtbrifxpert_hasilpagi05 = ' ';
|
||||
}
|
||||
if ($hasilpemeriksaanttcmmtbrifxpert_hasilpagi == 'Error') {
|
||||
$hasilpemeriksaanttcmmtbrifxpert_hasilpagi06 = '√';
|
||||
} else {
|
||||
$hasilpemeriksaanttcmmtbrifxpert_hasilpagi06 = ' ';
|
||||
}
|
||||
if ($hasilpemeriksaanttcmmtbrifxpert_hasilpagi == 'No result') {
|
||||
$hasilpemeriksaanttcmmtbrifxpert_hasilpagi07 = '√';
|
||||
} else {
|
||||
$hasilpemeriksaanttcmmtbrifxpert_hasilpagi07 = ' ';
|
||||
}
|
||||
@endphp
|
||||
@else
|
||||
@php
|
||||
$hasilpemeriksaanttcmmtbrifxpert_hasilpagi01 = ' ';
|
||||
$hasilpemeriksaanttcmmtbrifxpert_hasilpagi02 = ' ';
|
||||
$hasilpemeriksaanttcmmtbrifxpert_hasilpagi03 = ' ';
|
||||
$hasilpemeriksaanttcmmtbrifxpert_hasilpagi04 = ' ';
|
||||
$hasilpemeriksaanttcmmtbrifxpert_hasilpagi05 = ' ';
|
||||
$hasilpemeriksaanttcmmtbrifxpert_hasilpagi06 = ' ';
|
||||
$hasilpemeriksaanttcmmtbrifxpert_hasilpagi07 = ' ';
|
||||
@endphp
|
||||
@endif
|
||||
<tr style='height:16.0pt'>
|
||||
<td style='height:16.0pt'> </td>
|
||||
<td class=xl64>{!! $data['hasilpemeriksaanttcmmtbrifxpert_pagi'] ?? '' !!}</td>
|
||||
@@ -1349,49 +1456,49 @@
|
||||
@if (isset($data['inlineCheckbox53']) && $data['inlineCheckbox53'] != '')
|
||||
√
|
||||
@else
|
||||
|
||||
{!! $hasilpemeriksaanttcmmtbrifxpert_hasilpagi01 !!}
|
||||
@endif
|
||||
</td>
|
||||
<td class=xl79 style='border-left:none'>
|
||||
@if (isset($data['inlineCheckbox54']) && $data['inlineCheckbox54'] != '')
|
||||
√
|
||||
@else
|
||||
|
||||
{!! $hasilpemeriksaanttcmmtbrifxpert_hasilpagi02 !!}
|
||||
@endif
|
||||
</td>
|
||||
<td class=xl79 style='border-left:none'>
|
||||
@if (isset($data['inlineCheckbox55']) && $data['inlineCheckbox55'] != '')
|
||||
√
|
||||
@else
|
||||
|
||||
{!! $hasilpemeriksaanttcmmtbrifxpert_hasilpagi03 !!}
|
||||
@endif
|
||||
</td>
|
||||
<td colspan=2 class=xl79 style='border-left:none'>
|
||||
@if (isset($data['inlineCheckbox56']) && $data['inlineCheckbox56'] != '')
|
||||
√
|
||||
@else
|
||||
|
||||
{!! $hasilpemeriksaanttcmmtbrifxpert_hasilpagi04 !!}
|
||||
@endif
|
||||
</td>
|
||||
<td class=xl79 style='border-left:none'>
|
||||
@if (isset($data['inlineCheckbox57']) && $data['inlineCheckbox57'] != '')
|
||||
√
|
||||
@else
|
||||
|
||||
{!! $hasilpemeriksaanttcmmtbrifxpert_hasilpagi05 !!}
|
||||
@endif
|
||||
</td>
|
||||
<td class=xl79 style='border-left:none'>
|
||||
@if (isset($data['inlineCheckbox58']) && $data['inlineCheckbox58'] != '')
|
||||
√
|
||||
@else
|
||||
|
||||
{!! $hasilpemeriksaanttcmmtbrifxpert_hasilpagi06 !!}
|
||||
@endif
|
||||
</td>
|
||||
<td colspan=2 class=xl79 style='border-left:none'>
|
||||
@if (isset($data['inlineCheckbox59']) && $data['inlineCheckbox59'] != '')
|
||||
√
|
||||
@else
|
||||
|
||||
{!! $hasilpemeriksaanttcmmtbrifxpert_hasilpagi07 !!}
|
||||
@endif
|
||||
</td>
|
||||
</tr>
|
||||
@@ -1457,7 +1564,7 @@
|
||||
</tr>
|
||||
<tr style='mso-height-source:userset;height:40.0pt'>
|
||||
<td colspan=2 style='height:40.0pt;mso-ignore:colspan'></td>
|
||||
<td colspan=13 class=xl83><!-- $ttdexecutor --></td>
|
||||
<td colspan=13 class=xl83>{!! $ttdanalis !!}</td>
|
||||
<td colspan=7 class=xl83>{!! $tandatangan !!}</td>
|
||||
</tr>
|
||||
<tr style='height:16.0pt'>
|
||||
@@ -1502,6 +1609,7 @@
|
||||
<td width=40 style='width:30pt'></td>
|
||||
</tr>
|
||||
<![endif]>
|
||||
<font color="white">ekspertisetbtcmmtb</font>
|
||||
</table>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -752,9 +752,12 @@
|
||||
if (isset($data['id_lamariwayatpengobatantb']) && $data['id_lamariwayatpengobatantb'] == 'Riwayat Pengobatan < 5 tahun'){
|
||||
$rw1 = ' ';
|
||||
$rw2 = '√';
|
||||
} else {
|
||||
} else if (isset($data['id_lamariwayatpengobatantb']) && $data['id_lamariwayatpengobatantb'] == 'Riwayat Pengobatan >= 5 tahun'){
|
||||
$rw2 = ' ';
|
||||
$rw1 = '√';
|
||||
} else {
|
||||
$rw2 = ' ';
|
||||
$rw1 = ' ';
|
||||
}
|
||||
@endphp
|
||||
<tr style='height:16.0pt'>
|
||||
@@ -804,10 +807,14 @@
|
||||
$d1 = ' ';
|
||||
$d2 = '√';
|
||||
$d3 = ' ';
|
||||
} else {
|
||||
} else if (isset($data['id_alasanpemeriksaan']) && $data['id_alasanpemeriksaan'] == 'Akhir Pengobatan'){
|
||||
$d1 = ' ';
|
||||
$d3 = '√';
|
||||
$d2 = ' ';
|
||||
} else {
|
||||
$d1 = ' ';
|
||||
$d3 = ' ';
|
||||
$d2 = ' ';
|
||||
}
|
||||
@endphp
|
||||
<tr style='height:16.0pt'>
|
||||
@@ -1219,6 +1226,7 @@
|
||||
<td colspan=2 class=xl80>FQ</td>
|
||||
<td colspan=2 class=xl80 style='border-right:.5pt solid black'>Invalid</td>
|
||||
</tr>
|
||||
|
||||
<tr style='height:16.0pt'>
|
||||
<td style='height:16.0pt'> </td>
|
||||
<td class=xl64>{!! $data['hasilpemeriksaanttcmmtbxdrxpert_pagi'] ?? ''!!}</td>
|
||||
@@ -1228,7 +1236,7 @@
|
||||
{!! $data['hasilpemeriksaanttcmmtbxdrxpert_pagineg'] ?? ' '!!}
|
||||
</td>
|
||||
<td class=xl79 style='border-left:none'>
|
||||
|
||||
{!! $data['hasilpemeriksaanttcmmtbxdrxpert_paginhlow'] ?? ' '!!}
|
||||
</td>
|
||||
<td class=xl79 style='border-left:none'>
|
||||
{!! $data['hasilpemeriksaanttcmmtbxdrxpert_pagih'] ?? ' '!!}
|
||||
@@ -1319,46 +1327,22 @@
|
||||
<td class=xl73>Sewaktu / Pagi</td>
|
||||
<td> </td>
|
||||
<td class=xl79>
|
||||
@if (isset($data['hasilpemeriksaanttcmmtbxdrxpert_sewaktuneg']) && $data['hasilpemeriksaanttcmmtbxdrxpert_sewaktuneg'] != '')
|
||||
√
|
||||
@else
|
||||
|
||||
@endif
|
||||
{!! $data['hasilpemeriksaanttcmmtbxdrxpert_sewaktuneg'] ?? ' '!!}
|
||||
</td>
|
||||
<td class=xl79 style='border-left:none'>
|
||||
@if (isset($data['hasilpemeriksaanttcmmtbxdrxpert_sewaktunhlow']) && $data['hasilpemeriksaanttcmmtbxdrxpert_sewaktunhlow'] != '')
|
||||
√
|
||||
@else
|
||||
|
||||
@endif
|
||||
{!! $data['hasilpemeriksaanttcmmtbxdrxpert_sewaktunhlow'] ?? ' '!!}
|
||||
</td>
|
||||
<td class=xl79 style='border-left:none'>
|
||||
@if (isset($data['hasilpemeriksaanttcmmtbxdrxpert_sewaktuh']) && $data['hasilpemeriksaanttcmmtbxdrxpert_sewaktuh'] != '')
|
||||
√
|
||||
@else
|
||||
|
||||
@endif
|
||||
{!! $data['hasilpemeriksaanttcmmtbxdrxpert_sewaktuh'] ?? ' '!!}
|
||||
</td>
|
||||
<td colspan=2 class=xl79 style='border-left:none'>
|
||||
@if (isset($data['hasilpemeriksaanttcmmtbxdrxpert_sewaktufqlow']) && $data['hasilpemeriksaanttcmmtbxdrxpert_sewaktufqlow'] != '')
|
||||
√
|
||||
@else
|
||||
|
||||
@endif
|
||||
{!! $data['hasilpemeriksaanttcmmtbxdrxpert_sewaktufqlow'] ?? ' '!!}
|
||||
</td>
|
||||
<td colspan=2 class=xl79 style='border-left:none'>
|
||||
@if (isset($data['hasilpemeriksaanttcmmtbxdrxpert_sewaktufq']) && $data['hasilpemeriksaanttcmmtbxdrxpert_sewaktufq'] != '')
|
||||
√
|
||||
@else
|
||||
|
||||
@endif
|
||||
{!! $data['hasilpemeriksaanttcmmtbxdrxpert_sewaktufq'] ?? ' '!!}
|
||||
</td>
|
||||
<td colspan=2 class=xl79 style='border-left:none'>
|
||||
@if (isset($data['hasilpemeriksaanttcmmtbxdrxpert_sewaktuinvalid']) && $data['hasilpemeriksaanttcmmtbxdrxpert_sewaktuinvalid'] != '')
|
||||
√
|
||||
@else
|
||||
|
||||
@endif
|
||||
{!! $data['hasilpemeriksaanttcmmtbxdrxpert_sewaktuinvalid'] ?? ' '!!}
|
||||
</td>
|
||||
</tr>
|
||||
<tr style='height:16.0pt'>
|
||||
@@ -1376,46 +1360,22 @@
|
||||
<td style='height:16.0pt'> </td>
|
||||
<td> </td>
|
||||
<td class=xl79>
|
||||
@if (isset($data['hasilpemeriksaanttcmmtbxdrxpert_sewaktuamk']) && $data['hasilpemeriksaanttcmmtbxdrxpert_sewaktuamk'] != '')
|
||||
√
|
||||
@else
|
||||
|
||||
@endif
|
||||
{!! $data['hasilpemeriksaanttcmmtbxdrxpert_sewaktuamk'] ?? ' '!!}
|
||||
</td>
|
||||
<td class=xl79 style='border-left:none'>
|
||||
@if (isset($data['hasilpemeriksaanttcmmtbxdrxpert_sewaktukm']) && $data['hasilpemeriksaanttcmmtbxdrxpert_sewaktukm'] != '')
|
||||
√
|
||||
@else
|
||||
|
||||
@endif
|
||||
{!! $data['hasilpemeriksaanttcmmtbxdrxpert_sewaktukm'] ?? ' '!!}
|
||||
</td>
|
||||
<td class=xl79 style='border-left:none'>
|
||||
@if (isset($data['hasilpemeriksaanttcmmtbxdrxpert_sewaktucm']) && $data['hasilpemeriksaanttcmmtbxdrxpert_sewaktucm'] != '')
|
||||
√
|
||||
@else
|
||||
|
||||
@endif
|
||||
{!! $data['hasilpemeriksaanttcmmtbxdrxpert_sewaktucm'] ?? ' '!!}
|
||||
</td>
|
||||
<td colspan=2 class=xl79 style='border-left:none'>
|
||||
@if (isset($data['hasilpemeriksaanttcmmtbxdrxpert_sewaktueto']) && $data['hasilpemeriksaanttcmmtbxdrxpert_sewaktueto'] != '')
|
||||
√
|
||||
@else
|
||||
|
||||
@endif
|
||||
{!! $data['hasilpemeriksaanttcmmtbxdrxpert_sewaktueto'] ?? ' '!!}
|
||||
</td>
|
||||
<td colspan=2 class=xl79 style='border-left:none'>
|
||||
@if (isset($data['hasilpemeriksaanttcmmtbxdrxpert_sewaktuerror']) && $data['hasilpemeriksaanttcmmtbxdrxpert_sewaktuerror'] != '')
|
||||
√
|
||||
@else
|
||||
|
||||
@endif
|
||||
{!! $data['hasilpemeriksaanttcmmtbxdrxpert_sewaktuerror'] ?? ' '!!}
|
||||
</td>
|
||||
<td colspan=2 class=xl79 style='border-left:none'>
|
||||
@if (isset($data['hasilpemeriksaanttcmmtbxdrxpert_sewaktunoresult']) && $data['hasilpemeriksaanttcmmtbxdrxpert_sewaktunoresult'] != '')
|
||||
√
|
||||
@else
|
||||
|
||||
@endif
|
||||
{!! $data['hasilpemeriksaanttcmmtbxdrxpert_sewaktunoresult'] ?? ' '!!}
|
||||
</td>
|
||||
</tr>
|
||||
<tr style='height:16.0pt'>
|
||||
@@ -1454,7 +1414,7 @@
|
||||
</tr>
|
||||
<tr style='mso-height-source:userset;height:40.0pt'>
|
||||
<td colspan=2 style='height:40.0pt;mso-ignore:colspan'></td>
|
||||
<td colspan=13 class=xl83><!-- $ttdexecutor --></td>
|
||||
<td colspan=13 class=xl83>{!! $ttdanalis !!}</td>
|
||||
<td colspan=7 class=xl83>{!! $tandatangan !!}</td>
|
||||
</tr>
|
||||
<tr style='height:16.0pt'>
|
||||
@@ -1500,6 +1460,7 @@
|
||||
</tr>
|
||||
<![endif]>
|
||||
</table>
|
||||
<font color="white">ekspertisetbtcmxdr</font>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -247,7 +247,7 @@
|
||||
@endif
|
||||
@if (isset($data['keterangan']))
|
||||
Komentar:<br />
|
||||
{!! nl2br(e($data['keterangan'])) !!}
|
||||
{!! $data['keterangan'] !!}
|
||||
@endif
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
Reference in New Issue
Block a user