Subversion Repositories SmartDukaan

Rev

Go to most recent revision | Details | 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 = $('#sdCredit').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>SD CREDIT</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="sdCredit" style="width:100%">
43
 
44
            <thead class="row htable" style="background:#F5F5F5;">
45
 
46
            <tr style="color:black;">
47
                <th>Id</th>
48
                <th>Code</th>
49
                <th>Partner Name</th>
50
                <th>Security Check</th>
51
                <th>Suggested Limit</th>
52
                <th>limit</th>
53
                <th>Utilized Limit</th>
54
                <th>Available Limit</th>
55
                <th>Interest (per day %)</th>
56
                <th>Free days</th>
57
                <th>Credit Duration</th>
58
                <th>Risk</th>
59
                <th>Action</th>
60
	        </tr>
61
            </thead>
62
            <tbody>
63
                #foreach($cr in $customRetailerMap.entrySet() )
64
                 #set ($customRetailer = $cr.getValue())
65
 
66
                 <tr>
67
                   #parse("sd-credit-requirement-row.vm")
68
 
69
                </tr>
70
 
71
                #end
72
 
73
            </tbody>
74
 
75
        </table>
76
    </div>
77
</section>