| 34096 |
aman.kumar |
1 |
<script type="text/javascript">
|
|
|
2 |
$('input[name="walletAddn-duration"]').daterangepicker(getRangedDatePicker());
|
|
|
3 |
|
|
|
4 |
</script>
|
|
|
5 |
<style>
|
|
|
6 |
.btn:hover {
|
|
|
7 |
color: grey;
|
|
|
8 |
text-decoration: none;
|
|
|
9 |
}
|
|
|
10 |
|
|
|
11 |
.btn-primary:hover {
|
|
|
12 |
color: grey;
|
|
|
13 |
text-decoration: none;
|
|
|
14 |
}
|
|
|
15 |
|
|
|
16 |
.sale-details {
|
|
|
17 |
cursor: pointer;
|
|
|
18 |
}
|
|
|
19 |
</style>
|
|
|
20 |
|
|
|
21 |
<section class="wrapper">
|
| 34261 |
tejus.loha |
22 |
<h3 class="page-header"><i class="icon_document_alt"></i>WALLET ADDN-REQUEST/REJECTED</h3>
|
| 34096 |
aman.kumar |
23 |
<ol class="breadcrumb">
|
|
|
24 |
<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
|
| 34261 |
tejus.loha |
25 |
<li><i class="icon_document_alt"></i>Wallet Addn-Request/Rejected</li>
|
| 34096 |
aman.kumar |
26 |
</li>
|
|
|
27 |
</ol>
|
|
|
28 |
<div class="row">
|
| 34261 |
tejus.loha |
29 |
<div class="col-lg-6 form-group">
|
| 34096 |
aman.kumar |
30 |
<table>
|
|
|
31 |
<tr>
|
|
|
32 |
<td style="padding: 5px 10px;"><input placeholder="Duration" id="walletAddn-duration"
|
|
|
33 |
name="walletAddn-duration" type="text" value=""
|
|
|
34 |
class="form-control phone input-sm"></td>
|
|
|
35 |
<td style="padding: 5px 10px;"><input class="btn btn-primary dateWisewalletAddnReject" type="button"
|
|
|
36 |
value="Submit"></td>
|
|
|
37 |
</tr>
|
|
|
38 |
</table>
|
|
|
39 |
</div>
|
| 34261 |
tejus.loha |
40 |
<div class="col-lg-6">
|
|
|
41 |
<div style="float:right;margin-bottom: 1%">
|
|
|
42 |
From:
|
|
|
43 |
<input type="date" name="from" placeholder="Form">
|
|
|
44 |
To:
|
|
|
45 |
<input type="date" name="to" placeholder="To">
|
|
|
46 |
<button id="downloadAddWalletRequestRejectReport" class="btn-primary">
|
|
|
47 |
Download
|
|
|
48 |
</button>
|
|
|
49 |
</div>
|
|
|
50 |
</div>
|
| 34096 |
aman.kumar |
51 |
</div>
|
|
|
52 |
<div class="walletaddnviewcontainer" style="margin-top: 0; margin-bottom: 0;">
|
|
|
53 |
</div>
|
|
|
54 |
|
| 36242 |
aman |
55 |
<!-- Document View Modal -->
|
|
|
56 |
<div class="modal fade" id="walletDocViewModal" role="dialog">
|
|
|
57 |
<div class="modal-dialog modal-lg">
|
|
|
58 |
<div class="modal-content">
|
|
|
59 |
<div class="modal-header">
|
|
|
60 |
<button type="button" class="close" data-dismiss="modal">×</button>
|
|
|
61 |
<h4 class="modal-title">Payment Proof</h4>
|
|
|
62 |
</div>
|
|
|
63 |
<div class="modal-body" style="text-align:center;">
|
|
|
64 |
<img id="wallet-doc-preview" src="" style="max-width:100%; max-height:500px;">
|
|
|
65 |
</div>
|
|
|
66 |
<div class="modal-footer">
|
|
|
67 |
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
|
|
|
68 |
</div>
|
|
|
69 |
</div>
|
|
|
70 |
</div>
|
|
|
71 |
</div>
|
|
|
72 |
<script type="text/javascript">
|
|
|
73 |
$(document).on('click', '.wallet-doc-view-btn', function () {
|
|
|
74 |
var docUrl = $(this).data('doc-url');
|
|
|
75 |
$('#wallet-doc-preview').attr('src', docUrl);
|
|
|
76 |
$('#walletDocViewModal').modal('show');
|
|
|
77 |
});
|
|
|
78 |
</script>
|
| 34096 |
aman.kumar |
79 |
</section>
|