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