clinic/netforce_clinic/templates/report_payment_matching.hbs

36 lines
1.3 KiB
Handlebars

<center>
<h4>Payment Matching</h4>
</center>
{{#if lines}}
<table class="table table-condensed table-striped">
<thead>
<th>HN</th>
<th>Patient</th>
<th>Invoice No</th>
<th>Fee</th>
<th>Medicine</th>
<th>Service</th>
<th>Match</th>
<th></th>
</thead>
<tbody>
{{#each lines}}
<tr>
<td style="background-color:{{exp_color}}"><a href="/ui#name=clinic_patient&active_id={{patient_id}}&mode=form">{{hn}}</a></td>
<td style="background-color:{{exp_color}}"><a href="/ui#name=clinic_patient&active_id={{patient_id}}&mode=form">{{patient_name}}</a></td>
<td style="background-color:{{exp_color}}">{{invno}}</td>
<td style="background-color:{{exp_color}}">{{fee_amt}}</td>
<td style="background-color:{{exp_color}}">{{mdc_amt}}</td>
<td style="background-color:{{exp_color}}">{{srv_amt}}</td>
<td style="background-color:{{exp_color}}">{{match}}</td>
<td style="background-color:{{exp_color}}"><a href="/ui#name=clinic_hd_case_expense&active_id={{exp_id}}&mode=form">Edit</a></td>
</tr>
{{/each}}
</tbody>
<tfoot>
</tfoot>
</table>
{{else}}
Waiting matching.
{{/if}}