Subversion Repositories SmartDukaan

Rev

Rev 29794 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

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