clinic/netforce_clinic/templates/payment_matching.hbs

39 lines
867 B
Handlebars
Raw Normal View History

2015-08-21 08:15:53 +00:00
<!--
<center>
<h3>Payment Matching</h3>
<h4>From {{date_from}} To {{date_to}}</h4>
</center>
-->
<div class="row">
<div class="col-sm-6">
</div>
<div class="col-sm-6">
<h4>
2015-08-23 05:39:02 +00:00
<span class="pull-right label label-default">TOTAL: {{currency total_inv}}</span>
2015-08-21 08:15:53 +00:00
</h4>
</div>
</div>
<table class="table table-hover">
{{#ifeq view_type 'invoice'}}
<thead>
<th>Invoice Date</th>
<th>Number</th>
</thead>
<tbody>
{{#if lines}}
{{#each lines}}
<tr>
<td>{{date}}</td>
<td>{{number}}</td>
</tr>
{{/each}}
{{else}}
{{/if}}
</tbody>
<tfoot>
</tfoot>
{{else}}
TODO
{{/ifeq}}
</table>