Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
28599 amit.gupta 1
 
2
                    #if($pob.getId())
3
                        <td style="background:#87cefa;">$pob.getId()</td>
4
                    #else
5
                        <td>$pob.getId()</td>
6
                    #end
7
 
28847 manish 8
                    #if($pob.getOutLetName() && $pob.getOutLetName() != "")
28947 manish 9
                        <td><i class="far fa-arrow-alt-circle-up" style="background:lime"></i>
28937 manish 10
                        <input type="text" placeholder="OutLet Name" value="$pob.getOutLetName()" name="outlateName"
28599 amit.gupta 11
                                   disabled></td>
12
                    #else
28947 manish 13
                        <td><i class="far fa-arrow-alt-circle-down" style="background:pink"></i><input type="text" placeholder="OutLet Name" name="outlateName" disabled></td>
28599 amit.gupta 14
                    #end
15
 
16
                    #if($pob.getCreatedTimestamp())
28947 manish 17
                        <td><i class="far fa-arrow-alt-circle-up" style="background:lime"></i>$pob.getCreatedTimestamp().format($datehiphenFormatter)</td>
28847 manish 18
                     #else
28947 manish 19
                        <td><i class="far fa-arrow-alt-circle-down" style="background:pink"></i>
28599 amit.gupta 20
                        </td>
21
                     #end 
22
 
23
 
24
                    #if($pob.getAcquiredDate())
28947 manish 25
                        <td><i class="far fa-arrow-alt-circle-up" style="background:lime"></i><input type="date" class="acquired" placeholder="Acquired Date(SM)" disabled
28599 amit.gupta 26
                                   name="acquireddate"
27
                                   value="$pob.getAcquiredDate().format($datehiphenFormatter)"></td>
28
                    #else
28947 manish 29
                        <td><i class="far fa-arrow-alt-circle-down" style="background:pink"></i><input type="date" class="acquired" placeholder="Acquired Date(SM)" disabled
28599 amit.gupta 30
                                   name="acquireddate">
31
                        </td>
32
                    #end 
33
 
34
 
35
                    #if($pob.getPhoneNumber() && $pob.getPhoneNumber() != 0)
28947 manish 36
                        <td><i class="far fa-arrow-alt-circle-up" style="background:lime"></i>
28599 amit.gupta 37
                        <input type="number" placeholder="9999999999" value="$pob.getPhoneNumber()"
38
                                   name="phonenumber1"
39
                                   disabled ></td>
40
                    #else
28947 manish 41
                        <td><i class="far fa-arrow-alt-circle-down" style="background:pink"></i><input type="number" placeholder="9999999999" name="phonenumber1" disabled></td>
28599 amit.gupta 42
                    #end
43
 
28603 amit.gupta 44
 
28599 amit.gupta 45
                    #if($pob.getCity() && $pob.getCity() != "")
28947 manish 46
                        <td><i class="far fa-arrow-alt-circle-up" style="background:lime"></i><input type="text" placeholder="City (SM)" disabled name="city1" value="$pob.getCity()"></td>
28599 amit.gupta 47
                    #else
28947 manish 48
                        <td><i class="far fa-arrow-alt-circle-down" style="background:pink"></i><input type="text" placeholder="City (SM)" disabled name="city1"></td>
28599 amit.gupta 49
                    #end
29300 manish 50
 
51
 
52
                    #if($pob.getStateHead() && $pob.getStateHead() != 0)
28947 manish 53
                        <td><i class="far fa-arrow-alt-circle-up" style="background:lime"></i><input type="text" placeholder="State Head(SM)" disabled name="shead1"
29300 manish 54
                                   value="$stateAuthUserMap.get($pob.getStateHead()).getName()"></td>
28599 amit.gupta 55
                    #else
28947 manish 56
                        <td><i class="far fa-arrow-alt-circle-down" style="background:pink"></i><input type="text" placeholder="State Head(SM)" disabled name="shead1"></td>
28599 amit.gupta 57
                    #end
29300 manish 58
                    #if($pob.getBDM() && $pob.getBDM() != 0)
59
                        <td><i class="far fa-arrow-alt-circle-up" style="background:lime"></i><input type="text" placeholder="BDM (SM)" disabled name="bdm1" value="$bdmAuthUseMap.get($pob.getBDM()).getName()"></td>
28599 amit.gupta 60
                    #else
