Subversion Repositories SmartDukaan

Rev

Rev 29213 | Rev 29763 | 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>
29509 manish 35
                 <th>Phone(legal)</th>
29104 manish 36
                <th>Submit</th>     
37
            </tr>
38
            </thead>
39
            <tbody>
40
                #foreach($pob in $pobLegals )
41
 
42
               #if($pob.getHoldTimestamp())
43
                <tr class="legal-hold" >
44
                   #parse("partner-onboarding-legal-row-index.vm")
45
 
46
                </tr>
47
 
48
                #else
49
                <tr >
50
                   #parse("partner-onboarding-legal-row-index.vm")
51
 
52
                </tr>
53
                #end
54
 
55
                #end
56
 
57
            </tbody>
58
 
59
        </table>
60
    </div>
61
</section>
62
 
63
 
64
<script type="text/javascript">
65
 
66
    $(document).ready(function () {
67
 
68
 
69
 
70
      var dtable = $('#onboardingLegal').DataTable({
71
             "scrollX": true,
72
            "scrollY": "518px",
73
            scrollCollapse: true,
74
              "fixedHeader": true,
29111 manish 75
             "order": [[ 0, "desc" ]],
29104 manish 76
        fixedColumns:   {
77
            leftColumns: 2
78
        }, 
29111 manish 79
 
80
        "columnDefs": [
81
                   { "targets": 1, "orderDataType":  "dom-text", "type":"string" },
82
                   { "targets": 8, "orderDataType": "dom-text", "type": "string" },
83
                  { "targets": 9, "orderDataType": "date-dd-mmm-yyyy", "type": "string" },
84
                   { "targets": 10, "orderDataType": "date-dd-mmm-yyyy", "type":"string"},
85
 
86
                   { "targets": 11, "orderDataType":  "dom-text", "type":"string" }
87
 
88
                        ],
29104 manish 89
 
90
     });   
91
 
92
 
93
    });
94
 
95
 
96
</script>
97
 
98
<style>
99
  .legal-hold td{
100
 
101
background-color: crimson !important;
102
 
103
   }
104
   </style>