You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

107 lines
4.6 KiB

  1. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="VerifyMobileCustomer.aspx.cs" Inherits="Swift.web.MobileRemit.Admin.Operation.VerifyMobileCustomer" %>
  2. <!DOCTYPE html>
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head runat="server">
  5. <title></title>
  6. <link href="/ui/bootstrap/css/bootstrap.min.css" rel="stylesheet" />
  7. <link href="/ui/css/style.css" rel="stylesheet" />
  8. <link href="/ui/font-awesome/css/font-awesome.css" rel="stylesheet" />
  9. <link href="/js/jQuery/jquery-ui.css" rel="stylesheet" type="text/css" />
  10. <script src="/ui/js/jquery.min.js"></script>
  11. <script src="/ui/js/jquery-ui.min.js"></script>
  12. <script src="/ui/bootstrap/js/bootstrap.min.js"></script>
  13. <script src="/js/functions.js"></script>
  14. <script src="/js/swift_calendar.js" type="text/javascript"></script>
  15. <script src="/js/Swift_grid.js"></script>
  16. <script type="text/javascript">
  17. $(document).ready(function () {
  18. ShowCalFromToUpToToday("#grid_list_fromDate", "#grid_list_toDate");
  19. $('a[title="Reject"]').css("display", "none");
  20. });
  21. function reuploadData(customerId) {
  22. debugger;
  23. dataToSend = { MethodName: 'reuploadData', customerId: customerId };
  24. if (confirm('Are you sure you want to clear customer KYC?')) {
  25. $.post("", dataToSend, function (response) {
  26. var data = jQuery.parseJSON(response);
  27. if (data.ErrorCode == 0) {
  28. alert(data.Msg);
  29. window.location.reload();
  30. } else {
  31. alert(data.Msg);
  32. }
  33. });
  34. }
  35. }
  36. function deleteCustomer(customerId) {
  37. dataToSend = { MethodName: 'deleteCustomer', customerId: customerId };
  38. if (confirm('Are you sure you want to delete this customer?')) {
  39. $.post("", dataToSend, function (response) {
  40. var data = jQuery.parseJSON(response);
  41. if (data.ErrorCode == 0) {
  42. alert(data.Msg);
  43. window.location.reload();
  44. } else {
  45. alert(data.Msg);
  46. }
  47. });
  48. }
  49. }
  50. //function DeleteRow(customerId, customerName, isActive) {
  51. // var verifyText = 'Are you sure to delete ' + customerName + '?';
  52. // if (customerId != '') {
  53. // $('#isActive').val(isActive);
  54. // $('#hideCustomerId').val(customerId);
  55. // if (isActive == 'Y') {
  56. // verifyText = 'Are you sure to disable ' + customerName + '?';
  57. // }
  58. // if (confirm(verifyText)) {
  59. // $('#btnUpdate').click();
  60. // }
  61. // }
  62. //}
  63. </script>
  64. </head>
  65. <body>
  66. <form id="form1" runat="server">
  67. <div class="row">
  68. <div class="col-sm-12">
  69. <div class="page-title">
  70. <h1></h1>
  71. <ol class="breadcrumb">
  72. <li><a href="/Front.aspx" target="mainFrame"><i class="fa fa-home"></i></a></li>
  73. <li><a href="#">Mobile</a></li>
  74. <li><a href="#">Mobile-Operations</a></li>
  75. <li class="active"><a href="List.aspx">Verify Customer From Mobile</a></li>
  76. </ol>
  77. </div>
  78. </div>
  79. </div>
  80. <!-- Nav tabs -->
  81. <div class="listtabs">
  82. <ul class="nav nav-tabs" role="tablist">
  83. <li role="presentation" class="active"><a href="#" aria-controls="home" role="tab" data-toggle="tab">Verify Pending From Mobile </a></li>
  84. </ul>
  85. </div>
  86. <!-- Tab panes -->
  87. <div class="tab-content">
  88. <div role="tabpanel" class="tab-pane active" id="list">
  89. <!--end .row-->
  90. <div class="row">
  91. <div class="col-md-12">
  92. <div class="panel panel-default">
  93. <div class="panel-body">
  94. <div id="rpt_grid" runat="server" class="gridDiv" enableviewstate="false"></div>
  95. </div>
  96. </div>
  97. </div>
  98. </div>
  99. </div>
  100. </div>
  101. </form>
  102. </body>
  103. </html>