28947 manish 61
                        <td><i class="far fa-arrow-alt-circle-down" style="background:pink"></i><input type="text" placeholder="BDM (SM)" disabled name="bdm1"></td>
29300 manish 62
                    #end   
63
 
28599 amit.gupta 64
 
65
                    #if($pob.getAgreedBrandFees() != 0)
66
 
28700 amit.gupta 67
                     #if($pob.getReceivedBrandFees()>= $pob.getAgreedBrandFees())
68
 
28947 manish 69
                        <td><i class="far fa-arrow-alt-circle-up" style="background:lime"></i><input type="text" placeholder="Agreed Brand fees(SM)" disabled name="abrand1"
28599 amit.gupta 70
                                   value="$pob.getAgreedBrandFees()" ></td>
71
                       #else            
28947 manish 72
                             <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 73
                                   value="$pob.getAgreedBrandFees()" ></td>    
74
                      #end  
75
                    #else
28947 manish 76
                        <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>
28599 amit.gupta 77
                    #end
78
 
79
 
80
 
81
 
82
 
83
                    #if($pob.getInvestmentDate())
84
 
28947 manish 85
                        <td><i class="far fa-arrow-alt-circle-up" style="background:lime"></i><input type="date" placeholder="Investment Date(SM)" disabled name="idate1" id="idate"
28599 amit.gupta 86
                                   value="$pob.getInvestmentDate().format($datehiphenFormatter)"
87
                                   ></td>
88
                    #else
28947 manish 89
                        <td><i class="far fa-arrow-alt-circle-up" style="background:pink"></i><input type="date" placeholder="Investment Date(SM)" disabled name="idate1"></td>
28599 amit.gupta 90
                    #end
91
 
92
 
93
                     #if($pob.getLOI() && $pob.getLOI() != 0)
28937 manish 94
                        <td class="loiDesign docfile">
28947 manish 95
                        <i class="far fa-arrow-alt-circle-up" style="background:lime"></i>
28599 amit.gupta 96
                            <input type="hidden" class="loiHidden" value="$pob.getLOI()">
97
                            <input type="file" class="loidoc" name="loi1" placeholder="LOI(SM)" disabled  value="$pob.getLOI()">
98
                            <a href="${rc.contextPath}/download-attachment?documentId=$pob.getLOI()" class="download">Download Doc</a>
99
                       <a href="#" style="padding: 49px;" class="Del">Delete Doc</a>
100
 
101
                        </td>
102
                      #else
103
 
28937 manish 104
                        <td class="loiDesign docfile">
28947 manish 105
                        <i class="far fa-arrow-alt-circle-up" style="background:pink"></i>
28599 amit.gupta 106
                         <input type="hidden" class="loiHidden">
107
                        <input type="file" placeholder="LOI(SM)" disabled name="loi1">
108
                        </td>
109
                      #end
110
 
28610 amit.gupta 111
                    #if($pob.getKyc() && $pob.getKyc() != 0)
28937 manish 112
                        <td class="kycDesign docfile">
28947 manish 113
                        <i class="far fa-arrow-alt-circle-up" style="background:lime"></i>
28610 amit.gupta 114
                            <input type="hidden" class="kychidden" value="$pob.getKyc()">
115
                            <input type="file" class="kyc" placeholder="KYC (SM)" disabled name="kyc1"
116
                                   value="$pob.getKyc()">
117
                            ##<button type="button" class="btn btn-primary download-kyc-file" data-docpid="$pob.getKyc()" data-id="$pob.getId()">Download Document</button>
118
                            <a href="${rc.contextPath}/download-attachment?documentId=$pob.getKyc()" class="download">Download Doc</a>
119
                             <a href="#" style="padding: 49px;" class="Del">Delete Doc</a>
120
 
121
                        </td>
122
                    #else
28937 manish 123
                        <td class="kycDesign docfile">
28947 manish 124
                        <i class="far fa-arrow-alt-circle-up" style="background:pink"></i>
28610 amit.gupta 125
                            <input type="hidden">
126
                            <input type="file" id="kyc" placeholder="KYC (SM)" disabled name="kyc1">
127
                        </td>
128
                    #end
28599 amit.gupta 129
 
130
                    #if($pob.getCode() && $pob.getCode() != "")
