Subversion Repositories SmartDukaan

Rev

Rev 32528 | Rev 33505 | 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
		});
30859 tejbeer 30
 
31
 
32
 
33
</script>
34
 
35
 
36
 
37
<section class="wrapper">
38
	<div class="row">
39
		<div class="col-lg-12">
40
			<h3 class="page-header"><i class="icon_document_alt"></i>Sanction Request</h3>
41
			<ol class="breadcrumb">
42
				<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
32348 jai.hind 43
				<li><i class="icon_document_alt"></i>Sanction Request</li>
30859 tejbeer 44
 
45
			</ol>
46
		</div>
47
	</div>
48
 
49
	    <div class="col-lg-12">
50
        <table class="table table-border table-condensed table-bordered" id="sanctiontable" style="width:100%">
51
 
52
            <thead class="row htable" style="background:#F5F5F5;">
53
 
54
            <tr style="color:black;">
55
                <th>Id</th>
56
                <th>Partner Id</th>
57
                <th>Code</th>
58
                <th>Partner Name</th>
32528 tejbeer 59
	            <th>Lms</th>
60
	            <th>Lmtd</th>
61
	            <th>Mtd</th>
62
 
30859 tejbeer 63
                <th>limit</th>
64
                <th>Available Limit</th>
31110 tejbeer 65
                <th>Utilization Amount</th>
30859 tejbeer 66
                <th>Interest</th>
67
                <th>Credit Duration</th>
32681 amit.gupta 68
                <th>Average Credit Days</th>
32041 amit.gupta 69
                <th>Active Loan</th>
70
 
71
                <th>Risk</th>
31080 tejbeer 72
                <th>Total Investment</th>
32041 amit.gupta 73
 
30859 tejbeer 74
                <th>Short Investment</th>
75
                <th>Wallet Amount</th>
32041 amit.gupta 76
                <th>Requested By</th>
30859 tejbeer 77
                <th>Requested Amount</th>
78
                <th>Approval Amount</th>
79
                <th>Free days</th>
80
                <th>Status</th>
31020 tejbeer 81
                <th>Hold Stock</th>
32041 amit.gupta 82
 
30859 tejbeer 83
                <th>Action</th>
32041 amit.gupta 84
            </tr>
30859 tejbeer 85
            </thead>
86
            <tbody>
87
                #foreach($sanctionRequest in $sanctionRequests)
88
 
89
 
90
                 <tr>
91
                   #parse("sanction-request-row.vm")
92
 
93
                </tr>
94
 
95
                #end
96
 
97
            </tbody>
98
 
99
        </table>
100
    </div>
32120 tejbeer 101
 
102
    <div id="loanSummarydetail" class="modal" role="dialog">
103
	  <div class="modal-dialog">
104
	    <div class="modal-content">
105
 
106
    </div>
107
   </div>
108
 </div>
30859 tejbeer 109
</section>