clinic/netforce_clinic/templates/matching_payment.hbs

30 lines
926 B
Handlebars
Raw Normal View History

2015-02-11 07:51:21 +00:00
<table class="table table-condensed table-striped">
<thead>
<th>#</th>
<th>Date</th>
<th>HN</th>
<th>Patient</th>
<th>EPO Amount</th>
<th>Service Medical</th>
<th>Fee Amount</th>
<th>HD Case</th>
<th>Note</th>
</thead>
<tbody>
{{#each lines }}
<tr>
<td>{{no}}</td>
<td>{{date}}</td>
<td>{{hn}}</td>
<td style="width:15%;">{{view "link" string=patient_name action="clinic_patient" action_options="mode=form" active_id=patient_id}}</td>
<td>{{currency epo_amt zero=""}}</td>
<td>{{currency service_amt zero=""}}</td>
<td>{{currency fee_amt zero=""}}</td>
<td>{{note}}</td>
</tr>
{{/each}}
</tbody>
<tfoot>
</tfoot>
</table>