28947 manish 131
                        <td ><i class="far fa-arrow-alt-circle-up" style="background:lime"></i><input type="text" placeholder="Code(SM)" disabled name="code1" value="$pob.getCode()"
28599 amit.gupta 132
                                   ></td>
133
                    #else
28947 manish 134
                        <td><i class="far fa-arrow-alt-circle-down" style="background:pink"></i><input type="text" placeholder="Code(SM)" disabled name="code1"></td>
28599 amit.gupta 135
                    #end
136
 
137
                    #if($pob.getReceeActual())
28947 manish 138
                        <td><i class="far fa-arrow-alt-circle-up" style="background:lime"></i><input type="date" id="rplaned" placeholder="Recee Planed(Kamini)" disabled name="rplaned1"
28599 amit.gupta 139
                                   value="$pob.getReceePlaned().format($datehiphenFormatter)" >
140
                        </td>
141
                    #else
28947 manish 142
                        <td><i class="far fa-arrow-alt-circle-down" style="background:red"></i><input type="date" id="rplaned" placeholder="Recee Planed(Kamini)" disabled name="rplaned1" value="$pob.getReceePlaned().format($datehiphenFormatter)">
28599 amit.gupta 143
                        </td>
144
                    #end
145
                   #if($pob.getReceeActual())
28947 manish 146
                        <td><i class="far fa-arrow-alt-circle-up" style="background:lime"></i><input type="date" id="ractual" placeholder="Recee Actual(Kamini)" disabled name="ractual1"
28599 amit.gupta 147
                                   value="$pob.getReceeActual().format($datehiphenFormatter)" >
148
                        </td>
149
                    #else
28947 manish 150
                        <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">
28599 amit.gupta 151
                        </td>
152
                    #end
28847 manish 153
 
154
                     #if($pob.getStockPayment()!= 0)
28947 manish 155
                        <td><i class="far fa-arrow-alt-circle-up" style="background:lime"></i><input type="text" placeholder="Stock payment(kamini)" disabled 
28847 manish 156
                                   value="$pob.getStockPayment()" name="stockPaymentDesign"></td>
157
                    #else
28947 manish 158
                        <td><i class="far fa-arrow-alt-circle-down" style="background:pink"></i><input type="text" placeholder="Stock payment(kamini)" disabled name="stockPaymentDesign"></td>
28847 manish 159
                    #end
160
 
161
 
162
 
28599 amit.gupta 163
                    #if($pob.getTwoDBoqdate() &&  $pob.getTwodBOQ() != 0)
28947 manish 164
                        <td><i class="far fa-arrow-alt-circle-up" style="background:lime"></i><input type="date" id="TwoDBoqdate" placeholder="Two D Boqdate (Kamini)" disabled name="twoDBoq1"
28599 amit.gupta 165
                                   value="$pob.getTwoDBoqPlanedDate().format($datehiphenFormatter)" >
166
                        </td>
167
                    #else
28947 manish 168
                        <td><i class="far fa-arrow-alt-circle-down" style="background:red"></i><input type="date" id="TwoDBoqdate" placeholder="Two D Boqdate(Kamini)" disabled name="twoDBoq1" value="$pob.getTwoDBoqPlanedDate().format($datehiphenFormatter)">
28599 amit.gupta 169
                        </td>
170
                    #end
171
 
172
                     #if($pob.getTwoDBoqdate())
28947 manish 173
                        <td><i class="far fa-arrow-alt-circle-up" style="background:lime"></i><input type="date" id="actualTwoDBoqdate" placeholder="Two D Boqdate (Kamini)" disabled name="ractual1"
28599 amit.gupta 174
                                   value="$pob.getTwoDBoqdate().format($datehiphenFormatter)" >
175
                        </td>
176
                    #else
28947 manish 177
                        <td><i class="far fa-arrow-alt-circle-down" style="background:pink"></i><input type="date" id="actualTwoDBoqdate" placeholder="Two D Boqdate(Kamini)" disabled name="ractual1">
28599 amit.gupta 178
                        </td>
179
                    #end
180
 
181
 
182
                     #if($pob.getTwodBOQ() &&  $pob.getTwodBOQ() != 0)
28937 manish 183
                        <td class="twoDBoq docfile">
28947 manish 184
                        <i class="far fa-arrow-alt-circle-up" style="background:lime"></i>
28599 amit.gupta 185
                            <input type="hidden" class="twoDBoqHidden" value="$pob.getTwodBOQ()">
