clinic/netforce_clinic/templates/report_visit.hbs

44 lines
1.5 KiB
Handlebars
Raw Normal View History

2015-01-15 16:18:06 +00:00
<center>
<!--
<h2>ตารางนัดผู้ป่วย</h2>
<h3>
{{parent_company_name}}&nbsp;{{company_name}}<br/>
</h3>
<h4>
{{#if has_duration}}
ระหว่างวันที่ {{date_from}} ถึง {{date_to}}
{{else}}
{{date}}
{{/if}}
</h4>
-->
</center>
<table class="table table-condensed table-striped">
<thead>
<th>#</th>
<th>วันที่</th>
<th>รอบ</th>
2015-01-15 16:26:44 +00:00
<th>HN</th>
2015-01-15 16:18:06 +00:00
<th>ผู้ป่วย</th>
<th>สิทธ์</th>
<th>แพทย์</th>
<th>หมายเหตุ</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&active_id={{cid}}&mode=form">{{cname}}</a></td>
2015-01-15 16:26:44 +00:00
<td>{{hn}}</td>
2015-01-15 16:18:06 +00:00
<td><a href="/ui#name=clinic_patient&active_id={{pid}}&mode=form">{{pname}}</a></td>
<td><a href="/ui#name=clinic_patient&active_id={{tid}}&mode=form">{{tname}}</a></td>
<td><a href="/ui#name=clinic_staff&active_id={{did}}&mode=form">{{dname}}</a></td>
<td style="background-color:{{visit_color}}">{{note}}</td>
</tr>
{{/each}}
</tbody>
<tfoot>
</tfoot>
</table>