clinic/netforce_clinic/templates/matching_payment.hbs

51 lines
1.6 KiB
Handlebars
Raw Permalink Normal View History

2015-02-18 16:53:29 +00:00
<p></p>
2015-02-11 07:51:21 +00:00
<table class="table table-condensed table-striped">
<thead>
2015-02-18 16:53:29 +00:00
<tr>
2015-02-18 18:50:15 +00:00
<th colspan="8" style="text-align:center;background-color:#f9e37d;">Import File</th>
<th colspan="7" style="text-align:center;background-color:#2d6ed2;color:white">Netforce</th>
2015-02-18 16:53:29 +00:00
</tr>
<tr>
<th>#</th>
<th>Date</th>
<th>HN</th>
2015-02-18 18:50:15 +00:00
<th>PID</th>
2015-02-18 16:53:29 +00:00
<th>Patient</th>
2015-02-18 18:50:15 +00:00
<th>EPO</th>
<th>Service</th>
<th>Fee</th>
2015-02-18 16:53:29 +00:00
<th>Date</th>
<th>HN</th>
<th>Patient</th>
2015-02-18 18:50:15 +00:00
<th>EPO</th>
<th>Service</th>
<th>Fee</th>
2015-02-18 16:53:29 +00:00
<th>Expense</th>
</tr>
2015-02-11 07:51:21 +00:00
</thead>
<tbody>
{{#each lines }}
<tr>
<td>{{no}}</td>
<td>{{date}}</td>
<td>{{hn}}</td>
2015-02-18 18:50:15 +00:00
<td>{{pid}}</td>
2015-02-18 16:53:29 +00:00
<td>{{patient_name}}
<td>{{currency mdc_amt zero=""}}</td>
<td>{{currency srv_amt zero=""}}</td>
2015-02-11 07:51:21 +00:00
<td>{{currency fee_amt zero=""}}</td>
2015-02-18 16:53:29 +00:00
<td>{{nf_date}}</td>
<td>{{nf_hn}}</td>
<td>{{nf_patient_name}}
<td>{{currency nf_mdc_amt zero=""}}</td>
<td>{{currency nf_srv_amt zero=""}}</td>
<td>{{currency nf_fee_amt zero=""}}</td>
<td>{{expense_number}}</td>
2015-02-11 07:51:21 +00:00
</tr>
{{/each}}
</tbody>
<tfoot>
</tfoot>
</table>