186
                            <input type="file" class="twoDBoqDoc" placeholder="2D with BOQ" disabled  value="$pob.getTwodBOQ()">
187
                            <a href="${rc.contextPath}/download-attachment?documentId=$pob.getTwodBOQ()" class="download">Download Doc</a>
188
                       <a href="#" style="padding: 49px;" class="Del">Delete Doc</a>
189
                      #else
28937 manish 190
                       <td class="twoDBoq docfile">
28947 manish 191
                       <i class="far fa-arrow-alt-circle-up" style="background:pink"></i>
28599 amit.gupta 192
                         <input type="hidden">
193
                        <input type="file" placeholder="2D with BOQ" disabled name="3d1">
194
                        </td>
195
                      #end 
196
                        #if($pob.getThreeDBoq() && $pob.getThreeDBoq() !=0 )
28947 manish 197
                        <td> <i class="far fa-arrow-alt-circle-up" style="background:lime"></i><input type="date" id="threeDBoqdate" placeholder="3D Boqdate" disabled name="threeBoqDate1"
28599 amit.gupta 198
                                   value="$pob.getThreeDBoqPlanedDate().format($datehiphenFormatter)" >
199
                        </td>
200
                    #else
28947 manish 201
                        <td> <i class="far fa-arrow-alt-circle-up" style="background:red"></i><input type="date" id="threeDBoqdate" placeholder="Two D Boqdate(Kamini)" disabled name="threeBoqDate1" value="$pob.getThreeDBoqPlanedDate().format($datehiphenFormatter)">
28599 amit.gupta 202
                        </td>
203
                    #end
204
 
205
                    #if($pob.getThreeDBoqdate() )
28947 manish 206
                        <td><i class="far fa-arrow-alt-circle-up" style="background:lime"></i><input type="date" id="threeDBoqdate" placeholder="3D Boqdate" disabled name="threeBOQDate1"
28599 amit.gupta 207
                                   value="$pob.getThreeDBoqdate().format($datehiphenFormatter)" >
208
                        </td>
209
                    #else
28947 manish 210
                        <td><i class="far fa-arrow-alt-circle-down" style="background:pink"></i><input type="date" id="threeDBoqdate" placeholder="Two D Boqdate(Kamini)" disabled name="threeBOQDate1">
28599 amit.gupta 211
                        </td>
212
                    #end
213
 
214
                     #if($pob.getThreeDBoq() && $pob.getThreeDBoq() !=0 )
28937 manish 215
                        <td class="threeDBoq docfile">
28947 manish 216
                        <i class="far fa-arrow-alt-circle-up" style="background:lime"></i>
28599 amit.gupta 217
                            <input type="hidden" class="threeDBoqHidden" value="$pob.getThreeDBoq()">
218
                            <input type="file" class="threeDBoqDoc" placeholder="3D with BOQ" disabled  value="$pob.getThreeDBoq()">
219
                            <a href="${rc.contextPath}/download-attachment?documentId=$pob.getThreeDBoq()" class="download">Download Doc</a>
220
                       <a href="#" style="padding: 49px;" class="Del">Delete Doc</a>
221
                      #else
28937 manish 222
                       <td class="threeDBoq docfile">
28947 manish 223
                       <i class="far fa-arrow-alt-circle-down" style="background:pink"></i>
28599 amit.gupta 224
                         <input type="hidden">
225
                        <input type="file" placeholder="3D with BOQ" disabled name="3d1">
226
                        </td>
227
                      #end 
228
 
229
 
230
 
231
                      #if($pob.getPoVendor() && $pob.getPoVendor() !=0)
28947 manish 232
                        <td><i class="far fa-arrow-alt-circle-up" style="background:lime"></i><input type="date" id="poVenderDate" placeholder="PO Vender Date" disabled name="poVenderDate1"
28599 amit.gupta 233
                                   value="$pob.getPoVenderPlanedDate().format($datehiphenFormatter)" >
234
                        </td>
235
                    #else
28947 manish 236
                        <td><i class="far fa-arrow-alt-circle-up" style="background:red"></i><input type="date" id="poVenderDate" placeholder="po Vender" disabled name="poVenderDate1" value="$pob.getPoVenderPlanedDate().format($datehiphenFormatter)">
28599 amit.gupta 237
                        </td>
