|
|
|
@ -53,7 +53,7 @@
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="form-group" ng-if="riskEvent.order_ids != null">
|
|
|
|
|
<label class="control-label col-sm-2">Order IDs</label>
|
|
|
|
|
<label class="control-label col-sm-2">Platform Transaction IDs</label>
|
|
|
|
|
<div class="col-sm-10">
|
|
|
|
|
<p class="form-control-static"
|
|
|
|
|
ng-bind="riskEvent.order_ids">
|
|
|
|
@ -227,8 +227,8 @@
|
|
|
|
|
<thead>
|
|
|
|
|
<tr>
|
|
|
|
|
<th>Partner</th>
|
|
|
|
|
<th>Order ID</th>
|
|
|
|
|
<th>Platform Transaction ID</th>
|
|
|
|
|
<th>Order ID</th>
|
|
|
|
|
<th>Order Description</th>
|
|
|
|
|
<th>Customer ID</th>
|
|
|
|
|
<th>IP</th>
|
|
|
|
@ -247,8 +247,8 @@
|
|
|
|
|
<tbody>
|
|
|
|
|
<tr ng-repeat="trade in tradeLogs">
|
|
|
|
|
<td>{{trade.client.short_name}}({{trade.client.client_moniker}})</td>
|
|
|
|
|
<td>{{trade.order_id}}</td>
|
|
|
|
|
<td>{{trade.system_transaction_id}}</td>
|
|
|
|
|
<td>{{trade.order_id}}</td>
|
|
|
|
|
<td>{{trade.order_description}}</td>
|
|
|
|
|
<td>{{trade.customer_id}}</td>
|
|
|
|
|
<td>{{trade.customer_ip}}</td>
|
|
|
|
@ -267,6 +267,7 @@
|
|
|
|
|
<table class="table table-bordered table-hover table-striped" ng-if="riskEvent.order_type != 3">
|
|
|
|
|
<thead>
|
|
|
|
|
<tr>
|
|
|
|
|
<th>Platform Transaction ID</th>
|
|
|
|
|
<th>Order ID</th>
|
|
|
|
|
<th>Amount</th>
|
|
|
|
|
<th>Input Amount</th>
|
|
|
|
@ -275,24 +276,31 @@
|
|
|
|
|
<th>Status</th>
|
|
|
|
|
<th>Create Time</th>
|
|
|
|
|
<th>Gateway</th>
|
|
|
|
|
<th>Operation</th>
|
|
|
|
|
</tr>
|
|
|
|
|
</thead>
|
|
|
|
|
<tbody>
|
|
|
|
|
<tr ng-repeat="trade in tradeLogs"
|
|
|
|
|
ng-class="{warning:trade.clearing_status==2}">
|
|
|
|
|
<td>{{trade.system_transaction_id}}</td>
|
|
|
|
|
<td>{{trade.order_id}}</td>
|
|
|
|
|
<td>{{trade.currency}} {{trade.total_amount}}</td>
|
|
|
|
|
<td>{{trade.currency}} {{trade.display_amount}}</td>
|
|
|
|
|
<td>AUD {{trade.clearing_amount}}</td>
|
|
|
|
|
<td>
|
|
|
|
|
<span ng-if="(trade.channel != 'hf') && (trade.channel != 'Rpay')"
|
|
|
|
|
ng-bind="trade.exchange_rate">
|
|
|
|
|
</span>
|
|
|
|
|
<span ng-if="(trade.channel != 'hf') && (trade.channel != 'Rpay')"
|
|
|
|
|
ng-bind="trade.exchange_rate">
|
|
|
|
|
</span>
|
|
|
|
|
<span ng-if="(trade.channel == 'hf') || (trade.channel == 'Rpay')"> - </span>
|
|
|
|
|
</td>
|
|
|
|
|
<td ng-bind="trade.status"></td>
|
|
|
|
|
<td ng-bind="trade.create_time"></td>
|
|
|
|
|
<td ng-bind="trade.gateway"></td>
|
|
|
|
|
<td>
|
|
|
|
|
<a role="button" class="text-bold" ng-click="showTradeDetail(trade)" title="Detail">
|
|
|
|
|
<i class="fa fa-list-alt"></i>
|
|
|
|
|
</a>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
@ -389,7 +397,7 @@
|
|
|
|
|
ng-if="riskEventEdit.order_type != 4"
|
|
|
|
|
ng-class="{'has-error':riskEventForm.order_ids.$invalid && riskEventForm.order_ids.$dirty}">
|
|
|
|
|
<label class="control-label col-sm-2"
|
|
|
|
|
for="order-ids-input">Order IDs
|
|
|
|
|
for="order-ids-input">Platform Transaction IDs
|
|
|
|
|
</label>
|
|
|
|
|
<div class="col-sm-8">
|
|
|
|
|
<input class="form-control"
|
|
|
|
|