| 27843 |
tejbeer |
1 |
|
|
|
2 |
#if($pob.getId())
|
| 28933 |
manish |
3 |
<td> <i class="far fa-arrow-alt-circle-up" style="background:green"></i>$pob.getId()</td>
|
| 27843 |
tejbeer |
4 |
#else
|
| 28932 |
manish |
5 |
<td><i class="far fa-arrow-alt-circle-down"></i>$pob.getId()</td>
|
| 27843 |
tejbeer |
6 |
#end
|
|
|
7 |
|
|
|
8 |
#if($pob.getOutLetName() && $pob.getOutLetName() != "")
|
| 28933 |
manish |
9 |
<td> <i class="far fa-arrow-alt-circle-up" style="background:green"></i><input type="text" placeholder="OutLet Name" value="$pob.getOutLetName()" name="outlateName"
|
| 27843 |
tejbeer |
10 |
disabled></td>
|
|
|
11 |
#else
|
| 28932 |
manish |
12 |
<td><i class="far fa-arrow-alt-circle-down" style="background:pink;"></i><input type="text" placeholder="OutLet Name" name="outlateName" disabled></td>
|
| 27843 |
tejbeer |
13 |
#end
|
|
|
14 |
|
|
|
15 |
#if($pob.getCreatedTimestamp())
|
| 28933 |
manish |
16 |
<td><i class="far fa-arrow-alt-circle-up" style="background:green"></i>$pob.getCreatedTimestamp().format($datehiphenFormatter)</td>
|
| 27843 |
tejbeer |
17 |
#else
|
| 28932 |
manish |
18 |
<td><i class="far fa-arrow-alt-circle-down" style="background:pink;"></i>
|
| 27843 |
tejbeer |
19 |
</td>
|
|
|
20 |
#end
|
|
|
21 |
|
|
|
22 |
|
|
|
23 |
#if($pob.getAcquiredDate())
|
| 28933 |
manish |
24 |
<td><i class="far fa-arrow-alt-circle-up" style="background:green"></i><input type="date" class="acquired" placeholder="Acquired Date(SM)" disabled
|
| 27843 |
tejbeer |
25 |
name="acquireddate"
|
|
|
26 |
value="$pob.getAcquiredDate().format($datehiphenFormatter)"></td>
|
|
|
27 |
#else
|
| 28932 |
manish |
28 |
<td><i class="far fa-arrow-alt-circle-down" style="background:pink;"></i><input type="date" class="acquired" placeholder="Acquired Date(SM)" disabled
|
| 27843 |
tejbeer |
29 |
name="acquireddate">
|
|
|
30 |
</td>
|
|
|
31 |
#end
|
|
|
32 |
|
|
|
33 |
#if($pob.getOutLetName() && $pob.getOutLetName() != "")
|
| 31730 |
tejbeer |
34 |
<td><i class="far fa-arrow-alt-circle-up" style="background:green"></i><input type="text" placeholder="OutLet Name" value="$pob.getOutLetName()" name="updateOutlateName"
|
| 27843 |
tejbeer |
35 |
disabled></td>
|
|
|
36 |
#else
|
| 31730 |
tejbeer |
37 |
<td><i class="far fa-arrow-alt-circle-down" style="background:pink;"></i><input type="text" placeholder="OutLet Name" name="updateOutlateName" disabled></td>
|
| 27843 |
tejbeer |
38 |
#end
|
|
|
39 |
|
|
|
40 |
#if($pob.getPhoneNumber() && $pob.getPhoneNumber() != 0)
|
| 28933 |
manish |
41 |
<td><i class="far fa-arrow-alt-circle-up" style="background:green"></i>
|
| 27843 |
tejbeer |
42 |
<input type="number" placeholder="9999999999" value="$pob.getPhoneNumber()"
|
|
|
43 |
name="phonenumber1"
|
|
|
44 |
disabled ></td>
|
|
|
45 |
#else
|
| 28932 |
manish |
46 |
<td><i class="far fa-arrow-alt-circle-down" style="background:pink;"></i><input type="number" placeholder="9999999999" name="phonenumber1" disabled></td>
|
| 27843 |
tejbeer |
47 |
#end
|
| 31730 |
tejbeer |
48 |
#if($pob.getCounterPotential() && $pob.getCounterPotential() != 0)
|
|
|
49 |
<td><i class="far fa-arrow-alt-circle-up" style="background:green"></i>
|
|
|
50 |
<input type="number" placeholder="Counter Potentail" value="$pob.getCounterPotential()"
|
|
|
51 |
name="counterPotential"
|
|
|
52 |
disabled ></td>
|
|
|
53 |
#else
|
|
|
54 |
<td><i class="far fa-arrow-alt-circle-down" style="background:pink;"></i><input type="number" placeholder="counter Potential" name="counterPotential" disabled></td>
|
|
|
55 |
#end
|
| 28610 |
amit.gupta |
56 |
|
| 28879 |
manish |
57 |
#if($pob.getAuthId() && $pob.getAuthId() != 0)
|
| 32843 |
shampa |
58 |
<td>
|
|
|
59 |
<i class="far fa-arrow-alt-circle-up" style="background:green"></i>
|
|
|
60 |
<input type="hidden" name="hiddenrbmAuthId" value ="$pob.getAuthId()"/>
|
|
|
61 |
<!-- <input type="text" placeholder="RBM Name(SM)" disabled value="$authUseMap.get($pob.getAuthId()).getFullName()"> -->
|
|
|
62 |
<select class="form-control input-sm" name="rbmAuthId" placeholder="AuthUser">
|
|
|
63 |
<option value="" disabled>AuthUser</option>
|
|
|
64 |
#foreach($authUser in $authUsers)
|
|
|
65 |
<option value="$authUser.getId()" #if($pob.getAuthId() == $authUser.getId()) selected#end>$authUser.getName()</option>
|
|
|
66 |
#end
|
|
|
67 |
</select>
|
|
|
68 |
</td>
|
| 28879 |
manish |
69 |
#else
|
| 32843 |
shampa |
70 |
<td>
|
|
|
71 |
<i class="far fa-arrow-alt-circle-down" style="background:pink;"></i>
|
|
|
72 |
<!-- <input type="text" placeholder="RBM Name(SM)" disabled name="rbmAuthId"> -->
|
|
|
73 |
<select class="form-control input-sm" name="rbmAuthId" placeholder="AuthUser">
|
|
|
74 |
<option value="" disabled>AuthUser</option>
|
|
|
75 |
#foreach($authUser in $authUsers)
|
|
|
76 |
<option value="$authUser.getId()" #if($pob.getAuthId() == $authUser.getId()) selected#end>$authUser.getName()</option>
|
|
|
77 |
#end
|
|
|
78 |
</select>
|
|
|
79 |
</td>
|
| 28879 |
manish |
80 |
#end
|
| 29300 |
manish |
81 |
|
| 28879 |
manish |
82 |
|
|
|
83 |
#if($pob.getCity() && $pob.getCity() != "")
|
| 28933 |
manish |
84 |
<td><i class="far fa-arrow-alt-circle-up" style="background:green"></i><input type="text" placeholder="City (SM)" disabled name="city1" value="$pob.getCity()"></td>
|
| 27843 |
tejbeer |
85 |
#else
|
| 28932 |
manish |
86 |
<td><i class="far fa-arrow-alt-circle-down" style="background:pink;"></i><input type="text" placeholder="City (SM)" disabled name="city1"></td>
|
| 27843 |
tejbeer |
87 |
#end
|
| 29300 |
manish |
88 |
|
|
|
89 |
<td>
|
|
|
90 |
<select class="form-control input-sm" id = "authUserStateHead" name="authUserStateHead" placeholder="AuthUser" disabled>
|
|
|
91 |
|
|
|
92 |
#if($pob.getStateHead() && $pob.getStateHead() != 0)
|
|
|
93 |
|
|
|
94 |
<option value=" $pob.getStateHead()" selected>$stateAuthUserMap.get($pob.getStateHead()).getName()</option>
|
|
|
95 |
#foreach($stateAuthUser in $stateAuthUsers)
|
|
|
96 |
<option value="$stateAuthUser.getId()">$stateAuthUser.getName()</option>
|
|
|
97 |
#end
|
|
|
98 |
|
|
|
99 |
#else
|
|
|
100 |
<option value="" selected>StateHead</option>
|
|
|
101 |
#foreach($stateAuthUser in $stateAuthUsers)
|
|
|
102 |
<option value="$stateAuthUser.getId()">$stateAuthUser.getName()</option>
|
|
|
103 |
#end
|
|
|
104 |
|
|
|
105 |
#end
|
|
|
106 |
</select>
|
|
|
107 |
</td>
|
|
|
108 |
|
|
|
109 |
|
|
|
110 |
<td>
|
|
|
111 |
<select class="form-control input-sm" id = "authUserbdm" name="authUserbdm" placeholder="AuthUser" disabled>
|
|
|
112 |
|
|
|
113 |
#if($pob.getBDM() && $pob.getBDM() != 0)
|
|
|
114 |
<option value="$pob.getBDM()" disabled selected>$bdmAuthUseMap.get($pob.getBDM()).getName()</option>
|
|
|
115 |
#foreach($bdmAuthUser in $bdmAuthUsers)
|
|
|
116 |
<option value="$bdmAuthUser.getId()">$bdmAuthUser.getName()</option>
|
|
|
117 |
#end
|
|
|
118 |
|
|
|
119 |
#else
|
|
|
120 |
<option value="" disabled selected>BDM</option>
|
|
|
121 |
#foreach($bdmAuthUser in $bdmAuthUsers)
|
|
|
122 |
<option value="$bdmAuthUser.getId()">$bdmAuthUser.getName()</option>
|
|
|
123 |
#end
|
|
|
124 |
|
|
|
125 |
#end
|
|
|
126 |
</select>
|
|
|
127 |
</td>
|
| 27843 |
tejbeer |
128 |
|
| 29300 |
manish |
129 |
|
|
|
130 |
|
|
|
131 |
|
| 28599 |
amit.gupta |
132 |
#if($pob.getAgreedBrandFees() != 0)
|
| 28700 |
amit.gupta |
133 |
|
|
|
134 |
#if($pob.getReceivedBrandFees() >= $pob.getAgreedBrandFees())
|
| 28599 |
amit.gupta |
135 |
|
| 28933 |
manish |
136 |
<td><i class="far fa-arrow-alt-circle-up" style="background:green"></i><input type="text" placeholder="Agreed Brand fees(SM)" disabled name="abrand1"
|
| 27843 |
tejbeer |
137 |
value="$pob.getAgreedBrandFees()" ></td>
|
| 28599 |
amit.gupta |
138 |
#else
|
| 28932 |
manish |
139 |
<td><i class="far fa-arrow-alt-circle-down" style="background:red;"></i><input type="text" placeholder="Agreed Brand fees(SM)" disabled name="abrand1"
|
| 28599 |
amit.gupta |
140 |
value="$pob.getAgreedBrandFees()" ></td>
|
|
|
141 |
#end
|
| 27843 |
tejbeer |
142 |
#else
|
| 28932 |
manish |
143 |
<td><i class="far fa-arrow-alt-circle-down" style="background:pink;"></i><input type="text" placeholder="Agreed Brand fees(SM)" disabled name="abrand1"></td>
|
| 27843 |
tejbeer |
144 |
#end
|
|
|
145 |
|
| 28599 |
amit.gupta |
146 |
|
| 27843 |
tejbeer |
147 |
#if($pob.getReceivedBrandFees()!= 0)
|
|
|
148 |
|
| 28933 |
manish |
149 |
#if($pob.getReceivedBrandFees() >= $pob.getAgreedBrandFees())
|
|
|
150 |
<td> <i class="far fa-arrow-alt-circle-up" style="background:green"></i> <input type="text" placeholder="Received Brand fees" disabled name="recbrand1"
|
| 27843 |
tejbeer |
151 |
value="$pob.getReceivedBrandFees()"></td>
|
| 28933 |
manish |
152 |
#else
|
|
|
153 |
<td style="background:red;"><i class="far fa-arrow-alt-circle-up" style="background:red"></i><input type="text" placeholder="Received Brand fees" disabled name="recbrand1"
|
|
|
154 |
value="$pob.getReceivedBrandFees()"></td>
|
|
|
155 |
#end
|
|
|
156 |
|
|
|
157 |
#else
|
|
|
158 |
<td> <i class="far fa-arrow-alt-circle-up" style="background:pink;"></i><input type="text" placeholder="Received Brand fees" disabled name="recbrand1"></td>
|
| 27843 |
tejbeer |
159 |
#end
|
| 28932 |
manish |
160 |
|
|
|
161 |
|
| 27884 |
tejbeer |
162 |
|
|
|
163 |
#if($pob.getFinalBrandFeesDate())
|
|
|
164 |
|
| 28933 |
manish |
165 |
<td><i class="far fa-arrow-alt-circle-up" style="background:green"></i><input type="date" placeholder="Brand fees Date(SM)" disabled name="BrandFeesdate1" id="brandfeesdate"
|
| 27884 |
tejbeer |
166 |
value="$pob.getFinalBrandFeesDate().format($datehiphenFormatter)"
|
|
|
167 |
></td>
|
|
|
168 |
#else
|
| 28932 |
manish |
169 |
<td><i class="far fa-arrow-alt-circle-down" style="background:pink;"></i><input type="date" placeholder="Brand Fees Date(SM)" disabled name="BrandFeesdate1"></td>
|
| 27884 |
tejbeer |
170 |
#end
|
| 27843 |
tejbeer |
171 |
|
|
|
172 |
#if($pob.getAgreedWallet()!= 0)
|
| 28933 |
manish |
173 |
<td><i class="far fa-arrow-alt-circle-up" style="background:green"></i><input type="text" placeholder="Agreed Wallet(SM)" disabled name="awallet"
|
| 27843 |
tejbeer |
174 |
value="$pob.getAgreedWallet()" ></td>
|
|
|
175 |
#else
|
| 28932 |
manish |
176 |
<td><i class="far fa-arrow-alt-circle-down" style="background:pink;"></i><input type="text" placeholder="Agreed Wallet(SM)" disabled name="awallet"></td>
|
| 27843 |
tejbeer |
177 |
#end
|
|
|
178 |
|
|
|
179 |
#if($pob.getInvestmentDate())
|
|
|
180 |
|
| 28933 |
manish |
181 |
<td><i class="far fa-arrow-alt-circle-up" style="background:green"></i><input type="date" placeholder="Investment Date(SM)" disabled name="idate1" id="idate"
|
| 27843 |
tejbeer |
182 |
value="$pob.getInvestmentDate().format($datehiphenFormatter)"
|
|
|
183 |
></td>
|
|
|
184 |
#else
|
| 28932 |
manish |
185 |
<td><i class="far fa-arrow-alt-circle-down" style="background:pink;"></i><input type="date" placeholder="Investment Date(SM)" disabled name="idate1"></td>
|
| 27843 |
tejbeer |
186 |
#end
|
|
|
187 |
#if($pob.getKyc() && $pob.getKyc() != 0)
|
| 28932 |
manish |
188 |
<td class="kyc docfile">
|
| 28933 |
manish |
189 |
<i class="far fa-arrow-alt-circle-up" style="background:green"></i>
|
| 27843 |
tejbeer |
190 |
<input type="hidden" class="kychidden" value="$pob.getKyc()">
|
|
|
191 |
<input type="file" class="kyc" placeholder="KYC (SM)" disabled name="kyc1"
|
|
|
192 |
value="$pob.getKyc()">
|
|
|
193 |
##<button type="button" class="btn btn-primary download-kyc-file" data-docpid="$pob.getKyc()" data-id="$pob.getId()">Download Document</button>
|
| 27857 |
tejbeer |
194 |
<a href="${rc.contextPath}/download-attachment?documentId=$pob.getKyc()" class="download">Download Doc</a>
|
|
|
195 |
<a href="#" style="padding: 49px;" class="Del">Delete Doc</a>
|
|
|
196 |
|
| 27843 |
tejbeer |
197 |
</td>
|
|
|
198 |
#else
|
| 28932 |
manish |
199 |
<td class="kyc docfile"><i class="far fa-arrow-alt-circle-down" style="background:pink;"></i>
|
| 27843 |
tejbeer |
200 |
<input type="hidden">
|
|
|
201 |
<input type="file" id="kyc" placeholder="KYC (SM)" disabled name="kyc1">
|
|
|
202 |
</td>
|
|
|
203 |
#end
|
|
|
204 |
|
|
|
205 |
#if($pob.getAadharDoc() && $pob.getAadharDoc() != 0)
|
| 28932 |
manish |
206 |
<td class="aadhar docfile">
|
| 28933 |
manish |
207 |
<i class="far fa-arrow-alt-circle-up" style="background:green"></i>
|
| 27843 |
tejbeer |
208 |
<input type="hidden" class="aadharhidden" value="$pob.getAadharDoc()">
|
|
|
209 |
<input type="file" class="aadhar" placeholder="aadhar" disabled name="aadhar1"
|
|
|
210 |
value="$pob.getAadharDoc()">
|
| 31363 |
tejbeer |
211 |
|
| 31368 |
tejbeer |
212 |
<a href="${rc.contextPath}/download-attachment?documentId=$pob.getAadharDoc()" class="download">Download Doc</a>
|
|
|
213 |
|
| 27857 |
tejbeer |
214 |
<a href="#" style="padding: 49px;" class="Del">Delete Doc</a>
|
| 27843 |
tejbeer |
215 |
|
|
|
216 |
</td>
|
|
|
217 |
#else
|
| 28932 |
manish |
218 |
<td class="aadhar docfile">
|
|
|
219 |
<i class="far fa-arrow-alt-circle-down" style="background:pink;"></i>
|
| 27843 |
tejbeer |
220 |
<input type="hidden">
|
|
|
221 |
<input type="file" class="aadhar" placeholder="aadhar" disabled name="aadhar1">
|
|
|
222 |
</td>
|
|
|
223 |
#end
|
|
|
224 |
#if($pob.getPanDoc() && $pob.getPanDoc() != 0)
|
| 28932 |
manish |
225 |
<td class="pan docfile">
|
| 28933 |
manish |
226 |
<i class="far fa-arrow-alt-circle-up" style="background:green"></i>
|
| 27843 |
tejbeer |
227 |
<input type="hidden" class="panhidden" value="$pob.getPanDoc()">
|
|
|
228 |
<input type="file" class="pandoc" placeholder="pan(SM)" disabled name="pan1"
|
|
|
229 |
value="$pob.getPanDoc()">
|
|
|
230 |
##<button type="button" class="btn btn-primary download-pan-file" data-docpid="$pob.getPanDoc()" data-id="$pob.getId()">Download Document</button>
|
| 27857 |
tejbeer |
231 |
<a href="${rc.contextPath}/download-attachment?documentId=$pob.getPanDoc()" class="download">Download Doc</a>
|
|
|
232 |
<a href="#" style="padding: 49px;" class="Del">Delete Doc</a>
|
| 27843 |
tejbeer |
233 |
</td>
|
|
|
234 |
#else
|
| 28932 |
manish |
235 |
<td class="pan docfile">
|
|
|
236 |
<i class="far fa-arrow-alt-circle-down" style="background:pink;"></i>
|
| 27843 |
tejbeer |
237 |
<input type="hidden">
|
|
|
238 |
<input type="file" class="pandoc" placeholder="pan(SM)" disabled name="pan1">
|
|
|
239 |
</td>
|
|
|
240 |
#end
|
|
|
241 |
#if($pob.getGstdoc() && $pob.getGstdoc() != 0)
|
| 28932 |
manish |
242 |
<td class="gst docfile">
|
| 28933 |
manish |
243 |
<i class="far fa-arrow-alt-circle-up" style="background:green"></i>
|
| 27843 |
tejbeer |
244 |
<input type="hidden" class="gsthidden" value="$pob.getGstdoc()">
|
|
|
245 |
<input type="file" class="gstdoc" placeholder="GST(SM)" disabled name="gst1"
|
|
|
246 |
value="$pob.getGstdoc()">
|
|
|
247 |
##<button type="button" class="btn btn-primary download-gst-file" data-docpid="$pob.getGstdoc()" data-id="$pob.getId()">Download Document</button>
|
| 27857 |
tejbeer |
248 |
<a href="${rc.contextPath}/download-attachment?documentId=$pob.getGstdoc()" class="download">Download Doc</a>
|
|
|
249 |
<a href="#" style="padding: 49px;" class="Del">Delete Doc</a>
|
| 27843 |
tejbeer |
250 |
</td>
|
|
|
251 |
#else
|
| 28932 |
manish |
252 |
<td class="gst docfile">
|
|
|
253 |
<i class="far fa-arrow-alt-circle-down" style="background:pink;"></i>
|
| 27843 |
tejbeer |
254 |
<input type="hidden">
|
|
|
255 |
<input type="file" class="gstdoc" placeholder="GST(SM)" disabled name="gst1">
|
|
|
256 |
</td>
|
|
|
257 |
#end
|
|
|
258 |
#if($pob.getCancelCheque() && $pob.getCancelCheque() != 0)
|
|
|
259 |
|
| 28932 |
manish |
260 |
<td class="cancheque docfile">
|
| 28933 |
manish |
261 |
<i class="far fa-arrow-alt-circle-up" style="background:green"></i>
|
| 27843 |
tejbeer |
262 |
<input type="hidden" class="canchequehidden" value="$pob.getCancelCheque()">
|
|
|
263 |
<input type="file" class="canchequedoc" placeholder="Cancel cheque(SM)" disabled name="cancheque1"
|
|
|
264 |
value="$pob.getCancelCheque()">
|
|
|
265 |
##<button type="button" class="btn btn-primary download-cancheque-file" data-docpid="$pob.getCancelCheque()" data-id="$pob.getId()">Download Document</button>
|
| 27857 |
tejbeer |
266 |
<a href="${rc.contextPath}/download-attachment?documentId=$pob.getCancelCheque()" class="download">Download
|
| 27843 |
tejbeer |
267 |
Doc</a>
|
| 27857 |
tejbeer |
268 |
<a href="#" style="padding: 49px;" class="Del">Delete Doc</a>
|
| 27843 |
tejbeer |
269 |
|
|
|
270 |
</td>
|
|
|
271 |
|
|
|
272 |
#else
|
| 28932 |
manish |
273 |
<td class="cancheque docfile">
|
|
|
274 |
<i class="far fa-arrow-alt-circle-down" style="background:pink;"></i>
|
| 27843 |
tejbeer |
275 |
<input type="hidden">
|
|
|
276 |
<input type="file" class="canchequedoc" placeholder="Cancel cheque(SM)" disabled
|
|
|
277 |
name="cancheque1">
|
|
|
278 |
</td>
|
|
|
279 |
#end
|
|
|
280 |
#if($pob.getRentAgreement() && $pob.getRentAgreement() != 0)
|
| 28932 |
manish |
281 |
<td class="rent docfile">
|
| 28933 |
manish |
282 |
<i class="far fa-arrow-alt-circle-up" style="background:green"></i>
|
| 27843 |
tejbeer |
283 |
<input type="hidden" class="renthidden" value="$pob.getRentAgreement()">
|
|
|
284 |
<input type="file" class="rentdoc" placeholder="Rent agreement/Owner ship proof(SM)" disabled name="ragreement1"
|
|
|
285 |
value="$pob.getRentAgreement()">
|
| 27857 |
tejbeer |
286 |
<a href="${rc.contextPath}/download-attachment?documentId=$pob.getRentAgreement()" class="download">Download Doc</a>
|
|
|
287 |
<a href="#" style="padding: 49px;" class="Del">Delete Doc</a>
|
| 27843 |
tejbeer |
288 |
</td>
|
|
|
289 |
#else
|
|
|
290 |
|
| 28932 |
manish |
291 |
<td class="rent docfile">
|
|
|
292 |
<i class="far fa-arrow-alt-circle-down" style="background:pink;"></i>
|
| 27843 |
tejbeer |
293 |
<input type="hidden">
|
|
|
294 |
<input type="file" placeholder="Rent agreement/Owner ship proof(SM)" disabled name="ragreement1">
|
|
|
295 |
</td>
|
|
|
296 |
#end
|
|
|
297 |
|
|
|
298 |
#if($pob.getLOI() && $pob.getLOI() != 0)
|
| 28932 |
manish |
299 |
<td class="loi docfile" >
|
| 28933 |
manish |
300 |
<i class="far fa-arrow-alt-circle-up" style="background:green"></i>
|
| 27843 |
tejbeer |
301 |
<input type="hidden" class="loihidden" value="$pob.getLOI()">
|
|
|
302 |
<input type="file" class="loidoc" placeholder="LOI(SM)" disabled value="$pob.getLOI()">
|
| 27857 |
tejbeer |
303 |
<a href="${rc.contextPath}/download-attachment?documentId=$pob.getLOI()" class="download">Download Doc</a>
|
|
|
304 |
<a href="#" style="padding: 49px;" class="Del">Delete Doc</a>
|
|
|
305 |
|
| 27843 |
tejbeer |
306 |
</td>
|
|
|
307 |
#else
|
|
|
308 |
|
| 28932 |
manish |
309 |
<td class="loi docfile">
|
|
|
310 |
<i class="far fa-arrow-alt-circle-down" style="background:pink;"></i>
|
| 27843 |
tejbeer |
311 |
<input type="hidden">
|
|
|
312 |
<input type="file" placeholder="LOI(SM)" disabled name="loi1">
|
|
|
313 |
</td>
|
|
|
314 |
#end
|
| 28977 |
manish |
315 |
#if($pob.getDocumentsCompleted() && $pob.getDocumentsCompleted() != "")
|
|
|
316 |
<td>
|
|
|
317 |
#if($pob.getDocumentsCompleted()== "YES")
|
|
|
318 |
<i class="far fa-arrow-alt-circle-up" style="background:lime"></i>
|
|
|
319 |
#else
|
|
|
320 |
<i class="far fa-arrow-alt-circle-up" style="background:red"></i>
|
|
|
321 |
#end
|
|
|
322 |
<select class="" id = "allDocumentComp" name="allDocumentComp" placeholder="" disabled>
|
|
|
323 |
<option value="" disabled selected>-Doc Compl-</option>
|
|
|
324 |
#if($pob.getDocumentsCompleted() == "YES")
|
|
|
325 |
<option value="YES" selected>YES</option>
|
|
|
326 |
#else
|
|
|
327 |
<option value="YES" >YES</option>
|
|
|
328 |
#end
|
|
|
329 |
|
|
|
330 |
#if($pob.getDocumentsCompleted() == "NO")
|
|
|
331 |
<option value="NO" selected>NO</option>
|
|
|
332 |
#else
|
|
|
333 |
<option value="NO">NO</option>
|
|
|
334 |
#end
|
|
|
335 |
</select>
|
|
|
336 |
</td>
|
|
|
337 |
#else
|
|
|
338 |
<td>
|
|
|
339 |
<i class="far fa-arrow-alt-circle-down" style="background:red"></i>
|
|
|
340 |
<select class="" id = "allDocumentComp" name="allDocumentComp" disabled>
|
|
|
341 |
<option value="" selected>-Documents-</option>
|
|
|
342 |
<option value="YES">YES</option>
|
|
|
343 |
<option value="NO">NO</option>
|
|
|
344 |
</select>
|
|
|
345 |
</td>
|
|
|
346 |
#end
|
| 27843 |
tejbeer |
347 |
|
|
|
348 |
|
|
|
349 |
#if($pob.getCode() && $pob.getCode() != "")
|
| 28933 |
manish |
350 |
<td><i class="far fa-arrow-alt-circle-up" style="background:green"></i><input type="text" placeholder="Code(SM)" disabled name="code1" value="$pob.getCode()"
|
| 27843 |
tejbeer |
351 |
></td>
|
|
|
352 |
#else
|
| 28932 |
manish |
353 |
<td><i class="far fa-arrow-alt-circle-down" style="background:pink;"></i><input type="text" placeholder="Code(SM)" disabled name="code1"></td>
|
| 27843 |
tejbeer |
354 |
#end
|
| 28901 |
manish |
355 |
|
|
|
356 |
|
| 27843 |
tejbeer |
357 |
#if($pob.getReceePlaned())
|
| 28933 |
manish |
358 |
<td><i class="far fa-arrow-alt-circle-up" style="background:green"></i><input type="date" id="rplaned" placeholder="Recee Planed(Kamini)" disabled name="rplaned1"
|
| 27843 |
tejbeer |
359 |
value="$pob.getReceePlaned().format($datehiphenFormatter)" >
|
|
|
360 |
</td>
|
|
|
361 |
#else
|
| 28932 |
manish |
362 |
<td><i class="far fa-arrow-alt-circle-down" style="background:pink;"></i><input type="date" id="rplaned" placeholder="Recee Planed(Kamini)" disabled name="rplaned1">
|
| 27843 |
tejbeer |
363 |
</td>
|
|
|
364 |
#end
|
|
|
365 |
#if($pob.getReceeActual())
|
| 28933 |
manish |
366 |
<td><i class="far fa-arrow-alt-circle-up" style="background:green"></i><input type="date" id="ractual" placeholder="Recee Actual(Kamini)" disabled name="ractual1"
|
| 27843 |
tejbeer |
367 |
value="$pob.getReceeActual().format($datehiphenFormatter)" >
|
|
|
368 |
</td>
|
|
|
369 |
#else
|
| 28932 |
manish |
370 |
<td><i class="far fa-arrow-alt-circle-down" style="background:pink;"></i><input type="date" id="ractual" placeholder="Recee Actual(Kamini)" disabled name="ractual1">
|
| 27843 |
tejbeer |
371 |
</td>
|
|
|
372 |
#end
|
|
|
373 |
|
| 29202 |
manish |
374 |
|
| 32890 |
amit.gupta |
375 |
#if($pob.getDeploymentPlanedDate())
|
| 29202 |
manish |
376 |
<td><i class="far fa-arrow-alt-circle-up" style="background:lime"></i><input type="date" id="deploymentPlanedDate" placeholder="Deployment Planed Date" disabled name="deploymentPlanedDate"
|
|
|
377 |
value="$pob.getDeploymentPlanedDate().format($datehiphenFormatter)" >
|
|
|
378 |
</td>
|
| 27843 |
tejbeer |
379 |
#else
|
| 32891 |
amit.gupta |
380 |
<td ><i class="far fa-arrow-alt-circle-down" style="background:pink"></i><input type="date" id="deploymentPlanedDate" placeholder="Deployment Planed Date" disabled name="deploymentPlanedDate">
|
| 27843 |
tejbeer |
381 |
</td>
|
|
|
382 |
#end
|
| 29202 |
manish |
383 |
|
|
|
384 |
|
| 28901 |
manish |
385 |
#if($pob.getDeploymentDate())
|
| 31730 |
tejbeer |
386 |
<td><i class="far fa-arrow-alt-circle-up" style="background:green"></i><input type="date" id="dactual" name = "dactual" placeholder="Designing Actual(Kamini)" disabled
|
| 27843 |
tejbeer |
387 |
name="dactual1"
|
| 28901 |
manish |
388 |
value="$pob.getDeploymentDate().format($datehiphenFormatter)"></td>
|
| 27843 |
tejbeer |
389 |
#else
|
| 31730 |
tejbeer |
390 |
<td><i class="far fa-arrow-alt-circle-down" style="background:pink;"></i><input type="date" id="dactual" name = "dactual" placeholder="Designing Actual(Kamini)" disabled
|
| 27843 |
tejbeer |
391 |
name="dactual1">
|
|
|
392 |
</td>
|
|
|
393 |
#end
|
|
|
394 |
#if($pob.getStockPayment()!= 0)
|
| 28933 |
manish |
395 |
<td><i class="far fa-arrow-alt-circle-up" style="background:green"></i><input type="text" placeholder="Stock payment(kamini)" disabled name="spayment1"
|
| 27843 |
tejbeer |
396 |
value="$pob.getStockPayment()"></td>
|
|
|
397 |
#else
|
| 32891 |
amit.gupta |
398 |
<td><i class="far fa-arrow-alt-circle-down" style="background:pink;"></i><input type="text" placeholder="Stock payment(kamini)" disabled name="spayment1"></td>
|
| 27843 |
tejbeer |
399 |
#end
|
|
|
400 |
|
|
|
401 |
|
|
|
402 |
|
|
|
403 |
#if($pob.getExpectedDate())
|
| 31730 |
tejbeer |
404 |
<td><i class="far fa-arrow-alt-circle-up" style="background:green"></i><input type="date" class="expdate" name="exdate" placeholder="Expected Date(Kamini)" disabled value="$pob.getExpectedDate().format($datehiphenFormatter)" >
|
| 27843 |
tejbeer |
405 |
</td>
|
|
|
406 |
#else
|
| 31730 |
tejbeer |
407 |
<td><i class="far fa-arrow-alt-circle-down" style="background:pink;"></i><input type="date" class="expdate" name="exdate" placeholder="Expected Date(Kamini)" disabled>
|
| 27843 |
tejbeer |
408 |
</td>
|
|
|
409 |
#end
|
|
|
410 |
|
|
|
411 |
#if($pob.getPayDate())
|
| 28933 |
manish |
412 |
<td><i class="far fa-arrow-alt-circle-up" style="background:green"></i>
|
| 31730 |
tejbeer |
413 |
<input type="date" class="paydate" name = "paydate" placeholder="pay Date(Kamini)" disabled value="$pob.getPayDate().format($datehiphenFormatter)" >
|
| 27843 |
tejbeer |
414 |
</td>
|
|
|
415 |
#else
|
| 31730 |
tejbeer |
416 |
<td><i class="far fa-arrow-alt-circle-down" style="background:pink;"></i><input type="date" class="paydate" name = "paydate" placeholder="Pay Date(Kamini)" disabled >
|
| 27843 |
tejbeer |
417 |
</td>
|
|
|
418 |
#end
|
|
|
419 |
|
| 28847 |
manish |
420 |
#if($pob.getInaugrationDate())
|
|
|
421 |
#if($pob.getDeploymentDate())
|
| 31730 |
tejbeer |
422 |
<td><i class="far fa-arrow-alt-circle-up" style="background:green"></i><input type="date" class="inaugrationDate" name="inaugrationDate" placeholder="Inaugration Date (SM)" disabled value="$pob.getInaugrationDate().format($datehiphenFormatter)" >
|
| 28847 |
manish |
423 |
</td>
|
|
|
424 |
#else
|
| 31730 |
tejbeer |
425 |
<td><i class="far fa-arrow-alt-circle-down" style="background:red;"></i><input type="date" class="inaugrationDate" name="inaugrationDate" placeholder="Inaugration Date (SM)" disabled value="$pob.getInaugrationDate().format($datehiphenFormatter)" >
|
| 28847 |
manish |
426 |
</td>
|
|
|
427 |
#end
|
|
|
428 |
#else
|
| 31730 |
tejbeer |
429 |
<td><i class="far fa-arrow-alt-circle-down" style="background:pink;"></i><input type="date" class="inaugrationDate" name="inaugrationDate" placeholder="Inaugration Date (SM)" disabled>
|
| 28847 |
manish |
430 |
</td>
|
|
|
431 |
#end
|
|
|
432 |
|
|
|
433 |
|
| 27843 |
tejbeer |
434 |
<td #if($pob.getBillingStatus()==0) style="background-color:pink"#else style="background-color:lime" #end>
|
| 31730 |
tejbeer |
435 |
<input type="checkbox" disabled id="billingStatus" name="billingStatus" #if($pob.getBillingStatus()>0) checked #end >
|
| 27843 |
tejbeer |
436 |
#if($pob.getBillingStatus()>0)
|
| 29088 |
tejbeer |
437 |
|
| 28901 |
manish |
438 |
#end
|
|
|
439 |
</td>
|
|
|
440 |
|
|
|
441 |
|
|
|
442 |
#if($partnerVerificationStatusMap.get($pob.getId()))
|
| 28933 |
manish |
443 |
|
|
|
444 |
#if($partnerVerificationStatusMap.get($pob.getId())== "YES")
|
| 28936 |
tejbeer |
445 |
<td><i class="far fa-arrow-alt-circle-up" style="background:green;"></i><input type="text" name= "verificationStatusOnboarding"class="verificationStatus" placeholder="" disabled value="APPROVED" >
|
| 28901 |
manish |
446 |
</td>
|
| 28933 |
manish |
447 |
|
|
|
448 |
#elseif($partnerVerificationStatusMap.get($pob.getId())== "NO")
|
| 28936 |
tejbeer |
449 |
<td><i class="far fa-arrow-alt-circle-up" style="background:red;"></i><input type="text" name= "verificationStatusOnboarding"class="verificationStatus" placeholder="" disabled value="REJECTED" >
|
| 28933 |
manish |
450 |
</td>
|
|
|
451 |
|
|
|
452 |
#else
|
|
|
453 |
<td><i class="far fa-arrow-alt-circle-up" style="background:pink;"></i><input type="text" name= "verificationStatusOnboarding"class="verificationStatus" placeholder="" disabled value="$partnerVerificationStatusMap.get($pob.getId())" >
|
|
|
454 |
</td>
|
|
|
455 |
|
|
|
456 |
#end
|
| 28901 |
manish |
457 |
#else
|
| 28932 |
manish |
458 |
<td><i class="far fa-arrow-alt-circle-down" style="background:red;"></i><input type="text" name= "verificationStatusOnboarding" class="verificationStatus" placeholder="" disabled value="PENDING" >
|
| 28901 |
manish |
459 |
</td>
|
|
|
460 |
|
|
|
461 |
#end
|
|
|
462 |
|
|
|
463 |
<td>
|
|
|
464 |
<button type="submit" form="form1" value="Submit" style="background:#008CBA; color:black;" name="submitOnboarding"
|
| 27843 |
tejbeer |
465 |
class="submit1">
|
|
|
466 |
Submit
|
|
|
467 |
</button>
|
|
|
468 |
</td>
|
|
|
469 |
|
|
|
470 |
<td>
|
|
|
471 |
<button type="submit" form="form2" value="Submit1" data-id="$pob.getId()"
|
|
|
472 |
style="background:#eed202;"
|
|
|
473 |
class="delete">Open
|
|
|
474 |
</button>
|
|
|
475 |
</td>
|
|
|
476 |
|
|
|
477 |
<td>
|
|
|
478 |
<button type="submit" form="form2" value="SubmitReject" data-id="$pob.getId()"
|
|
|
479 |
style="background:#f18681;"
|
| 28901 |
manish |
480 |
class="rejectpartneronboarding" name="rejectPartner">Reject
|
| 27843 |
tejbeer |
481 |
</button>
|
|
|
482 |
</td>
|
| 28901 |
manish |
483 |
#if($pob.getHoldTimestamp())
|
|
|
484 |
|
| 28847 |
manish |
485 |
<td>
|
| 28901 |
manish |
486 |
<button type="submit" data-id="$pob.getId()"
|
|
|
487 |
style="background:#f18681;"
|
|
|
488 |
class="unHoldPartnerOnboarding" value="unhold">Unhold
|
|
|
489 |
</button>
|
|
|
490 |
</td>
|
|
|
491 |
#else
|
| 28940 |
manish |
492 |
<td>
|
| 28847 |
manish |
493 |
<button type="submit" data-id="$pob.getId()"
|
|
|
494 |
style="background:#f18681;"
|
| 28901 |
manish |
495 |
class="holdPartnerOnboarding" value="hold">Hold
|
| 28847 |
manish |
496 |
</button>
|
| 28901 |
manish |
497 |
</td>
|
| 28940 |
manish |
498 |
#end
|
| 28901 |
manish |
499 |
|
| 28940 |
manish |
500 |
<td>
|
|
|
501 |
<button type="submit" form="form2" value="submitNotice" data-id="$pob.getId()"
|
|
|
502 |
style="background:#f18681;"
|
| 28941 |
manish |
503 |
class="noticPartneronboarding" name="noticePartner">Notice
|
| 28940 |
manish |
504 |
</button>
|
|
|
505 |
</td>
|
|
|
506 |
|
| 28901 |
manish |
507 |
<td>
|
|
|
508 |
<button type="submit" form="form" data-id="$pob.getId()" style="background:#4CAF50; color:black;"
|
|
|
509 |
class="partner-verification-resend">
|
|
|
510 |
Resend
|
|
|
511 |
</button>
|
|
|
512 |
</td>
|
| 27843 |
tejbeer |
513 |
|
|
|
514 |
|
|
|
515 |
|
|
|
516 |
|