238
                    #end
239
 
240
                     #if($pob.getPoVenderDate())
28947 manish 241
                        <td><i class="far fa-arrow-alt-circle-up" style="background:lime"></i><input type="date" id="poVenderDate" placeholder="PO Vender Date" disabled name="poVenderDate2"
28599 amit.gupta 242
                                   value="$pob.getPoVenderDate().format($datehiphenFormatter)" >
243
                        </td>
244
                    #else
28947 manish 245
                        <td><i class="far fa-arrow-alt-circle-up" style="background:red"></i><input type="date" id="poVenderDate" placeholder="po Vender" disabled name="poVenderDate2" >
28599 amit.gupta 246
                        </td>
247
                    #end
248
 
28613 amit.gupta 249
 
28599 amit.gupta 250
 
251
                      #if($pob.getBriefingPartner())
28947 manish 252
                        <td><i class="far fa-arrow-alt-circle-up" style="background:lime"></i><input type="date" id="briefingPartnerPlanedDate" placeholder="Briefing Partner Planed" disabled name="briefingPartnerPlanedDate1"
28599 amit.gupta 253
                                   value="$pob.getBriefingPartnerPlaned().format($datehiphenFormatter)" >
254
                        </td>
255
                    #else
28947 manish 256
                        <td><i class="far fa-arrow-alt-circle-down" style="background:red"></i><input type="date" id="briefingPartnerPlanedDate" placeholder="Briefing Partner Planed" disabled name="briefingPartnerPlanedDate1" value="$pob.getBriefingPartnerPlaned().format($datehiphenFormatter)">
28599 amit.gupta 257
                        </td>
258
                    #end
259
 
260
                    #if($pob.getBriefingPartner())
28947 manish 261
                        <td><i class="far fa-arrow-alt-circle-up" style="background:lime"></i><input type="date" id="briefingPartner" placeholder="Briefing Partner" disabled name="briefPartner1"
28599 amit.gupta 262
                                   value="$pob.getBriefingPartner().format($datehiphenFormatter)" >
263
                        </td>
264
                    #else
28947 manish 265
                        <td><i class="far fa-arrow-alt-circle-down" style="background:pink"></i><input type="date" id="briefingPartner" placeholder="Briefing Partner" disabled name="briefPartner1">
28599 amit.gupta 266
                        </td>
267
                    #end
268
 
269
                      #if($pob.getDeploymentDate())
28947 manish 270
                        <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"
28599 amit.gupta 271
                                   value="$pob.getDeploymentPlanedDate().format($datehiphenFormatter)" >
272
                        </td>
273
                    #else
28947 manish 274
                        <td ><i class="far fa-arrow-alt-circle-down" style="background:red"></i><input type="date" id="deploymentPlanedDate" placeholder="Deployment Planed Date" disabled name="deploymentPlanedDate" value="$pob.getDeploymentPlanedDate().format($datehiphenFormatter)">
28599 amit.gupta 275
                        </td>
276
                    #end
277
 
278
 
279
                    #if($pob.getDeploymentDate())
28947 manish 280
                        <td><i class="far fa-arrow-alt-circle-up" style="background:lime"></i><input type="date" id="deploymentActualDate" placeholder="Deployment Actual Date" disabled name="deploymentPlanedDate1"
28599 amit.gupta 281
                                   value="$pob.getDeploymentDate().format($datehiphenFormatter)" >
282
                        </td>
283
                    #else
28947 manish 284
                        <td ><i class="far fa-arrow-alt-circle-down" style="background:pink"></i><input type="date" id="deploymentActualDate" placeholder="Deployment Actual Date" disabled name="deploymentPlanedDate1">
28599 amit.gupta 285
                        </td>
286
                    #end 
287
 
288
 
289
                     #if($pob.getFinalPicsOutlet() && $pob.getFinalPicsOutlet() != 0)
28947 manish 290
                        <td><i class="far fa-arrow-alt-circle-up" style="background:lime"></i><input type="date" id="finalPicsOutLetsDate" placeholder="Final Pics OutLets" disabled name="FinalPicsOutLets"
28599 amit.gupta 291
                                   value="$pob.getFinalPicsOutletPlanedDate().format($datehiphenFormatter)" >
292
                        </td>
293
                    #else
