| 29794 |
tejbeer |
1 |
|
|
|
2 |
|
| 29841 |
tejbeer |
3 |
<td><i class="far fa-arrow-alt-circle-down"></i>$pobpMap.get($fofoKyc.getOnboardingId()).getCode() ($customerRetailers.get($pobpMap.get($fofoKyc.getOnboardingId()).getCode()).getAddress().getCity())</td>
|
|
|
4 |
|
|
|
5 |
<td><i class="far fa-arrow-alt-circle-down"></i>$customerRetailers.get($pobpMap.get($fofoKyc.getOnboardingId()).getCode()).getBusinessName() </td>
|
|
|
6 |
|
| 29794 |
tejbeer |
7 |
|
|
|
8 |
#if($fofoKyc.getId())
|
|
|
9 |
<td> <i class="far fa-arrow-alt-circle-up" style="background:green"></i>$fofoKyc.getId()</td>
|
|
|
10 |
#else
|
|
|
11 |
<td><i class="far fa-arrow-alt-circle-down"></i>$fofoKyc.getId()</td>
|
|
|
12 |
#end
|
|
|
13 |
|
| 29886 |
tejbeer |
14 |
|
|
|
15 |
|
|
|
16 |
<td>
|
|
|
17 |
<i class="far fa-arrow-alt-circle-up" style="background:lime"></i>
|
|
|
18 |
|
|
|
19 |
<select class="" id = "kycstatus" name="kycstatus" placeholder="" disabled>
|
|
|
20 |
<option value="" disabled selected>-Status-</option>
|
|
|
21 |
|
|
|
22 |
#if($fofoKyc.getStatus() == "pending")
|
|
|
23 |
<option value="pending" selected>pending</option>
|
|
|
24 |
#else
|
|
|
25 |
<option value="pending" >pending</option>
|
|
|
26 |
#end
|
|
|
27 |
|
|
|
28 |
#if($fofoKyc.getStatus() == "checked")
|
|
|
29 |
<option value="checked" selected>checked</option>
|
|
|
30 |
#else
|
|
|
31 |
<option value="checked" >checked</option>
|
|
|
32 |
#end
|
|
|
33 |
|
|
|
34 |
#if($fofoKyc.getStatus() == "ok")
|
|
|
35 |
|
|
|
36 |
<option value="ok" selected>ok</option>
|
|
|
37 |
#else
|
|
|
38 |
|
|
|
39 |
<option value="ok">ok</option>
|
|
|
40 |
|
|
|
41 |
#end
|
|
|
42 |
|
|
|
43 |
|
|
|
44 |
</select>
|
|
|
45 |
</td>
|
|
|
46 |
|
| 29794 |
tejbeer |
47 |
<td>
|
|
|
48 |
<i class="far fa-arrow-alt-circle-up" style="background:green"></i>
|
|
|
49 |
|
|
|
50 |
<select class="" id = "businesstype" name="businesstype" placeholder="Business Type" disabled>
|
|
|
51 |
<option value="" disabled selected>Business Type-</option>
|
|
|
52 |
#foreach($bt in $businessTypes))
|
|
|
53 |
#if($pobpMap.get($fofoKyc.getOnboardingId()).getBusinessType() == $bt)
|
|
|
54 |
<option value="$bt" selected>$bt</option>
|
|
|
55 |
#else
|
|
|
56 |
<option value="$bt">$bt</option>
|
|
|
57 |
#end
|
|
|
58 |
#end
|
|
|
59 |
</select>
|
|
|
60 |
</td>
|
|
|
61 |
|
|
|
62 |
#if($fofoKyc.getFirstName() && $fofoKyc.getFirstName() != "")
|
|
|
63 |
<td> <i class="far fa-arrow-alt-circle-up" style="background:green"></i><input type="text" placeholder="First Name" value="$fofoKyc.getFirstName()" name="firstName"
|
|
|
64 |
disabled></td>
|
|
|
65 |
#else
|
|
|
66 |
<td><i class="far fa-arrow-alt-circle-down" style="background:pink;"></i><input type="text" placeholder="First Name" name="firstName" disabled></td>
|
|
|
67 |
#end
|
|
|
68 |
|
|
|
69 |
|
|
|
70 |
#if($fofoKyc.getMiddleName() && $fofoKyc.getMiddleName() != "")
|
|
|
71 |
<td> <i class="far fa-arrow-alt-circle-up" style="background:green"></i><input type="text" placeholder="Middle Name" value="$fofoKyc.getMiddleName()" name="middleName"
|
|
|
72 |
disabled></td>
|
|
|
73 |
#else
|
|
|
74 |
<td><i class="far fa-arrow-alt-circle-down" style="background:pink;"></i><input type="text" placeholder="Middle Name" name="middleName" disabled></td>
|
|
|
75 |
#end
|
|
|
76 |
|
|
|
77 |
#if($fofoKyc.getLastName() && $fofoKyc.getLastName() != "")
|
|
|
78 |
<td> <i class="far fa-arrow-alt-circle-up" style="background:green"></i><input type="text" placeholder="Last Name" value="$fofoKyc.getLastName()" name="lastName"
|
|
|
79 |
disabled></td>
|
|
|
80 |
#else
|
|
|
81 |
<td><i class="far fa-arrow-alt-circle-down" style="background:pink;"></i><input type="text" placeholder="Last Name" name="lastName" disabled></td>
|
|
|
82 |
#end
|
|
|
83 |
|
|
|
84 |
#if($fofoKyc.getFatherName() && $fofoKyc.getFatherName() != "")
|
|
|
85 |
<td> <i class="far fa-arrow-alt-circle-up" style="background:green"></i><input type="text" placeholder="Father Name" value="$fofoKyc.getFatherName()" name="fatherName"
|
|
|
86 |
disabled></td>
|
|
|
87 |
#else
|
|
|
88 |
<td><i class="far fa-arrow-alt-circle-down" style="background:pink;"></i><input type="text" placeholder="Father Name" name="fatherName" disabled></td>
|
|
|
89 |
#end
|
|
|
90 |
|
|
|
91 |
#if($fofoKyc.getDob())
|
|
|
92 |
<td><i class="far fa-arrow-alt-circle-up" style="background:green"></i><input type="date" class="dob" placeholder="DOB" disabled
|
|
|
93 |
name="dob"
|
|
|
94 |
value="$fofoKyc.getDob().format($datehiphenFormatter)"></td>
|
|
|
95 |
#else
|
|
|
96 |
<td><i class="far fa-arrow-alt-circle-down" style="background:pink;"></i><input type="date" class="dob" placeholder="DOB" disabled
|
|
|
97 |
name="dob">
|
|
|
98 |
</td>
|
|
|
99 |
#end
|
|
|
100 |
|
|
|
101 |
|
|
|
102 |
|
|
|
103 |
#if($fofoKyc.getGender() && $fofoKyc.getGender() != "")
|
|
|
104 |
<td>
|
|
|
105 |
<i class="far fa-arrow-alt-circle-up" style="background:lime"></i>
|
|
|
106 |
|
|
|
107 |
<select class="" id = "gender" name="gender" placeholder="" disabled>
|
|
|
108 |
<option value="" disabled selected>-Gender-</option>
|
|
|
109 |
#foreach($gd in $gender))
|
|
|
110 |
|
|
|
111 |
#if($fofoKyc.getGender() == $gd)
|
|
|
112 |
<option value="$gd" selected>$gd</option>
|
|
|
113 |
#else
|
|
|
114 |
<option value="$gd">$gd</option>
|
|
|
115 |
#end
|
|
|
116 |
#end
|
|
|
117 |
</select>
|
|
|
118 |
</td>
|
|
|
119 |
#else
|
|
|
120 |
<td>
|
|
|
121 |
<i class="far fa-arrow-alt-circle-down" style="background:pink"></i>
|
|
|
122 |
<select class="" id = "gender" name="gender" disabled>
|
|
|
123 |
<option value="" selected>-Gender-</option>
|
|
|
124 |
#foreach($gd in $gender))
|
|
|
125 |
<option value="$gd">$gd</option>
|
|
|
126 |
|
|
|
127 |
#end
|
|
|
128 |
</select>
|
|
|
129 |
</td>
|
|
|
130 |
#end
|
|
|
131 |
|
|
|
132 |
|
|
|
133 |
|
|
|
134 |
|
|
|
135 |
|
|
|
136 |
#if($fofoKyc.getMaritalStatus() && $fofoKyc.getMaritalStatus() != "")
|
|
|
137 |
<td>
|
|
|
138 |
<i class="far fa-arrow-alt-circle-up" style="background:lime"></i>
|
|
|
139 |
|
|
|
140 |
<select class="" id = "maritalStatus" name="maritalStatus" placeholder="" disabled>
|
|
|
141 |
<option value="" disabled selected>-Marital Status-</option>
|
|
|
142 |
#foreach($ms in $maritalStatus))
|
|
|
143 |
|
|
|
144 |
#if($fofoKyc.getMaritalStatus() == $ms)
|
|
|
145 |
<option value="$ms" selected>$ms</option>
|
|
|
146 |
#else
|
|
|
147 |
<option value="$ms">$ms</option>
|
|
|
148 |
#end
|
|
|
149 |
#end
|
|
|
150 |
</select>
|
|
|
151 |
</td>
|
|
|
152 |
#else
|
|
|
153 |
<td>
|
|
|
154 |
<i class="far fa-arrow-alt-circle-down" style="background:pink"></i>
|
|
|
155 |
<select class="" id = "maritalStatus" name="maritalStatus" placeholder="" disabled>
|
|
|
156 |
<option value="" disabled selected>-Marital Status-</option>
|
|
|
157 |
|
|
|
158 |
#foreach($ms in $maritalStatus))
|
|
|
159 |
<option value="$ms">$ms</option>
|
|
|
160 |
|
|
|
161 |
#end
|
|
|
162 |
</select>
|
|
|
163 |
</td>
|
|
|
164 |
#end
|
|
|
165 |
|
|
|
166 |
#if($fofoKyc.getEmail())
|
|
|
167 |
<td><i class="far fa-arrow-alt-circle-up" style="background:green"></i><input type="text" placeholder="Email" disabled
|
|
|
168 |
name="email"
|
|
|
169 |
value="$fofoKyc.getEmail()"></td>
|
|
|
170 |
#else
|
|
|
171 |
<td><i class="far fa-arrow-alt-circle-down" style="background:pink;"></i><input type="text" placeholder="Email" disabled
|
|
|
172 |
name="email">
|
|
|
173 |
</td>
|
|
|
174 |
#end
|
|
|
175 |
|
|
|
176 |
|
|
|
177 |
|
|
|
178 |
#if($fofoKyc.getMobile())
|
|
|
179 |
<td><i class="far fa-arrow-alt-circle-up" style="background:green"></i><input type="text" placeholder="Mobile" disabled
|
|
|
180 |
name="mobile"
|
|
|
181 |
value="$fofoKyc.getMobile()"></td>
|
|
|
182 |
#else
|
|
|
183 |
<td><i class="far fa-arrow-alt-circle-down" style="background:pink;"></i><input type="text" placeholder="Mobile" disabled
|
|
|
184 |
name="mobile">
|
|
|
185 |
</td>
|
|
|
186 |
#end
|
|
|
187 |
|
|
|
188 |
|
|
|
189 |
|
|
|
190 |
#if($fofoKyc.getPan())
|
|
|
191 |
<td><i class="far fa-arrow-alt-circle-up" style="background:green"></i><input type="text" placeholder="Pan" disabled
|
|
|
192 |
name="pan"
|
|
|
193 |
value="$fofoKyc.getPan()"></td>
|
|
|
194 |
#else
|
|
|
195 |
<td><i class="far fa-arrow-alt-circle-down" style="background:pink;"></i><input type="text" placeholder="Pan" disabled
|
|
|
196 |
name="pan">
|
|
|
197 |
</td>
|
|
|
198 |
#end
|
|
|
199 |
|
|
|
200 |
|
|
|
201 |
#if($fofoKyc.getPanDoc() && $fofoKyc.getPanDoc() != 0)
|
|
|
202 |
<td class="pandoc docfile">
|
|
|
203 |
<i class="far fa-arrow-alt-circle-up" style="background:green"></i>
|
|
|
204 |
<input type="hidden" class="panhidden" value="$fofoKyc.getPanDoc()">
|
|
|
205 |
<input type="file" class="pandoc" placeholder="pan doc" disabled name="pan1"
|
|
|
206 |
value="$fofoKyc.getPanDoc()">
|
|
|
207 |
##<button type="button" class="btn btn-primary download-pan-file" data-docpid="$fofoKyc.getPanDoc()" data-id="$fofoKyc.getId()">Download Document</button>
|
|
|
208 |
<a href="${rc.contextPath}/download-attachment?documentId=$fofoKyc.getPanDoc()" class="download">Download Doc</a>
|
|
|
209 |
<a href="#" style="padding: 49px;" class="Del">Delete Doc</a>
|
|
|
210 |
</td>
|
|
|
211 |
#else
|
|
|
212 |
<td class="pandoc docfile">
|
|
|
213 |
<i class="far fa-arrow-alt-circle-down" style="background:pink;"></i>
|
|
|
214 |
<input type="hidden">
|
|
|
215 |
<input type="file" class="pandoc" placeholder="pan doc" disabled name="pan1">
|
|
|
216 |
</td>
|
|
|
217 |
#end
|
|
|
218 |
|
|
|
219 |
#if($fofoKyc.getPoaNo())
|
|
|
220 |
<td><i class="far fa-arrow-alt-circle-up" style="background:green"></i><input type="text" placeholder="Pao No" disabled
|
|
|
221 |
name="paoNo"
|
|
|
222 |
value="$fofoKyc.getPoaNo()"></td>
|
|
|
223 |
#else
|
|
|
224 |
<td><i class="far fa-arrow-alt-circle-down" style="background:pink;"></i><input type="text" placeholder="Pao No" disabled
|
|
|
225 |
name="paoNo">
|
|
|
226 |
</td>
|
|
|
227 |
#end
|
|
|
228 |
|
|
|
229 |
|
|
|
230 |
|
|
|
231 |
|
|
|
232 |
#if($fofoKyc.getPoaType() && $fofoKyc.getPoaType() != "")
|
|
|
233 |
<td>
|
|
|
234 |
<i class="far fa-arrow-alt-circle-up" style="background:lime"></i>
|
|
|
235 |
|
|
|
236 |
<select class="" id = "paoType" name="paoType" placeholder="" disabled>
|
|
|
237 |
<option value="" disabled selected>-Pao Type-</option>
|
|
|
238 |
#foreach($apt in $addressProofTypes))
|
|
|
239 |
|
|
|
240 |
#if($fofoKyc.getPoaType() == $apt)
|
|
|
241 |
<option value="$apt" selected>$apt</option>
|
|
|
242 |
#else
|
|
|
243 |
<option value="$apt">$apt</option>
|
|
|
244 |
#end
|
|
|
245 |
#end
|
|
|
246 |
</select>
|
|
|
247 |
</td>
|
|
|
248 |
#else
|
|
|
249 |
<td>
|
|
|
250 |
<i class="far fa-arrow-alt-circle-down" style="background:pink"></i>
|
|
|
251 |
<select class="" id = "paoType" name="paoType" placeholder="" disabled>
|
|
|
252 |
<option value="" disabled selected>-Pao Type-</option>
|
|
|
253 |
|
|
|
254 |
#foreach($apt in $addressProofTypes))
|
|
|
255 |
<option value="$apt">$apt</option>
|
|
|
256 |
|
|
|
257 |
#end
|
|
|
258 |
</select>
|
|
|
259 |
</td>
|
|
|
260 |
#end
|
|
|
261 |
|
|
|
262 |
#if($fofoKyc.getPoaFront() && $fofoKyc.getPoaFront() != 0)
|
|
|
263 |
<td class="paof docfile">
|
|
|
264 |
<i class="far fa-arrow-alt-circle-up" style="background:green"></i>
|
|
|
265 |
<input type="hidden" class="paoFronthidden" value="$fofoKyc.getPoaFront()">
|
|
|
266 |
<input type="file" class="paoFront" placeholder="pao front doc" disabled name="paofront"
|
|
|
267 |
value="$fofoKyc.getPoaFront()">
|
|
|
268 |
##<button type="button" class="btn btn-primary download-pao-file" data-docpid="$fofoKyc.getPoaFront()" data-id="$fofoKyc.getId()">Download Document</button>
|
|
|
269 |
<a href="${rc.contextPath}/download-attachment?documentId=$fofoKyc.getPoaFront()" class="download">Download Doc</a>
|
|
|
270 |
<a href="#" style="padding: 49px;" class="Del">Delete Doc</a>
|
|
|
271 |
</td>
|
|
|
272 |
#else
|
|
|
273 |
<td class="paof docfile">
|
|
|
274 |
<i class="far fa-arrow-alt-circle-down" style="background:pink;"></i>
|
|
|
275 |
<input type="hidden">
|
|
|
276 |
<input type="file" class="paoFront" placeholder="pao front" disabled name="pao1">
|
|
|
277 |
</td>
|
|
|
278 |
#end
|
|
|
279 |
|
|
|
280 |
|
|
|
281 |
#if($fofoKyc.getPoaBack() && $fofoKyc.getPoaBack() != 0)
|
|
|
282 |
<td class="paob docfile">
|
|
|
283 |
<i class="far fa-arrow-alt-circle-up" style="background:green"></i>
|
|
|
284 |
<input type="hidden" class="paoBackhidden" value="$fofoKyc.getPoaBack()">
|
|
|
285 |
<input type="file" class="paoBack" placeholder="pao back doc" disabled name="paoback"
|
|
|
286 |
value="$fofoKyc.getPoaBack()">
|
|
|
287 |
##<button type="button" class="btn btn-primary download-pao-file" data-docpid="$fofoKyc.getPoaBack()" data-id="$fofoKyc.getId()">Download Document</button>
|
|
|
288 |
<a href="${rc.contextPath}/download-attachment?documentId=$fofoKyc.getPoaBack()" class="download">Download Doc</a>
|
|
|
289 |
<a href="#" style="padding: 49px;" class="Del">Delete Doc</a>
|
|
|
290 |
</td>
|
|
|
291 |
#else
|
|
|
292 |
<td class="paob docfile">
|
|
|
293 |
<i class="far fa-arrow-alt-circle-down" style="background:pink;"></i>
|
|
|
294 |
<input type="hidden">
|
|
|
295 |
<input type="file" class="paoBack" placeholder="pao back" disabled name="paob">
|
|
|
296 |
</td>
|
|
|
297 |
#end
|
|
|
298 |
|
|
|
299 |
|
|
|
300 |
#if($fofoKyc.getAddress1())
|
|
|
301 |
<td><i class="far fa-arrow-alt-circle-up" style="background:green"></i><input type="text" placeholder="Address1" disabled
|
|
|
302 |
name="address1"
|
|
|
303 |
value="$fofoKyc.getAddress1()"></td>
|
|
|
304 |
#else
|
|
|
305 |
<td><i class="far fa-arrow-alt-circle-down" style="background:pink;"></i><input type="text" placeholder="Address1" disabled
|
|
|
306 |
name="address1">
|
|
|
307 |
</td>
|
|
|
308 |
#end
|
|
|
309 |
|
|
|
310 |
#if($fofoKyc.getAddress2())
|
|
|
311 |
<td><i class="far fa-arrow-alt-circle-up" style="background:green"></i><input type="text" placeholder="Address2" disabled
|
|
|
312 |
name="address2"
|
|
|
313 |
value="$fofoKyc.getAddress2()"></td>
|
|
|
314 |
#else
|
|
|
315 |
<td><i class="far fa-arrow-alt-circle-down" style="background:pink;"></i><input type="text" placeholder="Address2" disabled
|
|
|
316 |
name="address2">
|
|
|
317 |
</td>
|
|
|
318 |
#end
|
|
|
319 |
|
|
|
320 |
#if($fofoKyc.getAddress3())
|
|
|
321 |
<td><i class="far fa-arrow-alt-circle-up" style="background:green"></i><input type="text" placeholder="Address3" disabled
|
|
|
322 |
name="address3"
|
|
|
323 |
value="$fofoKyc.getAddress3()"></td>
|
|
|
324 |
#else
|
|
|
325 |
<td><i class="far fa-arrow-alt-circle-down" style="background:pink;"></i><input type="text" placeholder="Address3" disabled
|
|
|
326 |
name="address3">
|
|
|
327 |
</td>
|
|
|
328 |
#end
|
|
|
329 |
|
|
|
330 |
|
|
|
331 |
#if($fofoKyc.getCity())
|
|
|
332 |
<td><i class="far fa-arrow-alt-circle-up" style="background:green"></i><input type="text" placeholder="City" disabled
|
|
|
333 |
name="city"
|
|
|
334 |
value="$fofoKyc.getCity()"></td>
|
|
|
335 |
#else
|
|
|
336 |
<td><i class="far fa-arrow-alt-circle-down" style="background:pink;"></i><input type="text" placeholder="City" disabled
|
|
|
337 |
name="city">
|
|
|
338 |
</td>
|
|
|
339 |
#end
|
|
|
340 |
|
|
|
341 |
|
|
|
342 |
#if($fofoKyc.getState())
|
|
|
343 |
<td><i class="far fa-arrow-alt-circle-up" style="background:green"></i><input type="text" placeholder="State" disabled
|
|
|
344 |
name="state"
|
|
|
345 |
value="$fofoKyc.getState()"></td>
|
|
|
346 |
#else
|
|
|
347 |
<td><i class="far fa-arrow-alt-circle-down" style="background:pink;"></i><input type="text" placeholder="State" disabled
|
|
|
348 |
name="state">
|
|
|
349 |
</td>
|
|
|
350 |
#end
|
|
|
351 |
|
|
|
352 |
|
|
|
353 |
#if($fofoKyc.getPincode())
|
|
|
354 |
<td><i class="far fa-arrow-alt-circle-up" style="background:green"></i><input type="text" placeholder="Pincode" disabled
|
|
|
355 |
name="pincode"
|
|
|
356 |
value="$fofoKyc.getPincode()"></td>
|
|
|
357 |
#else
|
|
|
358 |
<td><i class="far fa-arrow-alt-circle-down" style="background:pink;"></i><input type="text" placeholder="Pincode" disabled
|
|
|
359 |
name="pincode">
|
|
|
360 |
</td>
|
|
|
361 |
#end
|
|
|
362 |
|
|
|
363 |
<td><button class="btn btn-primary addlegalKycdetail" type="button">Submit</button> </td>
|
|
|
364 |
|
|
|
365 |
|
|
|
366 |
|
|
|
367 |
|
|
|
368 |
|
|
|
369 |
|
|
|
370 |
|
|
|
371 |
|
|
|
372 |
|
|
|
373 |
|
|
|
374 |
|
|
|
375 |
|