|
|
|
@ -77,6 +77,10 @@
|
|
|
|
|
<span class="col-xs-6 text-bold">Net Amount</span>
|
|
|
|
|
<span class="col-xs-6" ng-bind="report.clearing_amount|currency:''"></span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-xs-6 col-sm-3">
|
|
|
|
|
<span class="col-xs-6 text-bold">Tax Amount</span>
|
|
|
|
|
<span class="col-xs-6" ng-bind="report.clearing_amount|currency:''"></span>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
@ -133,6 +137,8 @@
|
|
|
|
|
<th>Total Amount</th>
|
|
|
|
|
<th>Clearing Amount</th>
|
|
|
|
|
<th>Surcharge Rate</th>
|
|
|
|
|
<th>Surcharge Amount</th>
|
|
|
|
|
<th>Tax Amount</th>
|
|
|
|
|
<th ng-if="report.report[0].settle_amount!=null">Settle Amount</th>
|
|
|
|
|
<th>Remark</th>
|
|
|
|
|
</tr>
|
|
|
|
@ -148,6 +154,10 @@
|
|
|
|
|
<td ng-bind="tr.transaction_amount"></td>
|
|
|
|
|
<td ng-bind="tr.clearing_amount"></td>
|
|
|
|
|
<td ng-bind="tr.surcharge_rate?(tr.surcharge_rate|percentage:1):report.channels[tr.channel].rate+'%'"></td>
|
|
|
|
|
<td ng-bind="tr.clearing_amount"></td>
|
|
|
|
|
<td ng-bind="tr.total_surcharge?tr.total_surcharge:0"></td>
|
|
|
|
|
<td ng-bind="tr.tax_amount"></td>
|
|
|
|
|
|
|
|
|
|
<td ng-if="tr.settle_amount!=null" ng-bind="tr.settle_amount|currency:''"></td>
|
|
|
|
|
<td ng-bind="tr.remark"></td>
|
|
|
|
|
</tr>
|
|
|
|
|