28947 manish 294
                        <td><i class="far fa-arrow-alt-circle-down" style="background:red"></i><input type="date" id="finalPicsOutLetsDate" placeholder="Final Pics OutLets" disabled name="FinalPicsOutLets" value="$pob.getFinalPicsOutletPlanedDate().format($datehiphenFormatter)">
28599 amit.gupta 295
                        </td>
296
                    #end
297
 
298
                    #if($pob.getFinalPicsOutletDate())
28947 manish 299
                        <td ><i class="far fa-arrow-alt-circle-up" style="background:lime"></i><input type="date" id="finalPicsOutLetsDate" placeholder="Final Pics OutLets" disabled name="FinalPicsOutLets1"
28599 amit.gupta 300
                                   value="$pob.getFinalPicsOutletDate().format($datehiphenFormatter)" >
301
                        </td>
302
                    #else
28947 manish 303
                        <td><i class="far fa-arrow-alt-circle-down" style="background:pink"></i><input type="date" id="finalPicsOutLetsDate" placeholder="Final Pics OutLets" disabled name="FinalPicsOutLets1" >
28599 amit.gupta 304
                        </td>
305
                    #end
306
 
307
                      #if($pob.getFinalPicsOutlet() && $pob.getFinalPicsOutlet() != 0)
28937 manish 308
                        <td class="finalPics docfile">
28947 manish 309
                        <i class="far fa-arrow-alt-circle-up" style="background:lime"></i>
28599 amit.gupta 310
                            <input type="hidden" class="finalPicsHidden" value="$pob.getFinalPicsOutlet()">
311
                            <input type="file" class="finalPicsDoc" placeholder="Final Pics" disabled  value="$pob.getFinalPicsOutlet()">
312
                            <a href="${rc.contextPath}/download-attachment?documentId=$pob.getFinalPicsOutlet()" class="download">Download Doc</a>
313
                       <a href="#" style="padding: 49px;" class="Del">Delete Doc</a>
314
                      #else
28937 manish 315
                       <td class="finalPics docfile">
28947 manish 316
                       <i class="far fa-arrow-alt-circle-down" style="background:pink"></i>
28599 amit.gupta 317
                         <input type="hidden">
318
                        <input type="file" placeholder="finalPics Vendor" disabled name="finalPics1">
319
                        </td>
320
                      #end  
321
 
322
                     #if($pob.getNocDate())
28947 manish 323
                        <td><i class="far fa-arrow-alt-circle-up" style="background:lime"></i><input type="date" id="nocDate" placeholder="NOC" disabled name="noc1"
28599 amit.gupta 324
                                   value="$pob.getNocDate().format($datehiphenFormatter)" >
325
                        </td>
326
                    #else
28947 manish 327
                        <td><i class="far fa-arrow-alt-circle-down" style="background:pink"></i><input type="date" id="noc" placeholder="NOC" disabled name="noc1">
28599 amit.gupta 328
                        </td>
329
                    #end
330
 
331
                     #if($pob.getNoc() && $pob.getNoc() != 0)
28937 manish 332
                        <td class="noc docfile">
28947 manish 333
                        <i class="far fa-arrow-alt-circle-up" style="background:lime"></i>
28599 amit.gupta 334
                            <input type="hidden" class="nocDocHiddend" value="$pob.getNoc()">
335
                            <input type="file" class="nocDoc" placeholder="NOC Docs" disabled  value="$pob.getNoc()">
336
                            <a href="${rc.contextPath}/download-attachment?documentId=$pob.getNoc()" class="download">Download Doc</a>
337
                       <a href="#" style="padding: 49px;" class="Del">Delete Doc</a>
338
                      #else
28937 manish 339
                       <td class="noc docfile">
28947 manish 340
                       <i class="far fa-arrow-alt-circle-down" style="background:pink"></i>
28599 amit.gupta 341
                         <input type="hidden">
342
                        <input type="file" placeholder="Noc File" disabled name="noc1">
343
                        </td>
344
                      #end
345
 
346
                    <td>
347
                        <button type="submit" form="form1" value="Submit" style="background:#008CBA; color:black;"
348
                                class="submit-design">
349
                            Submit
350
                        </button>
351
                    </td>
352
                     <td>
353
                        <button type="submit" form="formComplete" data-id="$pob.getId()"  style="background:lime; color:black;"
354
                                class="design-complete">
355
                          Done
356
                        </button>
357
                    </td>
358
 
359