Subversion Repositories SmartDukaan

Rev

Rev 29088 | Rev 29559 | 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>
23
                <th>Brand Fees</th>
28908 tejbeer 24
                <th>Brand Fees Received</th>
28977 manish 25
                 <th>NOC Upload</th>
28847 manish 26
                <th>NOC From GT </th>
27
                <th>RBM</th>
28
                <th>Comment</th>
29300 manish 29
                <th>Languages</th>
29007 manish 30
                <th>Checklist</th>
28847 manish 31
                <th>Approval</th>
29300 manish 32
                <th>Veri Done</th>   
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
 
29088 tejbeer 69
<section class="wrapper">
70
    <div class="row">
71
        <div class="col-lg-12">
72
            <h3 class="page-header"><i class="icon_document_alt"></i>Partner Billing</h3>
73
            <ol class="breadcrumb">
74
                <li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
75
                <li><i class="icon_document_alt"></i>Partner Billing</li>
76
            </ol>
77
        </div>
78
    </div>
79
    <div class="col-lg-6">
80
        <table class="table table-border table-condensed table-bordered" id="partnerbilling" style="width:100%">
81
 
82
            <thead class="row htable" style="background:#F5F5F5;">
83
 
84
            <tr style="color:black;">
85
                <th>Id</th>
86
                <th>Outlet Name</th>
87
                <th>Phone Number</th>
88
                <th>City</th>
89
                <th>Billing Status</th>
90
                   <th>Submit</th>
91
 
92
            </tr>
93
            </thead>
94
            <tbody>
95
                #foreach($pob in $partnerOnBoardingPendings )
96
                   #if($partnerVerificationBillingMap.containsKey($pob.getId()))
97
 
98
                     #if($pob.getHoldTimestamp())
99
                     <tr class="hold-verification">
100
 
101
 
102
                  #parse("partner-onboarding-billing-index.vm")
103
                     </tr>
104
                    #else
105
 
106
                #if($partnerVerificationBillingMap.containsKey($pob.getId()))
107
 
108
                <tr>
109
                           #parse("partner-onboarding-billing-index.vm")
110
 
111
                </tr>
112
 
113
            #else
114
                #end
115
 
116
 
117
 
118
                #end
119
 
120
                #else
121
 
122
                #end
123
 
124
                #end
125
 
126
 
127
 
128
 
129
            </tbody>
130
 
131
        </table>
132
    </div>
133
</section>
134
 
135
 
28847 manish 136
<script type="text/javascript">
137
 
138
    $(document).ready(function () {
139
 
140
 
141
 
142
      var dtable = $('#partnerVerification').DataTable({
143
             "scrollX": true,
144
            "scrollY": "518px",
145
            scrollCollapse: true,
146
              "fixedHeader": true,
147
 
148
        fixedColumns:   {
149
            leftColumns: 2
150
        },
151
 
152
     });   
153
 
154
 
29088 tejbeer 155
       var table = $('#partnerbilling').DataTable({
156
             "scrollX": true,
157
            "scrollY": "518px",
158
            scrollCollapse: true,
159
              "fixedHeader": true,
160
 
161
 
162
 
163
     });   
164
 
165
 
28847 manish 166
    });
167
 
168
 
169
</script>
170
 
171
 
172
<style>
28901 manish 173
.hold-verification td{
174
background-color: crimson !important;
175
 
176
 
177
}
28847 manish 178
</style>