clinic/netforce_clinic/templates/report_discontinue_patient.hbs

40 lines
1023 B
Handlebars
Raw Normal View History

2014-11-05 07:03:12 +00:00
<center>
<h2>รายชื่อผู้ป่วยจำหน่าย</h2>
<h3>
{{parent_company_name}}&nbsp;{{company_name}}<br/>
</h3>
<h4>
2014-11-12 11:13:23 +00:00
{{#if is_duration}}
ระหว่างวันที่ {{from}} ถึง {{to}}
{{else}}
ประจำเดือน {{month}} {{year}}
{{/if}}
2014-11-05 07:03:12 +00:00
</h4>
</center>
2014-11-10 11:33:01 +00:00
{{#if lines}}
2014-11-05 07:03:12 +00:00
<table class="table">
<thead>
<th>#</th>
2014-11-12 11:13:23 +00:00
<th>วันที่</th>
2014-11-05 07:03:12 +00:00
<th>ชื่อ</th>
<th>หมายเหตุ</th>
</thead>
<tbody>
{{#each lines}}
<tr>
2014-11-10 11:33:01 +00:00
<td>{{no}}</td>
2014-11-12 11:13:23 +00:00
<td>{{resign_date}}</td>
2014-11-10 11:33:01 +00:00
<td>
{{view "link" string=name action="clinic_patient" action_options="mode=form" active_id=pid}}
</td>
<td>{{note}}</td>
2014-11-05 07:03:12 +00:00
</tr>
{{/each}}
</tbody>
<tfoot>
</tfoot>
</table>
2014-11-10 11:33:01 +00:00
{{else}}
No items to display.
{{/if}}