| 27799 |
tejbeer |
1 |
<section class="wrapper">
|
|
|
2 |
<div class="row">
|
|
|
3 |
<div class="col-lg-12">
|
|
|
4 |
<h3 class="page-header"><i class="icon_document_alt"></i>PARTNER ONBOARDING REJECT</h3>
|
|
|
5 |
<ol class="breadcrumb">
|
|
|
6 |
<li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
|
|
|
7 |
<li><i class="icon_document_alt"></i>Partner Onboarding Reject</li>
|
|
|
8 |
</ol>
|
|
|
9 |
</div>
|
|
|
10 |
</div>
|
|
|
11 |
|
|
|
12 |
|
|
|
13 |
<div class="col-lg-12">
|
|
|
14 |
<table class="table table-border table-condensed table-bordered" id="oboardingreject" style="width:100%">
|
|
|
15 |
|
|
|
16 |
<thead class="row htable">
|
|
|
17 |
|
|
|
18 |
<tr style="color:black;">
|
|
|
19 |
<th>Id</th>
|
|
|
20 |
<th>Created On</th>
|
|
|
21 |
<th>Acquired Date()</th>
|
|
|
22 |
<th>Outlet Name(SM)</th>
|
|
|
23 |
<th>Phone Number(SM)</th>
|
| 28599 |
amit.gupta |
24 |
<th>Address(SM)</th>
|
| 27799 |
tejbeer |
25 |
<th>City (SM)</th>
|
|
|
26 |
<th>State Head(SM)</th>
|
|
|
27 |
<th>BDM (SM)</th>
|
|
|
28 |
<th>Store Pics(SM)</th>
|
|
|
29 |
<th>Agreed Brand fees(SM)</th>
|
|
|
30 |
<th>Received Brand fees(SM)</th>
|
|
|
31 |
<th>Payment Received(SM)</th>
|
|
|
32 |
<th>Agreed Wallet(SM)</th>
|
|
|
33 |
<th>Investment Date(SM)</th>
|
|
|
34 |
<th>KYC (SM)</th>
|
|
|
35 |
<th>Aadhaar(legal)</th>
|
|
|
36 |
<th>pan(legal)</th>
|
|
|
37 |
<th>GST(legal)</th>
|
|
|
38 |
<th>Cancel cheque(legal)</th>
|
|
|
39 |
<th>Rent agreement/Owner ship proof(legal)</th>
|
|
|
40 |
<th>LOI(legal)</th>
|
|
|
41 |
<th>Code(legal)</th>
|
|
|
42 |
<th>Recee Planed(Kamini)</th>
|
|
|
43 |
<th>Recee Actual(Kamini)</th>
|
|
|
44 |
<th>Designing Planed(Kamini)</th>
|
|
|
45 |
<th>Designing Actual(Kamini)</th>
|
|
|
46 |
<th>Stock payment(kamini)</th>
|
|
|
47 |
<th>Expected Date(kamini)</th>
|
|
|
48 |
<th>Pay Date(Kamini)</th>
|
|
|
49 |
<th>Billing Status(Niranjan)</th>
|
|
|
50 |
|
|
|
51 |
</tr>
|
|
|
52 |
</thead>
|
|
|
53 |
<tbody>
|
|
|
54 |
#foreach($pob in $user )
|
|
|
55 |
<tr id="trow2">
|
|
|
56 |
#if($pob.getId())
|
|
|
57 |
<td style="background:#87cefa;">$pob.getId()</td>
|
|
|
58 |
#else
|
|
|
59 |
<td>$pob.getId()</td>
|
|
|
60 |
#end
|
|
|
61 |
|
|
|
62 |
#if($pob.getCreatedTimestamp())
|
|
|
63 |
<td style="background:lime;">$pob.getCreatedTimestamp().format($datehiphenFormatter)</td>
|
|
|
64 |
#else
|
|
|
65 |
<td style="background:pink;">
|
|
|
66 |
</td>
|
|
|
67 |
#end
|
|
|
68 |
|
|
|
69 |
|
|
|
70 |
#if($pob.getAcquiredDate())
|
|
|
71 |
<td style="background:lime;"><input type="date" class="acquired" placeholder="Acquired Date(SM)" disabled
|
|
|
72 |
name="acquireddate"
|
|
|
73 |
value="$pob.getAcquiredDate().format($datehiphenFormatter)"></td>
|
|
|
74 |
#else
|
|
|
75 |
<td style="background:pink;"><input type="date" class="acquired" placeholder="Acquired Date(SM)" disabled
|
|
|
76 |
name="acquireddate">
|
|
|
77 |
</td>
|
|
|
78 |
#end
|
|
|
79 |
|
|
|
80 |
#if($pob.getOutLetName() && $pob.getOutLetName() != "")
|
|
|
81 |
<td style="background:lime;"><input type="text" placeholder="OutLet Name" value="$pob.getOutLetName()" name="outlateName"
|
|
|
82 |
disabled></td>
|
|
|
83 |
#else
|
|
|
84 |
<td style="background:pink;"><input type="text" placeholder="OutLet Name" name="outlateName" disabled></td>
|
|
|
85 |
#end
|
|
|
86 |
#if($pob.getPhoneNumber() && $pob.getPhoneNumber() != 0)
|
|
|
87 |
<td style="background:lime;">
|
|
|
88 |
<input type="number" placeholder="9999999999" value="$pob.getPhoneNumber()"
|
|
|
89 |
name="phonenumber1"
|
|
|
90 |
disabled ></td>
|
|
|
91 |
#else
|
|
|
92 |
<td style="background:pink;"><input type="number" placeholder="9999999999" name="phonenumber1" disabled></td>
|
|
|
93 |
#end
|
| 28599 |
amit.gupta |
94 |
#if($pob.getAddress()&& $pob.getAddress()!="" )
|
|
|
95 |
<td style="background:lime;">
|
|
|
96 |
<input type="text" placeholder="Address" value="$pob.getAddress()"
|
|
|
97 |
name="addess1"
|
|
|
98 |
disabled ></td>
|
|
|
99 |
#else
|
|
|
100 |
<td style="background:pink;"><input type="text" placeholder="Address" name="address1" disabled></td>
|
|
|
101 |
#end
|
|
|
102 |
|
| 27799 |
tejbeer |
103 |
|
|
|
104 |
#if($pob.getCity() && $pob.getCity() != "")
|
|
|
105 |
<td style="background:lime;"><input type="text" placeholder="City (SM)" disabled name="city1" value="$pob.getCity()"></td>
|
|
|
106 |
#else
|
|
|
107 |
<td style="background:pink;"><input type="text" placeholder="City (SM)" disabled name="city1"></td>
|
|
|
108 |
#end
|
|
|
109 |
#if($pob.getStateHead() && $pob.getStateHead() != "")
|
|
|
110 |
<td style="background:lime;"><input type="text" placeholder="State Head(SM)" disabled name="shead1"
|
|
|
111 |
value="$pob.getStateHead()"></td>
|
|
|
112 |
#else
|
|
|
113 |
<td style="background:pink;"><input type="text" placeholder="State Head(SM)" disabled name="shead1"></td>
|
|
|
114 |
#end
|
|
|
115 |
#if($pob.getBDM() && $pob.getBDM() != "")
|
|
|
116 |
<td style="background:lime;"><input type="text" placeholder="BDM (SM)" disabled name="bdm1" value="$pob.getBDM()"></td>
|
|
|
117 |
#else
|
|
|
118 |
<td style="background:pink;"><input type="text" placeholder="BDM (SM)" disabled name="bdm1"></td>
|
|
|
119 |
#end
|
|
|
120 |
#if($pob.getStorePics() && $pob.getStorePics() != 0)
|
|
|
121 |
<td class="storepics docfile" style="background:lime;" >
|
|
|
122 |
<input type="hidden" class="storepicshidden" value="$pob.getStorePics()">
|
|
|
123 |
<input type="file" class="storepic" placeholder="Store Pics(SM)" disabled name="storepics1"
|
|
|
124 |
value="$pob.getStorePics()">
|
|
|
125 |
##<button type="button" class="btn btn-primary download-store-file" data-docid="$pob.getStorePics()" data-id="$pob.getId()">download</button>
|
|
|
126 |
<a href="${rc.contextPath}/download-attachment?documentId=$pob.getStorePics()">Download
|
|
|
127 |
Doc</a>
|
|
|
128 |
</td>
|
|
|
129 |
#else
|
|
|
130 |
<td class="storepics docfile" style="background:pink;">
|
|
|
131 |
<input type="hidden">
|
|
|
132 |
<input type="file" class="storepic" placeholder="Store Pics(SM)" disabled name="storepics1">
|
|
|
133 |
</td>
|
|
|
134 |
#end
|
|
|
135 |
#if($pob.getAgreedBrandFees() != 0)
|
|
|
136 |
<td style="background:lime;"><input type="text" placeholder="Agreed Brand fees(SM)" disabled name="abrand1"
|
|
|
137 |
value="$pob.getAgreedBrandFees()" ></td>
|
|
|
138 |
#else
|
|
|
139 |
<td style="background:pink;"><input type="text" placeholder="Agreed Brand fees(SM)" disabled name="abrand1"></td>
|
|
|
140 |
#end
|
|
|
141 |
|
|
|
142 |
#if($pob.getReceivedBrandFees()!= 0)
|
|
|
143 |
|
|
|
144 |
<td style="background:lime;"><input type="text" placeholder="Received Brand fees" disabled name="recbrand1"
|
|
|
145 |
value="$pob.getReceivedBrandFees()"></td>
|
|
|
146 |
#else
|
|
|
147 |
<td style="background:pink;"><input type="text" placeholder="Received Brand fees" disabled name="recbrand1"></td>
|
|
|
148 |
#end
|
|
|
149 |
|
|
|
150 |
#if($pob.getPendingPics() && $pob.getPendingPics() != 0)
|
|
|
151 |
<td class="pendingpics docfile" style="background:lime">
|
|
|
152 |
<input type="hidden" class="pendpicshidden" value="$pob.getPendingPics()">
|
|
|
153 |
<input type="file" class="pendpics" placeholder="pending Pics(SM)" disabled name="pendpics1"
|
|
|
154 |
value="$pob.getPendingPics()"/>
|
|
|
155 |
##<button type="button" class="btn btn-primary download-pending-file" data-docpid="$pob.getPendingPics()" data-id="$pob.getId()">Download Document</button>
|
|
|
156 |
<a href="${rc.contextPath}/download-attachment?documentId=$pob.getPendingPics()">Download
|
|
|
157 |
Doc</a>
|
|
|
158 |
|
|
|
159 |
|
|
|
160 |
</td>
|
|
|
161 |
#else
|
|
|
162 |
<td class="pendingpics docfile" style="background:pink;">
|
|
|
163 |
<input type="hidden">
|
|
|
164 |
<input type="file" placeholder="Pending Pics(SM)" disabled name="pendpics1">
|
|
|
165 |
</td>
|
|
|
166 |
#end
|
|
|
167 |
#if($pob.getAgreedWallet()!= 0)
|
|
|
168 |
<td style="background:lime;"><input type="text" placeholder="Agreed Wallet(SM)" disabled name="awallet"
|
|
|
169 |
value="$pob.getAgreedWallet()" ></td>
|
|
|
170 |
#else
|
|
|
171 |
<td style="background:pink;"><input type="text" placeholder="Agreed Wallet(SM)" disabled name="awallet"></td>
|
|
|
172 |
#end
|
|
|
173 |
|
|
|
174 |
#if($pob.getInvestmentDate())
|
|
|
175 |
|
|
|
176 |
<td style="background:lime;"><input type="date" placeholder="Investment Date(SM)" disabled name="idate1" id="idate"
|
|
|
177 |
value="$pob.getInvestmentDate().format($datehiphenFormatter)"
|
|
|
178 |
></td>
|
|
|
179 |
#else
|
|
|
180 |
<td style="background:pink;"><input type="date" placeholder="Investment Date(SM)" disabled name="idate1"></td>
|
|
|
181 |
#end
|
|
|
182 |
#if($pob.getKyc() && $pob.getKyc() != 0)
|
|
|
183 |
<td class="kyc docfile" style="background:lime;">
|
|
|
184 |
<input type="hidden" class="kychidden" value="$pob.getKyc()">
|
|
|
185 |
<input type="file" class="kyc" placeholder="KYC (SM)" disabled name="kyc1"
|
|
|
186 |
value="$pob.getKyc()">
|
|
|
187 |
##<button type="button" class="btn btn-primary download-kyc-file" data-docpid="$pob.getKyc()" data-id="$pob.getId()">Download Document</button>
|
|
|
188 |
<a href="${rc.contextPath}/download-attachment?documentId=$pob.getKyc()">Download Doc</a>
|
|
|
189 |
|
|
|
190 |
</td>
|
|
|
191 |
#else
|
|
|
192 |
<td class="kyc docfile" style="background:pink;">
|
|
|
193 |
<input type="hidden">
|
|
|
194 |
<input type="file" id="kyc" placeholder="KYC (SM)" disabled name="kyc1">
|
|
|
195 |
</td>
|
|
|
196 |
#end
|
|
|
197 |
|
|
|
198 |
#if($pob.getAadharDoc() && $pob.getAadharDoc() != 0)
|
|
|
199 |
<td class="aadhar docfile" style="background:lime;">
|
|
|
200 |
<input type="hidden" class="aadharhidden" value="$pob.getAadharDoc()">
|
|
|
201 |
<input type="file" class="aadhar" placeholder="aadhar" disabled name="aadhar1"
|
|
|
202 |
value="$pob.getAadharDoc()">
|
|
|
203 |
<a href="${rc.contextPath}/download-attachment?documentId=$pob.getAadharDoc()">Download
|
|
|
204 |
Doc</a>
|
|
|
205 |
|
|
|
206 |
</td>
|
|
|
207 |
#else
|
|
|
208 |
<td class="aadhar docfile" style="background:pink;">
|
|
|
209 |
<input type="hidden">
|
|
|
210 |
<input type="file" class="aadhar" placeholder="aadhar" disabled name="aadhar1">
|
|
|
211 |
</td>
|
|
|
212 |
#end
|
|
|
213 |
#if($pob.getPanDoc() && $pob.getPanDoc() != 0)
|
|
|
214 |
<td class="pan docfile" style="background:lime;">
|
|
|
215 |
<input type="hidden" class="panhidden" value="$pob.getPanDoc()">
|
|
|
216 |
<input type="file" class="pandoc" placeholder="pan(SM)" disabled name="pan1"
|
|
|
217 |
value="$pob.getPanDoc()">
|
|
|
218 |
##<button type="button" class="btn btn-primary download-pan-file" data-docpid="$pob.getPanDoc()" data-id="$pob.getId()">Download Document</button>
|
|
|
219 |
<a href="${rc.contextPath}/download-attachment?documentId=$pob.getPanDoc()">Download Doc</a>
|
|
|
220 |
|
|
|
221 |
</td>
|
|
|
222 |
#else
|
|
|
223 |
<td class="pan docfile" style="background:pink;">
|
|
|
224 |
<input type="hidden">
|
|
|
225 |
<input type="file" class="pandoc" placeholder="pan(SM)" disabled name="pan1">
|
|
|
226 |
</td>
|
|
|
227 |
#end
|
|
|
228 |
#if($pob.getGstdoc() && $pob.getGstdoc() != 0)
|
|
|
229 |
<td class="gst docfile" style="background:lime;">
|
|
|
230 |
<input type="hidden" class="gsthidden" value="$pob.getGstdoc()">
|
|
|
231 |
<input type="file" class="gstdoc" placeholder="GST(SM)" disabled name="gst1"
|
|
|
232 |
value="$pob.getGstdoc()">
|
|
|
233 |
##<button type="button" class="btn btn-primary download-gst-file" data-docpid="$pob.getGstdoc()" data-id="$pob.getId()">Download Document</button>
|
|
|
234 |
<a href="${rc.contextPath}/download-attachment?documentId=$pob.getGstdoc()">Download Doc</a>
|
|
|
235 |
|
|
|
236 |
</td>
|
|
|
237 |
#else
|
|
|
238 |
<td class="gst docfile" style="background:pink;">
|
|
|
239 |
<input type="hidden">
|
|
|
240 |
<input type="file" class="gstdoc" placeholder="GST(SM)" disabled name="gst1">
|
|
|
241 |
</td>
|
|
|
242 |
#end
|
|
|
243 |
#if($pob.getCancelCheque() && $pob.getCancelCheque() != 0)
|
|
|
244 |
|
|
|
245 |
<td class="cancheque docfile" style="background:lime;">
|
|
|
246 |
<input type="hidden" class="canchequehidden" value="$pob.getCancelCheque()">
|
|
|
247 |
<input type="file" class="canchequedoc" placeholder="Cancel cheque(SM)" disabled name="cancheque1"
|
|
|
248 |
value="$pob.getCancelCheque()">
|
|
|
249 |
##<button type="button" class="btn btn-primary download-cancheque-file" data-docpid="$pob.getCancelCheque()" data-id="$pob.getId()">Download Document</button>
|
|
|
250 |
<a href="${rc.contextPath}/download-attachment?documentId=$pob.getCancelCheque()">Download
|
|
|
251 |
Doc</a>
|
|
|
252 |
|
|
|
253 |
</td>
|
|
|
254 |
|
|
|
255 |
#else
|
|
|
256 |
<td class="cancheque docfile" style="background:pink;">
|
|
|
257 |
<input type="hidden">
|
|
|
258 |
<input type="file" class="canchequedoc" placeholder="Cancel cheque(SM)" disabled
|
|
|
259 |
name="cancheque1">
|
|
|
260 |
</td>
|
|
|
261 |
#end
|
|
|
262 |
#if($pob.getRentAgreement() && $pob.getRentAgreement() != 0)
|
|
|
263 |
<td class="rent docfile" style="background:lime;">
|
|
|
264 |
<input type="hidden" class="renthidden" value="$pob.getRentAgreement()">
|
|
|
265 |
<input type="file" class="rentdoc" placeholder="Rent agreement/Owner ship proof(SM)" disabled name="ragreement1"
|
|
|
266 |
value="$pob.getRentAgreement()">
|
|
|
267 |
<a href="${rc.contextPath}/download-attachment?documentId=$pob.getRentAgreement()">Download Doc</a>
|
|
|
268 |
</td>
|
|
|
269 |
#else
|
|
|
270 |
|
|
|
271 |
<td class="rent docfile" style="background:pink;">
|
|
|
272 |
<input type="hidden">
|
|
|
273 |
<input type="file" placeholder="Rent agreement/Owner ship proof(SM)" disabled name="ragreement1">
|
|
|
274 |
</td>
|
|
|
275 |
#end
|
|
|
276 |
|
|
|
277 |
#if($pob.getLOI() && $pob.getLOI() != 0)
|
|
|
278 |
<td class="loi docfile" style="background:lime;">
|
|
|
279 |
<input type="hidden" class="loihidden" value="$pob.getLOI()">
|
|
|
280 |
<input type="file" class="loidoc" placeholder="LOI(SM)" disabled value="$pob.getLOI()">
|
|
|
281 |
<a href="${rc.contextPath}/download-attachment?documentId=$pob.getLOI()">Download Doc</a>
|
|
|
282 |
</td>
|
|
|
283 |
#else
|
|
|
284 |
|
|
|
285 |
<td class="loi docfile" style="background:pink;">
|
|
|
286 |
<input type="hidden">
|
|
|
287 |
<input type="file" placeholder="LOI(SM)" disabled name="loi1">
|
|
|
288 |
</td>
|
|
|
289 |
#end
|
|
|
290 |
|
|
|
291 |
|
|
|
292 |
|
|
|
293 |
#if($pob.getCode() && $pob.getCode() != "")
|
|
|
294 |
<td style="background:lime;"><input type="text" placeholder="Code(SM)" disabled name="code1" value="$pob.getCode()"
|
|
|
295 |
></td>
|
|
|
296 |
#else
|
|
|
297 |
<td style="background:pink;"><input type="text" placeholder="Code(SM)" disabled name="code1"></td>
|
|
|
298 |
#end
|
|
|
299 |
#if($pob.getReceePlaned())
|
|
|
300 |
<td style="background:lime;"><input type="date" id="rplaned" placeholder="Recee Planed(Kamini)" disabled name="rplaned1"
|
|
|
301 |
value="$pob.getReceePlaned().format($datehiphenFormatter)" >
|
|
|
302 |
</td>
|
|
|
303 |
#else
|
|
|
304 |
<td style="background:pink;"><input type="date" id="rplaned" placeholder="Recee Planed(Kamini)" disabled name="rplaned1">
|
|
|
305 |
</td>
|
|
|
306 |
#end
|
|
|
307 |
#if($pob.getReceeActual())
|
|
|
308 |
<td style="background:lime;"><input type="date" id="ractual" placeholder="Recee Actual(Kamini)" disabled name="ractual1"
|
|
|
309 |
value="$pob.getReceeActual().format($datehiphenFormatter)" >
|
|
|
310 |
</td>
|
|
|
311 |
#else
|
|
|
312 |
<td style="background:pink;"><input type="date" id="ractual" placeholder="Recee Actual(Kamini)" disabled name="ractual1">
|
|
|
313 |
</td>
|
|
|
314 |
#end
|
|
|
315 |
|
|
|
316 |
#if($pob.getDesigningPlaned())
|
|
|
317 |
<td style="background:lime;"><input type="date" id="dplaned" placeholder="Designing Planed(Kamini)" disabled
|
|
|
318 |
name="dplaned1"
|
|
|
319 |
value="$pob.getDesigningPlaned().format($datehiphenFormatter)"></td>
|
|
|
320 |
#else
|
|
|
321 |
<td style="background:pink;"><input type="date" id="dplaned" placeholder="Designing Planed(Kamini)" disabled
|
|
|
322 |
name="dplaned1">
|
|
|
323 |
</td>
|
|
|
324 |
#end
|
|
|
325 |
#if($pob.getDesigningActual())
|
|
|
326 |
<td style="background:lime;"><input type="date" id="dactual" placeholder="Designing Actual(Kamini)" disabled
|
|
|
327 |
name="dactual1"
|
|
|
328 |
value="$pob.getDesigningActual().format($datehiphenFormatter)"></td>
|
|
|
329 |
#else
|
|
|
330 |
<td style="background:pink;"><input type="date" id="dactual" placeholder="Designing Actual(Kamini)" disabled
|
|
|
331 |
name="dactual1">
|
|
|
332 |
</td>
|
|
|
333 |
#end
|
|
|
334 |
#if($pob.getStockPayment()!= 0)
|
|
|
335 |
<td style="background:lime;"><input type="text" placeholder="Stock payment(kamini)" disabled name="spayment1"
|
|
|
336 |
value="$pob.getStockPayment()"></td>
|
|
|
337 |
#else
|
|
|
338 |
<td style="background:pink;"><input type="text" placeholder="Stock payment(kamini)" disabled name="spayment1""></td>
|
|
|
339 |
#end
|
|
|
340 |
|
|
|
341 |
|
|
|
342 |
|
|
|
343 |
#if($pob.getExpectedDate())
|
|
|
344 |
<td style="background:lime;"><input type="date" class="expdate" placeholder="Expected Date(Kamini)" disabled value="$pob.getExpectedDate().format($datehiphenFormatter)" >
|
|
|
345 |
</td>
|
|
|
346 |
#else
|
|
|
347 |
<td style="background:pink;"><input type="date" class="expdate" placeholder="Expected Date(Kamini)" disabled>
|
|
|
348 |
</td>
|
|
|
349 |
#end
|
|
|
350 |
|
|
|
351 |
#if($pob.getPayDate())
|
|
|
352 |
<td style="background:lime;">
|
|
|
353 |
<input type="date" class="paydate" placeholder="pay Date(Kamini)" disabled value="$pob.getPayDate().format($datehiphenFormatter)" >
|
|
|
354 |
</td>
|
|
|
355 |
#else
|
|
|
356 |
<td style="background:pink;"><input type="date" class="paydate" placeholder="Pay Date(Kamini)" disabled >
|
|
|
357 |
</td>
|
|
|
358 |
#end
|
|
|
359 |
|
|
|
360 |
<td #if($pob.getBillingStatus()==0) style="background-color:pink"#else style="background-color:lime" #end>
|
|
|
361 |
<input type="checkbox" disabled #if($pob.getBillingStatus()>0) checked #end >
|
|
|
362 |
#if($pob.getBillingStatus()>0)
|
|
|
363 |
<label> YES</label>
|
|
|
364 |
#else
|
|
|
365 |
<label>NO</label>
|
|
|
366 |
#end
|
|
|
367 |
|
|
|
368 |
</tr>
|
|
|
369 |
#end
|
|
|
370 |
|
|
|
371 |
</tbody>
|
|
|
372 |
|
|
|
373 |
</table>
|
|
|
374 |
</div>
|
|
|
375 |
|
|
|
376 |
</section>
|
|
|
377 |
|
|
|
378 |
<script>
|
|
|
379 |
|
|
|
380 |
var dtable = $('#oboardingreject').DataTable(
|
|
|
381 |
{
|
|
|
382 |
|
|
|
383 |
"bPaginate": true,
|
|
|
384 |
"bLengthChange": true,
|
|
|
385 |
"bFilter": true,
|
|
|
386 |
"bInfo": false,
|
|
|
387 |
"bAutoWidth": false,
|
|
|
388 |
"scrollX": true,
|
| 28599 |
amit.gupta |
389 |
fixedColumns: {
|
|
|
390 |
leftColumns: 2
|
|
|
391 |
},
|
| 27799 |
tejbeer |
392 |
|
|
|
393 |
});
|
|
|
394 |
|
|
|
395 |
|
|
|
396 |
|
|
|
397 |
</script>
|