Subversion Repositories SmartDukaan

Rev

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