Subversion Repositories SmartDukaan

Rev

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