Subversion Repositories SmartDukaan

Rev

Rev 32121 | Rev 32348 | 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>
43
				<li><i class="icon_document_alt"></i>SD Credit</li>	
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>
59
                <th>limit</th>
60
                <th>Available Limit</th>
31110 tejbeer 61
                <th>Utilization Amount</th>
30859 tejbeer 62
                <th>Interest</th>
63
                <th>Credit Duration</th>
32041 amit.gupta 64
                <th>Active Loan</th>
65
 
66
                <th>Risk</th>
31080 tejbeer 67
                <th>Total Investment</th>
32041 amit.gupta 68
 
30859 tejbeer 69
                <th>Short Investment</th>
70
                <th>Wallet Amount</th>
32041 amit.gupta 71
                <th>Requested By</th>
30859 tejbeer 72
                <th>Requested Amount</th>
73
                <th>Approval Amount</th>
74
                <th>Free days</th>
75
                <th>Status</th>
31020 tejbeer 76
                <th>Hold Stock</th>
32041 amit.gupta 77
 
30859 tejbeer 78
                <th>Action</th>
32041 amit.gupta 79
            </tr>
30859 tejbeer 80
            </thead>
81
            <tbody>
82
                #foreach($sanctionRequest in $sanctionRequests)
83
 
84
 
85
                 <tr>
86
                   #parse("sanction-request-row.vm")
87
 
88
                </tr>
89
 
90
                #end
91
 
92
            </tbody>
93
 
94
        </table>
95
    </div>
32120 tejbeer 96
 
97
    <div id="loanSummarydetail" class="modal" role="dialog">
98
	  <div class="modal-dialog">
99
	    <div class="modal-content">
100
 
101
    </div>
102
   </div>
103
 </div>
30859 tejbeer 104
</section>