Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
28847 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>Partner Verification</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>Partner Verification</li>
10
            </ol>
11
        </div>
12
    </div>
13
    <div class="col-lg-12">
14
        <table class="table table-border table-condensed table-bordered" id="partnerVerification" style="width:100%">
15
 
16
            <thead class="row htable" style="background:#F5F5F5;">
17
 
18
            <tr style="color:black;">
19
                <th>Id</th>
20
                <th>Outlet Name</th>
28882 manish 21
                 <th>Phone Number</th>
28847 manish 22
                <th>City</th>
28882 manish 23
 
28847 manish 24
                <th>Brand Fees</th>
28908 tejbeer 25
                <th>Brand Fees Received</th>
28847 manish 26
                <th>NOC From GT </th>
27
                <th>RBM</th>
28
                <th>Comment</th>
29
                <th>Approval</th>
30
                <th>Veri Done</th>
28901 manish 31
 
28847 manish 32
            </tr>
33
            </thead>
34
            <tbody>
35
                #foreach($pob in $partnerOnBoardingPendings )
28932 manish 36
                   #if($partnerVerificationpanelMap.containsKey($pob.getId()))
37
 
38
                    #if($pob.getHoldTimestamp())
39
                     <tr class="hold-verification">
40
                    #parse("partner-onboarding-verification-index.vm")
28847 manish 41
 
28932 manish 42
                     </tr>
43
                    #else
44
                #if($partnerVerificationpanelMap.containsKey($pob.getId()))
28901 manish 45
                 <tr>
28932 manish 46
 
47
 
28901 manish 48
                   #parse("partner-onboarding-verification-index.vm")
49
 
50
                </tr>
28932 manish 51
                #else
28847 manish 52
                #end
28901 manish 53
 
28932 manish 54
 
55
 
28901 manish 56
                #end
28932 manish 57
 
58
                #else
59
 
60
                #end
61
 
62
                #end
28847 manish 63
 
64
            </tbody>
65
 
66
        </table>
67
    </div>
68
</section>
69
 
70
 
71
<script type="text/javascript">
72
 
73
    $(document).ready(function () {
74
 
75
 
76
 
77
      var dtable = $('#partnerVerification').DataTable({
78
             "scrollX": true,
79
            "scrollY": "518px",
80
            scrollCollapse: true,
81
              "fixedHeader": true,
82
 
83
        fixedColumns:   {
84
            leftColumns: 2
85
        },
86
 
87
     });   
88
 
89
 
90
    });
91
 
92
 
93
</script>
94
 
95
 
96
<style>
28901 manish 97
.hold-verification td{
98
background-color: crimson !important;
99
 
100
 
101
}
28847 manish 102
</style>