parent
76b7d7a678
commit
e589bdc437
@ -0,0 +1,71 @@
|
||||
<div class="modal-header">
|
||||
<h4>Surcharge Account Detail{{partner.client_moniker?'('+partner.client_moniker+')':''}}</h4>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<div class="box box-warning">
|
||||
<div class="box-body" style="font-size: 35px;text-align: right">
|
||||
{{surcharge.balance|currency:'AUD'}}
|
||||
</div>
|
||||
</div>
|
||||
<div class="box box-default">
|
||||
<div class="box-header">Credits</div>
|
||||
<div class="box-body">
|
||||
<div class="table-responsive col-sm-12">
|
||||
<table class="table table-bordered table-striped table-hover">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Num</th>
|
||||
<th>Create Time</th>
|
||||
<th>Amount</th>
|
||||
<th>Remark</th>
|
||||
<th>Operator</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr ng-repeat="tr in transactions|propsFilter:{type:'Credit'}:true">
|
||||
<td>{{$index+1}}</td>
|
||||
<td ng-bind="tr.create_time|date:'yyyy-MM-dd HH:mm:ss'"></td>
|
||||
<td ng-bind="tr.amount|currency:'AUD'"></td>
|
||||
<td ng-bind="tr.remark"></td>
|
||||
<td ng-bind="tr.operator_displayname"></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="box box-default">
|
||||
<div class="box-header">Debits</div>
|
||||
<div class="box-body">
|
||||
<div class="table-responsive col-sm-12">
|
||||
<table class="table table-bordered table-striped table-hover">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Num</th>
|
||||
<th>Settle Date</th>
|
||||
<th>Amount</th>
|
||||
<th>Total Surcharge</th>
|
||||
<th>Tax Amount</th>
|
||||
<th>Remark</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr ng-repeat="tr in transactions|propsFilter:{type:'Debit'}:true">
|
||||
<td>{{$index+1}}</td>
|
||||
<td ng-bind="tr.settle_date|date:'yyyy-MM-dd'"></td>
|
||||
<td ng-bind="tr.amount|currency:'AUD'"></td>
|
||||
<td ng-bind="tr.total_surcharge|currency:'AUD'"></td>
|
||||
<td ng-bind="tr.tax_amount|currency:'AUD'"></td>
|
||||
<td>
|
||||
{{tr.remark}}
|
||||
<a ng-href="/sys/clean_logs/{{tr.client_id}}/settlement_logs/{{tr.clearing_detail_id}}/export" target="_blank" title="Download">
|
||||
<i class="fa fa-download"></i>
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
Loading…
Reference in new issue