42 lines
1.5 KiB
Handlebars
42 lines
1.5 KiB
Handlebars
|
<center>
|
||
|
<h2>สรุปรอบการรักษา</h2>
|
||
|
<h3>
|
||
|
{{company_name}}<br/>
|
||
|
</h3>
|
||
|
<h4>
|
||
|
ระหว่างวันที่ {{date_from}} ถึง {{date_to}}
|
||
|
</h4>
|
||
|
</center>
|
||
|
<table class="table table-condensed table-striped">
|
||
|
<thead>
|
||
|
<th>#</th>
|
||
|
<th>วันที่</th>
|
||
|
<th>รอบ</th>
|
||
|
<th>HN</th>
|
||
|
<th>ผู้ป่วย</th>
|
||
|
<th>สิทธ์</th>
|
||
|
<th>ชั้น</th>
|
||
|
<th>แพทย์</th>
|
||
|
<th>EPO</th>
|
||
|
<th>HCT</th>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
{{#each lines }}
|
||
|
<tr>
|
||
|
<td>{{no}}</td>
|
||
|
<td><a href="/ui#name=clinic_visit&active_id={{vid}}&mode=form">{{date}}</a></td>
|
||
|
<td><a href="/ui#name=clinic_cycle_item&active_id={{cid}}&mode=form">{{cname}}</a></td>
|
||
|
<td>{{hn}}</td>
|
||
|
<td><a href="/ui#name=clinic_patient&active_id={{pid}}&mode=form">{{pname}}</a></td>
|
||
|
<td><a href="/ui#name=clinic_patient_type&active_id={{tid}}&mode=form">{{tname}}</a></td>
|
||
|
<td><a href="/ui#name=clinic_department&active_id={{dpt_id}}&mode=form">{{dpt_name}}</a></td>
|
||
|
<td><a href="/ui#name=clinic_staff&active_id={{did}}&mode=form">{{dname}}</a></td>
|
||
|
<td>{{epo}}</td>
|
||
|
<td>{{hct}}</td>
|
||
|
</tr>
|
||
|
{{/each}}
|
||
|
</tbody>
|
||
|
<tfoot>
|
||
|
</tfoot>
|
||
|
</table>
|