Subversion Repositories SmartDukaan

Rev

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