clinic/netforce_clinic/templates/report_payment_matching.hbs

30 lines
620 B
Handlebars
Raw Normal View History

2014-12-09 02:40:53 +00:00
<center>
2014-12-16 09:53:36 +00:00
<h4>Payment Matching</h4>
2014-12-09 02:40:53 +00:00
</center>
{{#if lines}}
<table class="table table-condensed table-striped">
<thead>
2014-12-16 09:53:36 +00:00
<th>Patient</th>
<th>Fee(1,500)</th>
<th>Medicine</th>
<th>Service</th>
<th>Status</th>
2014-12-09 02:40:53 +00:00
</thead>
<tbody>
{{#each lines}}
<tr>
2014-12-16 09:53:36 +00:00
<td>{{name}}</td>
<td>{{fee}}</td>
<td>{{medicine}}</td>
<td>{{service}}</td>
<td>{{state}}</td>
2014-12-09 02:40:53 +00:00
</tr>
{{/each}}
</tbody>
<tfoot>
</tfoot>
</table>
{{else}}
2014-12-16 09:53:36 +00:00
Waiting matching.
2014-12-09 02:40:53 +00:00
{{/if}}