parent
f14dbf84ae
commit
9bd674275f
@ -1,70 +1,26 @@
|
||||
<div class="modal-header">Contract</div>
|
||||
<div class="modal-body">
|
||||
<div class="box box-danger">
|
||||
<div class="box-header">费率已过期商户({{warning.no_rate.length}}家)</div>
|
||||
<div class="box-header">商户合同情况</div>
|
||||
<div class="box-body table-responsive">
|
||||
<table class="table table-bordered table-striped table-hover">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Client Moniker</th>
|
||||
<th>Short Name</th>
|
||||
<th>Channel</th>
|
||||
<th>BD</th>
|
||||
<th>Latest Rate</th>
|
||||
<th>Expire Date</th>
|
||||
<th>Create Time</th>
|
||||
<th>Confirm Time</th>
|
||||
<th>Account Name</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr ng-repeat="contract in contract_analysis">
|
||||
<td>
|
||||
<a ui-sref="partners.detail.rates({clientMoniker:client.client_moniker})" ng-bind="client.client_moniker"></a>
|
||||
</td>
|
||||
<td ng-bind="contract.client_id"></td>
|
||||
<td ng-bind="contract.client_moniker"></td>
|
||||
<td ng-bind="contract.create_time|date:'dd/MMM/yyyy'"></td>
|
||||
<td ng-bind="contract.has_sign"></td>
|
||||
<td ng-bind="contract.sign_channel"></td>
|
||||
<td ng-bind="contract.signatory"></td>
|
||||
<td ng-bind="contract.confirm_time|date:'dd/MMM/yyyy'"></td>
|
||||
<td ng-bind="contract.display_name"></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
<div class="box box-warning">
|
||||
<div class="box-header">费率即将过期商户({{warning.rate_warning.length}}家)</div>
|
||||
<div class="box-body table-responsive">
|
||||
<table class="table table-bordered table-striped table-hover">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Client Moniker</th>
|
||||
<th>Short Name</th>
|
||||
<th>Channel</th>
|
||||
<th>BD</th>
|
||||
<th>Rate</th>
|
||||
<th>Expire Date</th>
|
||||
<th>Operation</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr ng-repeat="client in warning.rate_warning">
|
||||
<td>
|
||||
<a ui-sref="partners.detail.rates({clientMoniker:client.client_moniker})" ng-bind="client.client_moniker"></a>
|
||||
</td>
|
||||
<td ng-bind="client.short_name"></td>
|
||||
<td ng-bind="client.rate_name"></td>
|
||||
<td ng-bind="client.bd_user_name"></td>
|
||||
<td ng-bind="client.rate_value"></td>
|
||||
<td ng-bind="client.expiry_time|date:'dd/MMM/yyyy'"></td>
|
||||
<td>
|
||||
<button class="btn btn-primary" ng-if="client.generatable" type="button" ng-click="generateRate(client)">
|
||||
<i class="fa fa-cogs"></i> 根据浮动费率生成
|
||||
</button>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button class="btn btn-danger" ng-click="$dismiss()">Close</button>
|
||||
</div>
|
Loading…
Reference in new issue