Subversion Repositories SmartDukaan

Rev

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