Subversion Repositories SmartDukaan

Rev

Rev 28977 | Rev 29088 | 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>
28977 manish 26
                 <th>NOC Upload</th>
28847 manish 27
                <th>NOC From GT </th>
28
                <th>RBM</th>
29
                <th>Comment</th>
29007 manish 30
                <th>Checklist</th>
28847 manish 31
                <th>Approval</th>
32
                <th>Veri Done</th>
28901 manish 33
 
28847 manish 34
            </tr>
35
            </thead>
36
            <tbody>
37
                #foreach($pob in $partnerOnBoardingPendings )
28934 manish 38
                   #if($partnerVerificationPanelMap.containsKey($pob.getId()))
28932 manish 39
 
40
                    #if($pob.getHoldTimestamp())
41
                     <tr class="hold-verification">
42
                    #parse("partner-onboarding-verification-index.vm")
28847 manish 43
 
28932 manish 44
                     </tr>
45
                    #else
28934 manish 46
                #if($partnerVerificationPanelMap.containsKey($pob.getId()))
28901 manish 47
                 <tr>
28977 manish 48
                        #parse("partner-onboarding-verification-index.vm")
28901 manish 49
                </tr>
28932 manish 50
                #else
28847 manish 51
                #end
28901 manish 52
 
28932 manish 53
 
54
 
28901 manish 55
                #end
28932 manish 56
 
57
                #else
58
 
59
                #end
60
 
61
                #end
28847 manish 62
 
63
            </tbody>
64
 
65
        </table>
66
    </div>
67
</section>
68
 
69
 
70
<script type="text/javascript">
71
 
72
    $(document).ready(function () {
73
 
74
 
75
 
76
      var dtable = $('#partnerVerification').DataTable({
77
             "scrollX": true,
78
            "scrollY": "518px",
79
            scrollCollapse: true,
80
              "fixedHeader": true,
81
 
82
        fixedColumns:   {
83
            leftColumns: 2
84
        },
85
 
86
     });   
87
 
88
 
89
    });
90
 
91
 
92
</script>
93
 
94
 
95
<style>
28901 manish 96
.hold-verification td{
97
background-color: crimson !important;
98
 
99
 
100
}
28847 manish 101
</style>