Subversion Repositories SmartDukaan

Rev

Rev 29111 | Rev 29509 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
29104 manish 1
<link href="https://cdn.datatables.net/fixedcolumns/3.3.0/css/fixedColumns.bootstrap.css" rel="stylesheet"/>
2
 
3
<section class="wrapper">
4
    <div class="row">
5
        <div class="col-lg-12">
6
            <h3 class="page-header"><i class="icon_document_alt"></i>ONBOARDING LEGAL</h3>
7
            <ol class="breadcrumb">
8
                <li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
9
                <li><i class="icon_document_alt"></i>Onboarding Legal</li>
10
            </ol>
11
        </div>
12
    </div>
13
    <div class="col-lg-12">
14
        <table class="table table-border table-condensed table-bordered" id="onboardingLegal" style="width:100%">
15
 
16
            <thead class="row htable" style="background:#F5F5F5;">
17
 
18
            <tr style="color:black;">
19
                   <th>Id</th>
29213 tejbeer 20
                <th>Outlet Name(SM)</th>
21
                <th>State Head(SM)</th>
22
                <th>BDM (SM)</th>
23
                <th>Agreed Brand fees(SM)</th>
24
                <th>Received Brand fees(SM)</th>
25
                <th>Aadhaar(legal)</th>
29104 manish 26
                <th>pan(legal)</th>
27
                <th>GST(legal)</th>
28
                <th>Cancel cheque(legal)</th>
29
                <th>Rent agreement/Owner ship proof(legal)</th>
30
                <th>LOI(legal)</th>
31
                <th>Doc Compl</th>    
32
                <th>Aniversary Date(legal)</th>
33
                <th>D.O.B(legal)</th>
34
                <th>Code(legal)</th>
35
                <th>Submit</th>     
36
            </tr>
37
            </thead>
38
            <tbody>
39
                #foreach($pob in $pobLegals )
40
 
41
               #if($pob.getHoldTimestamp())
42
                <tr class="legal-hold" >
43
                   #parse("partner-onboarding-legal-row-index.vm")
44
 
45
                </tr>
46
 
47
                #else
48
                <tr >
49
                   #parse("partner-onboarding-legal-row-index.vm")
50
 
51
                </tr>
52
                #end
53
 
54
                #end
55
 
56
            </tbody>
57
 
58
        </table>
59
    </div>
60
</section>
61
 
62
 
63
<script type="text/javascript">
64
 
65
    $(document).ready(function () {
66
 
67
 
68
 
69
      var dtable = $('#onboardingLegal').DataTable({
70
             "scrollX": true,
71
            "scrollY": "518px",
72
            scrollCollapse: true,
73
              "fixedHeader": true,
29111 manish 74
             "order": [[ 0, "desc" ]],
29104 manish 75
        fixedColumns:   {
76
            leftColumns: 2
77
        }, 
29111 manish 78
 
79
        "columnDefs": [
80
                   { "targets": 1, "orderDataType":  "dom-text", "type":"string" },
81
                   { "targets": 8, "orderDataType": "dom-text", "type": "string" },
82
                  { "targets": 9, "orderDataType": "date-dd-mmm-yyyy", "type": "string" },
83
                   { "targets": 10, "orderDataType": "date-dd-mmm-yyyy", "type":"string"},
84
 
85
                   { "targets": 11, "orderDataType":  "dom-text", "type":"string" }
86
 
87
                        ],
29104 manish 88
 
89
     });   
90
 
91
 
92
    });
93
 
94
 
95
</script>
96
 
97
<style>
98
  .legal-hold td{
99
 
100
background-color: crimson !important;
101
 
102
   }
103
   </style>