|
|
|
@ -1,5 +1,6 @@
|
|
|
|
|
<div class="modal-header bg-green">
|
|
|
|
|
<h4 style="text-align: center">商户资料文件补充通知<span ng-if="kycFile.data.client_refuse_reason" style="color:#b55252">({{kycFile.data.client_refuse_reason}})</span></h4>
|
|
|
|
|
<h4 ng-if="adviceLanguage == 'en'" style="text-align: center">Merchant Supplement Compliance File Notification</h4>
|
|
|
|
|
<h4 ng-if="adviceLanguage == 'zh'" style="text-align: center">商户资料文件补充通知</h4>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="modal-body" style="padding: 20px">
|
|
|
|
|
<div class="row">
|
|
|
|
@ -16,7 +17,8 @@
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<!--<label class="control-label col-xs-3">Content</label>-->
|
|
|
|
|
<div class="col-xs-12">
|
|
|
|
|
<a><h5 style="text-align: right">EN | 中文</h5></a>
|
|
|
|
|
<a><h5 style="text-align: right"><span ng-click="changeLanguage('en')" style="cursor: pointer;">EN</span> | <span ng-click="changeLanguage('zh')" style="cursor: pointer;">中文</span></h5></a>
|
|
|
|
|
<div ng-if="adviceLanguage == 'en'">
|
|
|
|
|
<p style="text-align: center;"><span
|
|
|
|
|
style="text-align: center; font-family: DengXian; font-size: 14px;">RoyalPay</span>Merchant Supplement
|
|
|
|
|
Compliance File Notification<span style="text-align: center; font-family: DengXian; font-size: 14px;"></span>
|
|
|
|
@ -39,7 +41,9 @@
|
|
|
|
|
style="font-family: DengXian; font-size: 14px;">.</span></p>
|
|
|
|
|
<p><span style="font-family: DengXian; font-size: 14px;">Best Regards,</span></p>
|
|
|
|
|
<p><span style="font-family: DengXian; font-size: 14px;">RoyalPay Customer Service Team</span></p>
|
|
|
|
|
<hr/>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div ng-if="adviceLanguage == 'zh'">
|
|
|
|
|
<p style="text-align: center;"><span style="font-family: DengXian; font-size: 14px;">RoyalPay皇家支付商户文件补充通知</span>
|
|
|
|
|
</p>
|
|
|
|
|
<p><span style="font-family: DengXian; font-size: 14px;">尊敬的RoyalPay商户:</span></p>
|
|
|
|
@ -51,21 +55,105 @@
|
|
|
|
|
style="font-family: DengXian; font-size: 14px;">详询。</span></p>
|
|
|
|
|
<p><span style="font-family: DengXian; font-size: 14px;">顺颂商祺</span></p>
|
|
|
|
|
<p><span style="font-family: DengXian; font-size: 14px;">RoyalPay Customer Service Team</span></p>
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="col-xs-12">
|
|
|
|
|
<div class="form-horizontal">
|
|
|
|
|
<p>前去补充合规文件:<a ui-sref="compliance_to_perfect" ng-click="$dismiss()">点击前往</a></p>
|
|
|
|
|
<p>前去补充KYC文件:<a ui-sref="kyc_files_perfect" ng-click="$dismiss()">点击前往</a></p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="box-body table-responsive" ng-if="adviceLanguage == 'en'">
|
|
|
|
|
<table class="table table-bordered table-hover table-striped">
|
|
|
|
|
<thead>
|
|
|
|
|
<tr><th colspan="4" style="text-align: center">List Of Information To Be Supplemented</th></tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<th>Supplement Type</th>
|
|
|
|
|
<th>Deadline</th>
|
|
|
|
|
<th>Status</th>
|
|
|
|
|
<th>Operation</th>
|
|
|
|
|
</tr>
|
|
|
|
|
</thead>
|
|
|
|
|
<tbody>
|
|
|
|
|
<tr ng-if="file.client_less_file">
|
|
|
|
|
<td>Supplement Compliance File</td>
|
|
|
|
|
<td>Deadline 2020-01-20</td>
|
|
|
|
|
<td>
|
|
|
|
|
<p ng-if="file.file_company" style="color: red">
|
|
|
|
|
<span ng-if="file.file_company.status == 2">Refused</span>
|
|
|
|
|
<span ng-if="file.file_company.description">({{file.file_company.description}})</span>
|
|
|
|
|
</p>
|
|
|
|
|
<p ng-if=" !file.file_company">
|
|
|
|
|
<span>Not Submitted</span>
|
|
|
|
|
</p>
|
|
|
|
|
</td>
|
|
|
|
|
<td><p><a ui-sref="compliance_to_perfect" ng-click="$dismiss()">Go to replenish></a></p></td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr ng-if="kycFile.client_less_file">
|
|
|
|
|
<td>KYC Certification Information Supplement</td>
|
|
|
|
|
<td>Deadline 2020-01-20</td>
|
|
|
|
|
<td>
|
|
|
|
|
<p ng-if="kycFile.file_company" style="color: red">
|
|
|
|
|
<span ng-if="kycFile.file_company.status == 2">Refused</span>
|
|
|
|
|
<span ng-if="kycFile.file_company.description">({{kycFile.file_company.description}})</span>
|
|
|
|
|
</p>
|
|
|
|
|
<p ng-if=" !kycFile.file_company">
|
|
|
|
|
<span>Not Submitted</span>
|
|
|
|
|
</p>
|
|
|
|
|
</td>
|
|
|
|
|
<td><p><a ui-sref="kyc_files_perfect" ng-click="$dismiss()">Go to replenish></a></p></td>
|
|
|
|
|
</tr>
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="box-body table-responsive" ng-if="adviceLanguage == 'zh'">
|
|
|
|
|
<table class="table table-bordered table-hover table-striped">
|
|
|
|
|
<thead>
|
|
|
|
|
<tr><th colspan="4" style="text-align: center">待补充资料列表</th></tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<th>资料类型</th>
|
|
|
|
|
<th>截止时间</th>
|
|
|
|
|
<th>状态</th>
|
|
|
|
|
<th>操作</th>
|
|
|
|
|
</tr>
|
|
|
|
|
</thead>
|
|
|
|
|
<tbody>
|
|
|
|
|
<tr ng-if="file.client_less_file">
|
|
|
|
|
<td>合规资料补充</td>
|
|
|
|
|
<td>截止时间 2020-01-20</td>
|
|
|
|
|
<td>
|
|
|
|
|
<p ng-if="file.file_company" style="color: red">
|
|
|
|
|
<span ng-if="file.file_company.status == 2">打回</span>
|
|
|
|
|
<span ng-if="file.file_company.description">({{file.file_company.description}})</span>
|
|
|
|
|
</p>
|
|
|
|
|
<p ng-if=" !file.file_company">
|
|
|
|
|
<span>未提交</span>
|
|
|
|
|
</p>
|
|
|
|
|
</td>
|
|
|
|
|
<td><p><a ui-sref="compliance_to_perfect" ng-click="$dismiss()">前往补充></a></p></td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr ng-if="kycFile.client_less_file">
|
|
|
|
|
<td>KYC认证资料补充</td>
|
|
|
|
|
<td>截止时间 2020-01-20</td>
|
|
|
|
|
<td>
|
|
|
|
|
<p ng-if="kycFile.file_company" style="color: red">
|
|
|
|
|
<span ng-if="kycFile.file_company.status == 2">打回</span>
|
|
|
|
|
<span ng-if="kycFile.file_company.description">({{kycFile.file_company.description}})</span>
|
|
|
|
|
</p>
|
|
|
|
|
<p ng-if=" !kycFile.file_company">
|
|
|
|
|
<span>未提交</span>
|
|
|
|
|
</p>
|
|
|
|
|
</td>
|
|
|
|
|
<td><p><a ui-sref="kyc_files_perfect" ng-click="$dismiss()">前往补充></a></p></td>
|
|
|
|
|
</tr>
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
</div>
|
|
|
|
|
<br/>
|
|
|
|
|
<br/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="modal-footer">
|
|
|
|
|