clinic/netforce_clinic/templates/report_payment_matching.hbs

30 lines
620 B
Handlebars

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