clinic/netforce_clinic/templates/report_cycle_item.hbs

43 lines
1.6 KiB
Handlebars
Raw Normal View History

2015-03-06 05:15:19 +00:00
<center>
2015-03-13 16:31:58 +00:00
<h3>{{company_name}}</h3>
2015-03-06 05:15:19 +00:00
<h4>
ระหว่างวันที่ {{date_from}} ถึง {{date_to}}
</h4>
</center>
<table class="table table-condensed table-striped">
<thead>
<th>#</th>
<th>วันที่</th>
<th>รอบ</th>
2015-03-13 16:31:58 +00:00
<th>ชื่อ-สกุล</th>
2015-03-06 05:15:19 +00:00
<th>แพทย์</th>
2015-03-13 16:31:58 +00:00
<th>สิทธ์</th>
<th>จ.น.เงิน</th>
<th>ยาฉีด</th>
<th>DZ</th>
<th>N/U</th>
<th>พยาบาล</th>
<!--<th>หมายเหตุ</th>-->
2015-03-06 05:15:19 +00:00
</thead>
<tbody>
{{#each lines }}
<tr>
<td>{{no}}</td>
2015-03-13 16:31:58 +00:00
<td><a href="/ui#name=clinic_hd_case&active_id={{hdcase_id}}&mode=form">{{date}}</a></td>
<td>{{cname}}</td>
2015-03-06 05:15:19 +00:00
<td><a href="/ui#name=clinic_patient&active_id={{pid}}&mode=form">{{pname}}</a></td>
<td><a href="/ui#name=clinic_staff&active_id={{did}}&mode=form">{{dname}}</a></td>
2015-03-13 16:31:58 +00:00
<td><a href="/ui#name=clinic_patient_type&active_id={{tid}}&mode=form">{{tname}}</a></td>
<td>{{currency fee zero=""}}</td>
2015-03-06 05:15:19 +00:00
<td>{{epo}}</td>
2015-03-13 16:31:58 +00:00
<td><a href="/ui#name=clinic_dialyzer&active_id={{dlz_id}}&mode=form">{{dlz_name}}</a></td>
<td>{{dlz_use}}</td>
<td><a href="/ui#name=clinic_cycle_item&active_id={{ctid}}&mode=form">View</a></td>
<!--<td>{{note}}</td>-->
2015-03-06 05:15:19 +00:00
</tr>
{{/each}}
</tbody>
<tfoot>
</tfoot>
</table>