Subversion Repositories SmartDukaan

Rev

Rev 32681 | Rev 34089 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
30859 tejbeer 1
 
2
<script type="text/javascript">
3
 
4
    $(document).ready(function () {
5
 
6
 
7
 
8
      var dtable = $('#sanctiontable').DataTable({
9
             "scrollX": true,
10
             "scrollY": "518px",
11
              scrollCollapse: true,
12
             "fixedHeader": true,
13
             "order": [[ 0, "desc" ]],
14
             fixedColumns:   {
15
             leftColumns: 3
16
        },
17
       });
18
 
19
    });
20
 
21
 
32121 tejbeer 22
    $('#sanctiontable').on('click', '.loanCount', function() {
23
		var fofoId = $(this).data('fofoid');
24
		doGetAjaxRequestHandler(context + "/getLoanSummary?fofoId="
25
			+ fofoId, function(response) {
26
				$('#loanSummarydetail .modal-content').html(response);
27
 
28
			});
32122 tejbeer 29
		});
33505 amit.gupta 30
 
30859 tejbeer 31
</script>
32
 
33
 
34
 
35
<section class="wrapper">
36
	<div class="row">
37
		<div class="col-lg-12">
38
			<h3 class="page-header"><i class="icon_document_alt"></i>Sanction Request</h3>
39
			<ol class="breadcrumb">
40
				<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
32348 jai.hind 41
				<li><i class="icon_document_alt"></i>Sanction Request</li>
30859 tejbeer 42
 
43
			</ol>
44
		</div>
45
	</div>
46
 
47
	    <div class="col-lg-12">
48
        <table class="table table-border table-condensed table-bordered" id="sanctiontable" style="width:100%">
49
 
50
            <thead class="row htable" style="background:#F5F5F5;">
51
 
52
            <tr style="color:black;">
53
                <th>Id</th>
54
                <th>Code</th>
55
                <th>Partner Name</th>
32528 tejbeer 56
	            <th>Lms</th>
57
	            <th>Lmtd</th>
58
	            <th>Mtd</th>
59
 
30859 tejbeer 60
                <th>limit</th>
61
                <th>Available Limit</th>
31110 tejbeer 62
                <th>Utilization Amount</th>
30859 tejbeer 63
                <th>Interest</th>
64
                <th>Credit Duration</th>
33505 amit.gupta 65
                <th>Avg Credit Days</th>
32041 amit.gupta 66
                <th>Active Loan</th>
67
 
68
                <th>Risk</th>
31080 tejbeer 69
                <th>Total Investment</th>
32041 amit.gupta 70
 
30859 tejbeer 71
                <th>Short Investment</th>
72
                <th>Wallet Amount</th>
32041 amit.gupta 73
                <th>Requested By</th>
33505 amit.gupta 74
                <th>Req Amount</th>
30859 tejbeer 75
                <th>Approval Amount</th>
76
                <th>Free days</th>
77
                <th>Status</th>
31020 tejbeer 78
                <th>Hold Stock</th>
33505 amit.gupta 79
                <th>Provider</th>
30859 tejbeer 80
                <th>Action</th>
32041 amit.gupta 81
            </tr>
30859 tejbeer 82
            </thead>
83
            <tbody>
84
                #foreach($sanctionRequest in $sanctionRequests)
85
 
86
 
87
                 <tr>
88
                   #parse("sanction-request-row.vm")
89
 
90
                </tr>
91
 
92
                #end
93
 
94
            </tbody>
95
 
96
        </table>
97
    </div>
32120 tejbeer 98
 
99
    <div id="loanSummarydetail" class="modal" role="dialog">
100
	  <div class="modal-dialog">
101
	    <div class="modal-content">
102
 
103
    </div>
104
   </div>
105
 </div>
30859 tejbeer 106
</section>