Subversion Repositories SmartDukaan

Rev

Rev 28908 | Rev 28933 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 28908 Rev 28932
Line 1... Line 1...
1
 
1
 
2
                    #if($pob.getId())
2
                    #if($pob.getId())
3
                        <td style="background:#87cefa;">$pob.getId()</td>
3
                        <td> <i class="far fa-arrow-alt-circle-up" style="color:green"></i>$pob.getId()</td>
4
                    #else
4
                    #else
5
                        <td>$pob.getId()</td>
5
                        <td><i class="far fa-arrow-alt-circle-down"></i>$pob.getId()</td>
6
                    #end
6
                    #end
7
                   
7
                   
8
                      #if($pob.getOutLetName() && $pob.getOutLetName() != "")
8
                      #if($pob.getOutLetName() && $pob.getOutLetName() != "")
9
                        <td style="background:lime;"><input type="text" placeholder="OutLet Name" value="$pob.getOutLetName()" name="outlateName"
9
                        <td> <i class="far fa-arrow-alt-circle-up" style="color:green"></i><input type="text" placeholder="OutLet Name" value="$pob.getOutLetName()" name="outlateName"
10
                                   disabled></td>
10
                                   disabled></td>
11
                    #else
11
                    #else
12
                        <td style="background:pink;"><input type="text" placeholder="OutLet Name" name="outlateName" disabled></td>
12
                        <td><i class="far fa-arrow-alt-circle-down" style="background:pink;"></i><input type="text" placeholder="OutLet Name" name="outlateName"  disabled></td>
13
                    #end
13
                    #end
14
                   
14
                   
15
                    #if($pob.getCreatedTimestamp())
15
                    #if($pob.getCreatedTimestamp())
16
                        <td style="background:lime;">$pob.getCreatedTimestamp().format($datehiphenFormatter)</td>
16
                        <td><i class="far fa-arrow-alt-circle-up" style="color:green"></i>$pob.getCreatedTimestamp().format($datehiphenFormatter)</td>
17
                        #else
17
                        #else
18
                        <td style="background:pink;">
18
                        <td><i class="far fa-arrow-alt-circle-down" style="background:pink;"></i>
19
                        </td>
19
                        </td>
20
                     #end 
20
                     #end 
21
                    
21
                    
22
                    
22
                    
23
                    #if($pob.getAcquiredDate())
23
                    #if($pob.getAcquiredDate())
24
                        <td style="background:lime;"><input type="date" class="acquired" placeholder="Acquired Date(SM)" disabled
24
                        <td><i class="far fa-arrow-alt-circle-up" style="color:green"></i><input type="date" class="acquired" placeholder="Acquired Date(SM)" disabled
25
                                   name="acquireddate"
25
                                   name="acquireddate"
26
                                   value="$pob.getAcquiredDate().format($datehiphenFormatter)"></td>
26
                                   value="$pob.getAcquiredDate().format($datehiphenFormatter)"></td>
27
                    #else
27
                    #else
28
                        <td style="background:pink;"><input type="date" class="acquired" placeholder="Acquired Date(SM)" disabled
28
                        <td><i class="far fa-arrow-alt-circle-down" style="background:pink;"></i><input type="date" class="acquired" placeholder="Acquired Date(SM)" disabled
29
                                   name="acquireddate">
29
                                   name="acquireddate">
30
                        </td>
30
                        </td>
31
                    #end 
31
                    #end 
32
                    
32
                    
33
                    #if($pob.getOutLetName() && $pob.getOutLetName() != "")
33
                    #if($pob.getOutLetName() && $pob.getOutLetName() != "")
34
                        <td style="background:lime;"><input type="text" placeholder="OutLet Name" value="$pob.getOutLetName()" name="outlateName"
34
                        <td><i class="far fa-arrow-alt-circle-up" style="color:green"></i><input type="text" placeholder="OutLet Name" value="$pob.getOutLetName()" name="outlateName"
35
                                   disabled></td>
35
                                   disabled></td>
36
                    #else
36
                    #else
37
                        <td style="background:pink;"><input type="text" placeholder="OutLet Name" name="outlateName" disabled></td>
37
                        <td><i class="far fa-arrow-alt-circle-down" style="background:pink;"></i><input type="text" placeholder="OutLet Name" name="outlateName" disabled></td>
38
                    #end
38
                    #end
39
                   
39
                   
40
                    #if($pob.getPhoneNumber() && $pob.getPhoneNumber() != 0)
40
                    #if($pob.getPhoneNumber() && $pob.getPhoneNumber() != 0)
41
                        <td style="background:lime;">
41
                        <td><i class="far fa-arrow-alt-circle-up" style="color:green"></i>
42
                        <input type="number" placeholder="9999999999" value="$pob.getPhoneNumber()"
42
                        <input type="number" placeholder="9999999999" value="$pob.getPhoneNumber()"
43
                                   name="phonenumber1"
43
                                   name="phonenumber1"
44
                                   disabled ></td>
44
                                   disabled ></td>
45
                    #else
45
                    #else
46
                        <td style="background:pink;"><input type="number" placeholder="9999999999" name="phonenumber1" disabled></td>
46
                        <td><i class="far fa-arrow-alt-circle-down" style="background:pink;"></i><input type="number" placeholder="9999999999" name="phonenumber1" disabled></td>
47
                    #end
47
                    #end
48
                    
48
                    
49
                     
49
                     
50
                    #if($pob.getAuthId() && $pob.getAuthId() != 0)
50
                    #if($pob.getAuthId() && $pob.getAuthId() != 0)
51
                        <td style="background:lime;"> <input type = "hidden" value ="$pob.getAuthId()"/><input type="text" placeholder="RBM Name(SM)" disabled name="rbmAuthId" value="$authUseMap.get($pob.getAuthId()).getFullName()"></td>
51
                        <td><i class="far fa-arrow-alt-circle-up" style="color:green"></i><input type="text" placeholder="RBM Name(SM)" disabled name="rbmAuthId" value="$authUseMap.get($pob.getAuthId()).getFullName()"></td>
52
                    #else
52
                    #else
53
                        <td style="background:pink;"><input type="text" placeholder="RBM Name(SM)" disabled name="rbmAuthId"></td>
53
                        <td><i class="far fa-arrow-alt-circle-down" style="background:pink;"></i><input type="text" placeholder="RBM Name(SM)" disabled name="rbmAuthId"></td>
54
                    #end
54
                    #end
55
                    
55
                    
56
                     #if($pob.getCity() && $pob.getCity() != "")
56
                     #if($pob.getCity() && $pob.getCity() != "")
57
                        <td style="background:lime;"><input type="text" placeholder="City (SM)" disabled name="city1" value="$pob.getCity()"></td>
57
                        <td><i class="far fa-arrow-alt-circle-up" style="color:green"></i><input type="text" placeholder="City (SM)" disabled name="city1" value="$pob.getCity()"></td>
58
                    #else
58
                    #else
59
                        <td style="background:pink;"><input type="text" placeholder="City (SM)" disabled name="city1"></td>
59
                        <td><i class="far fa-arrow-alt-circle-down" style="background:pink;"></i><input type="text" placeholder="City (SM)" disabled name="city1"></td>
60
                    #end
60
                    #end
61
                    
61
                    
62
                    
62
                    
63
                    #if($pob.getStateHead() && $pob.getStateHead() != "")
63
                    #if($pob.getStateHead() && $pob.getStateHead() != "")
64
                        <td style="background:lime;"><input type="text" placeholder="State Head(SM)" disabled name="shead1"
64
                        <td><i class="far fa-arrow-alt-circle-up" style="color:green"></i><input type="text" placeholder="State Head(SM)" disabled name="shead1"
65
                                   value="$pob.getStateHead()"></td>
65
                                   value="$pob.getStateHead()"></td>
66
                    #else
66
                    #else
67
                        <td style="background:pink;"><input type="text" placeholder="State Head(SM)" disabled name="shead1"></td>
67
                        <td><i class="far fa-arrow-alt-circle-down" style="background:pink;"></i><input type="text" placeholder="State Head(SM)" disabled name="shead1"></td>
68
                    #end
68
                    #end
69
                    #if($pob.getBDM() && $pob.getBDM() != "")
69
                    #if($pob.getBDM() && $pob.getBDM() != "")
70
                        <td style="background:lime;"><input type="text" placeholder="BDM (SM)" disabled name="bdm1" value="$pob.getBDM()"></td>
70
                        <td><i class="far fa-arrow-alt-circle-up" style="color:green"></i><input type="text" placeholder="BDM (SM)" disabled name="bdm1" value="$pob.getBDM()"></td>
71
                    #else
71
                    #else
72
                        <td style="background:pink;"><input type="text" placeholder="BDM (SM)" disabled name="bdm1"></td>
72
                        <td><i class="far fa-arrow-alt-circle-down" style="background:pink;"></i><input type="text" placeholder="BDM (SM)" disabled name="bdm1"></td>
73
                    #end
73
                    #end
74
                   
74
                   
75
                     #if($pob.getAgreedBrandFees() != 0)
75
                     #if($pob.getAgreedBrandFees() != 0)
76
                     
76
                     
77
                     #if($pob.getReceivedBrandFees() >= $pob.getAgreedBrandFees())
77
                     #if($pob.getReceivedBrandFees() >= $pob.getAgreedBrandFees())
78
                    
78
                    
79
                        <td style="background:lime;"><input type="text" placeholder="Agreed Brand fees(SM)" disabled name="abrand1"
79
                        <td><i class="far fa-arrow-alt-circle-up" style="color:green"></i><input type="text" placeholder="Agreed Brand fees(SM)" disabled name="abrand1"
80
                                   value="$pob.getAgreedBrandFees()" ></td>
80
                                   value="$pob.getAgreedBrandFees()" ></td>
81
                       #else            
81
                       #else            
82
                             <td style="background:red;"><input type="text" placeholder="Agreed Brand fees(SM)" disabled name="abrand1"
82
                             <td><i class="far fa-arrow-alt-circle-down" style="background:red;"></i><input type="text" placeholder="Agreed Brand fees(SM)" disabled name="abrand1"
83
                                   value="$pob.getAgreedBrandFees()" ></td>    
83
                                   value="$pob.getAgreedBrandFees()" ></td>    
84
                      #end  
84
                      #end  
85
                    #else
85
                    #else
86
                        <td style="background:pink;"><input type="text" placeholder="Agreed Brand fees(SM)" disabled name="abrand1"></td>
86
                        <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>
87
                    #end
87
                    #end
88
                    
88
                    
89
                    
89
                    
90
                    #if($pob.getReceivedBrandFees()!= 0)
90
                    #if($pob.getReceivedBrandFees()!= 0)
91
 
91
 
92
                        <td #if($pob.getReceivedBrandFees()< $pob.getAgreedBrandFees())style="background:red;" #else style="background:lime;" #end><input type="text" placeholder="Received Brand fees" disabled name="recbrand1"
92
                        <td #if($pob.getReceivedBrandFees()< $pob.getAgreedBrandFees())style="background:red;" #else style="background:lime;" #end><input type="text" placeholder="Received Brand fees" disabled name="recbrand1"
93
                                   value="$pob.getReceivedBrandFees()"></td>
93
                                   value="$pob.getReceivedBrandFees()"></td>
94
                    #else
94
                    #else
95
                        <td style="background:pink;"><input type="text" placeholder="Received Brand fees" disabled name="recbrand1"></td>
95
                        <td style="background:pink;"><input type="text" placeholder="Received Brand fees" disabled name="recbrand1"></td>
96
                    #end
96
                    #end
-
 
97
                     
-
 
98
                     
97
                       
99
                       
98
                     #if($pob.getFinalBrandFeesDate())
100
                     #if($pob.getFinalBrandFeesDate())
99
 
101
 
100
                        <td style="background:lime;"><input type="date" placeholder="Brand fees Date(SM)" disabled name="BrandFeesdate1" id="brandfeesdate"
102
                        <td><i class="far fa-arrow-alt-circle-up" style="color:green"></i><input type="date" placeholder="Brand fees Date(SM)" disabled name="BrandFeesdate1" id="brandfeesdate"
101
                                   value="$pob.getFinalBrandFeesDate().format($datehiphenFormatter)"
103
                                   value="$pob.getFinalBrandFeesDate().format($datehiphenFormatter)"
102
                                   ></td>
104
                                   ></td>
103
                    #else
105
                    #else
104
                        <td style="background:pink;"><input type="date" placeholder="Brand Fees Date(SM)" disabled name="BrandFeesdate1"></td>
106
                        <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>
105
                    #end
107
                    #end
106
                  
108
                  
107
                    #if($pob.getAgreedWallet()!= 0)
109
                    #if($pob.getAgreedWallet()!= 0)
108
                        <td style="background:lime;"><input type="text" placeholder="Agreed Wallet(SM)" disabled name="awallet"
110
                        <td><i class="far fa-arrow-alt-circle-up" style="color:green"></i><input type="text" placeholder="Agreed Wallet(SM)" disabled name="awallet"
109
                                   value="$pob.getAgreedWallet()" ></td>
111
                                   value="$pob.getAgreedWallet()" ></td>
110
                    #else
112
                    #else
111
                        <td style="background:pink;"><input type="text" placeholder="Agreed Wallet(SM)" disabled name="awallet"></td>
113
                        <td><i class="far fa-arrow-alt-circle-down" style="background:pink;"></i><input type="text" placeholder="Agreed Wallet(SM)" disabled name="awallet"></td>
112
                    #end
114
                    #end
113
 
115
 
114
                    #if($pob.getInvestmentDate())
116
                    #if($pob.getInvestmentDate())
115
 
117
 
116
                        <td style="background:lime;"><input type="date" placeholder="Investment Date(SM)" disabled name="idate1" id="idate"
118
                        <td><i class="far fa-arrow-alt-circle-up" style="color:green"></i><input type="date" placeholder="Investment Date(SM)" disabled name="idate1" id="idate"
117
                                   value="$pob.getInvestmentDate().format($datehiphenFormatter)"
119
                                   value="$pob.getInvestmentDate().format($datehiphenFormatter)"
118
                                   ></td>
120
                                   ></td>
119
                    #else
121
                    #else
120
                        <td style="background:pink;"><input type="date" placeholder="Investment Date(SM)" disabled name="idate1"></td>
122
                        <td><i class="far fa-arrow-alt-circle-down" style="background:pink;"></i><input type="date" placeholder="Investment Date(SM)" disabled name="idate1"></td>
121
                    #end
123
                    #end
122
                    #if($pob.getKyc() && $pob.getKyc() != 0)
124
                    #if($pob.getKyc() && $pob.getKyc() != 0)
123
                        <td class="kyc docfile" style="background:lime;">
125
                        <td class="kyc docfile">
-
 
126
                        <i class="far fa-arrow-alt-circle-up" style="color:green"></i>
124
                            <input type="hidden" class="kychidden" value="$pob.getKyc()">
127
                            <input type="hidden" class="kychidden" value="$pob.getKyc()">
125
                            <input type="file" class="kyc" placeholder="KYC (SM)" disabled name="kyc1"
128
                            <input type="file" class="kyc" placeholder="KYC (SM)" disabled name="kyc1"
126
                                   value="$pob.getKyc()">
129
                                   value="$pob.getKyc()">
127
                            ##<button type="button" class="btn btn-primary download-kyc-file" data-docpid="$pob.getKyc()" data-id="$pob.getId()">Download Document</button>
130
                            ##<button type="button" class="btn btn-primary download-kyc-file" data-docpid="$pob.getKyc()" data-id="$pob.getId()">Download Document</button>
128
                            <a href="${rc.contextPath}/download-attachment?documentId=$pob.getKyc()" class="download">Download Doc</a>
131
                            <a href="${rc.contextPath}/download-attachment?documentId=$pob.getKyc()" class="download">Download Doc</a>
129
                             <a href="#" style="padding: 49px;" class="Del">Delete Doc</a>
132
                             <a href="#" style="padding: 49px;" class="Del">Delete Doc</a>
130
                             
133
                             
131
                        </td>
134
                        </td>
132
                    #else
135
                    #else
133
                        <td class="kyc docfile" style="background:pink;">
136
                        <td class="kyc docfile"><i class="far fa-arrow-alt-circle-down" style="background:pink;"></i>
134
                            <input type="hidden">
137
                            <input type="hidden">
135
                            <input type="file" id="kyc" placeholder="KYC (SM)" disabled name="kyc1">
138
                            <input type="file" id="kyc" placeholder="KYC (SM)" disabled name="kyc1">
136
                        </td>
139
                        </td>
137
                    #end
140
                    #end
138
 
141
 
139
                    #if($pob.getAadharDoc()  && $pob.getAadharDoc() != 0)
142
                    #if($pob.getAadharDoc()  && $pob.getAadharDoc() != 0)
140
                        <td class="aadhar docfile" style="background:lime;">
143
                        <td class="aadhar docfile">
-
 
144
                         <i class="far fa-arrow-alt-circle-up" style="color:green"></i>
141
                            <input type="hidden" class="aadharhidden" value="$pob.getAadharDoc()">
145
                            <input type="hidden" class="aadharhidden" value="$pob.getAadharDoc()">
142
                            <input type="file" class="aadhar" placeholder="aadhar" disabled name="aadhar1"
146
                            <input type="file" class="aadhar" placeholder="aadhar" disabled name="aadhar1"
143
                                   value="$pob.getAadharDoc()">
147
                                   value="$pob.getAadharDoc()">
144
                             <a href="${rc.contextPath}/download-attachment?documentId=$pob.getAadharDoc()" class="download">Download
148
                             <a href="${rc.contextPath}/download-attachment?documentId=$pob.getAadharDoc()" class="download">Download
145
                                Doc</a>
149
                                Doc</a>
146
                          <a href="#" style="padding: 49px;" class="Del">Delete Doc</a>
150
                          <a href="#" style="padding: 49px;" class="Del">Delete Doc</a>
147
 
151
 
148
                        </td>
152
                        </td>
149
                    #else
153
                    #else
-
 
154
                        <td class="aadhar docfile">
150
                        <td class="aadhar docfile" style="background:pink;">
155
                        <i class="far fa-arrow-alt-circle-down" style="background:pink;"></i>
151
                            <input type="hidden">
156
                            <input type="hidden">
152
                            <input type="file" class="aadhar" placeholder="aadhar" disabled name="aadhar1">
157
                            <input type="file" class="aadhar" placeholder="aadhar" disabled name="aadhar1">
153
                        </td>
158
                        </td>
154
                    #end
159
                    #end
155
                    #if($pob.getPanDoc() && $pob.getPanDoc() != 0)
160
                    #if($pob.getPanDoc() && $pob.getPanDoc() != 0)
156
                        <td class="pan docfile" style="background:lime;">
161
                        <td class="pan docfile">
-
 
162
                         <i class="far fa-arrow-alt-circle-up" style="color:green"></i>
157
                            <input type="hidden" class="panhidden" value="$pob.getPanDoc()">
163
                            <input type="hidden" class="panhidden" value="$pob.getPanDoc()">
158
                            <input type="file" class="pandoc" placeholder="pan(SM)" disabled name="pan1"
164
                            <input type="file" class="pandoc" placeholder="pan(SM)" disabled name="pan1"
159
                                   value="$pob.getPanDoc()">
165
                                   value="$pob.getPanDoc()">
160
                        ##<button type="button" class="btn btn-primary download-pan-file" data-docpid="$pob.getPanDoc()" data-id="$pob.getId()">Download Document</button>
166
                        ##<button type="button" class="btn btn-primary download-pan-file" data-docpid="$pob.getPanDoc()" data-id="$pob.getId()">Download Document</button>
161
                        <a href="${rc.contextPath}/download-attachment?documentId=$pob.getPanDoc()" class="download">Download Doc</a>
167
                        <a href="${rc.contextPath}/download-attachment?documentId=$pob.getPanDoc()" class="download">Download Doc</a>
162
                               <a href="#" style="padding: 49px;" class="Del">Delete Doc</a>
168
                               <a href="#" style="padding: 49px;" class="Del">Delete Doc</a>
163
                        </td>
169
                        </td>
164
                    #else
170
                    #else
-
 
171
                        <td class="pan docfile">
165
                        <td class="pan docfile" style="background:pink;">
172
                         <i class="far fa-arrow-alt-circle-down" style="background:pink;"></i>
166
                            <input type="hidden">
173
                            <input type="hidden">
167
                            <input type="file" class="pandoc" placeholder="pan(SM)" disabled name="pan1">
174
                            <input type="file" class="pandoc" placeholder="pan(SM)" disabled name="pan1">
168
                        </td>
175
                        </td>
169
                    #end
176
                    #end
170
                    #if($pob.getGstdoc()  && $pob.getGstdoc() != 0)
177
                    #if($pob.getGstdoc()  && $pob.getGstdoc() != 0)
171
                        <td class="gst docfile" style="background:lime;">
178
                        <td class="gst docfile">
-
 
179
                         <i class="far fa-arrow-alt-circle-up" style="color:green"></i>
172
                            <input type="hidden" class="gsthidden" value="$pob.getGstdoc()">
180
                            <input type="hidden" class="gsthidden" value="$pob.getGstdoc()">
173
                            <input type="file" class="gstdoc" placeholder="GST(SM)" disabled name="gst1"
181
                            <input type="file" class="gstdoc" placeholder="GST(SM)" disabled name="gst1"
174
                                   value="$pob.getGstdoc()">
182
                                   value="$pob.getGstdoc()">
175
                            ##<button type="button" class="btn btn-primary download-gst-file" data-docpid="$pob.getGstdoc()" data-id="$pob.getId()">Download Document</button>
183
                            ##<button type="button" class="btn btn-primary download-gst-file" data-docpid="$pob.getGstdoc()" data-id="$pob.getId()">Download Document</button>
176
                            <a href="${rc.contextPath}/download-attachment?documentId=$pob.getGstdoc()" class="download">Download Doc</a>
184
                            <a href="${rc.contextPath}/download-attachment?documentId=$pob.getGstdoc()" class="download">Download Doc</a>
177
                            <a href="#" style="padding: 49px;" class="Del">Delete Doc</a>
185
                            <a href="#" style="padding: 49px;" class="Del">Delete Doc</a>
178
                        </td>
186
                        </td>
179
                    #else
187
                    #else
-
 
188
                        <td class="gst docfile">
180
                        <td class="gst docfile" style="background:pink;">
189
                         <i class="far fa-arrow-alt-circle-down" style="background:pink;"></i>
181
                            <input type="hidden">
190
                            <input type="hidden">
182
                            <input type="file" class="gstdoc" placeholder="GST(SM)" disabled name="gst1">
191
                            <input type="file" class="gstdoc" placeholder="GST(SM)" disabled name="gst1">
183
                        </td>
192
                        </td>
184
                    #end
193
                    #end
185
                    #if($pob.getCancelCheque() && $pob.getCancelCheque() != 0)
194
                    #if($pob.getCancelCheque() && $pob.getCancelCheque() != 0)
186
 
195
 
187
                        <td class="cancheque docfile" style="background:lime;">
196
                        <td class="cancheque docfile">
-
 
197
                         <i class="far fa-arrow-alt-circle-up" style="color:green"></i>
188
                            <input type="hidden" class="canchequehidden" value="$pob.getCancelCheque()">
198
                            <input type="hidden" class="canchequehidden" value="$pob.getCancelCheque()">
189
                           <input type="file" class="canchequedoc" placeholder="Cancel cheque(SM)" disabled name="cancheque1"
199
                           <input type="file" class="canchequedoc" placeholder="Cancel cheque(SM)" disabled name="cancheque1"
190
                            value="$pob.getCancelCheque()">
200
                            value="$pob.getCancelCheque()">
191
                            ##<button type="button" class="btn btn-primary download-cancheque-file" data-docpid="$pob.getCancelCheque()" data-id="$pob.getId()">Download Document</button>
201
                            ##<button type="button" class="btn btn-primary download-cancheque-file" data-docpid="$pob.getCancelCheque()" data-id="$pob.getId()">Download Document</button>
192
                            <a href="${rc.contextPath}/download-attachment?documentId=$pob.getCancelCheque()" class="download">Download
202
                            <a href="${rc.contextPath}/download-attachment?documentId=$pob.getCancelCheque()" class="download">Download
Line 194... Line 204...
194
                                <a href="#" style="padding: 49px;" class="Del">Delete Doc</a>
204
                                <a href="#" style="padding: 49px;" class="Del">Delete Doc</a>
195
 
205
 
196
                        </td>
206
                        </td>
197
 
207
 
198
                    #else
208
                    #else
-
 
209
                        <td class="cancheque docfile">
199
                        <td class="cancheque docfile" style="background:pink;">
210
                        <i class="far fa-arrow-alt-circle-down" style="background:pink;"></i>
200
                            <input type="hidden">
211
                            <input type="hidden">
201
                            <input type="file" class="canchequedoc" placeholder="Cancel cheque(SM)" disabled
212
                            <input type="file" class="canchequedoc" placeholder="Cancel cheque(SM)" disabled
202
                                   name="cancheque1">
213
                                   name="cancheque1">
203
                        </td>
214
                        </td>
204
                    #end
215
                    #end
205
                     #if($pob.getRentAgreement() && $pob.getRentAgreement() != 0)
216
                     #if($pob.getRentAgreement() && $pob.getRentAgreement() != 0)
206
                        <td class="rent docfile" style="background:lime;">
217
                        <td class="rent docfile">
-
 
218
                        <i class="far fa-arrow-alt-circle-up" style="color:green"></i>
207
                            <input type="hidden" class="renthidden" value="$pob.getRentAgreement()">
219
                            <input type="hidden" class="renthidden" value="$pob.getRentAgreement()">
208
                            <input type="file" class="rentdoc" placeholder="Rent agreement/Owner ship proof(SM)" disabled name="ragreement1"
220
                            <input type="file" class="rentdoc" placeholder="Rent agreement/Owner ship proof(SM)" disabled name="ragreement1"
209
                                   value="$pob.getRentAgreement()">
221
                                   value="$pob.getRentAgreement()">
210
                            <a href="${rc.contextPath}/download-attachment?documentId=$pob.getRentAgreement()" class="download">Download Doc</a>
222
                            <a href="${rc.contextPath}/download-attachment?documentId=$pob.getRentAgreement()" class="download">Download Doc</a>
211
                     <a href="#" style="padding: 49px;" class="Del">Delete Doc</a>
223
                     <a href="#" style="padding: 49px;" class="Del">Delete Doc</a>
212
                        </td>
224
                        </td>
213
                      #else
225
                      #else
214
                       
226
                       
-
 
227
                        <td class="rent docfile">
215
                        <td class="rent docfile" style="background:pink;">
228
                        <i class="far fa-arrow-alt-circle-down" style="background:pink;"></i>
216
                        <input type="hidden">
229
                        <input type="hidden">
217
                        <input type="file" placeholder="Rent agreement/Owner ship proof(SM)" disabled name="ragreement1">
230
                        <input type="file" placeholder="Rent agreement/Owner ship proof(SM)" disabled name="ragreement1">
218
                        </td>
231
                        </td>
219
                    #end
232
                    #end
220
                    
233
                    
221
                     #if($pob.getLOI() && $pob.getLOI() != 0)
234
                     #if($pob.getLOI() && $pob.getLOI() != 0)
222
                        <td class="loi docfile" style="background:lime;">
235
                        <td class="loi docfile" >
-
 
236
                        <i class="far fa-arrow-alt-circle-up" style="color:green"></i>
223
                            <input type="hidden" class="loihidden" value="$pob.getLOI()">
237
                            <input type="hidden" class="loihidden" value="$pob.getLOI()">
224
                            <input type="file" class="loidoc" placeholder="LOI(SM)" disabled  value="$pob.getLOI()">
238
                            <input type="file" class="loidoc" placeholder="LOI(SM)" disabled  value="$pob.getLOI()">
225
                            <a href="${rc.contextPath}/download-attachment?documentId=$pob.getLOI()" class="download">Download Doc</a>
239
                            <a href="${rc.contextPath}/download-attachment?documentId=$pob.getLOI()" class="download">Download Doc</a>
226
                       <a href="#" style="padding: 49px;" class="Del">Delete Doc</a>
240
                       <a href="#" style="padding: 49px;" class="Del">Delete Doc</a>
227
                       
241
                       
228
                        </td>
242
                        </td>
229
                      #else
243
                      #else
230
                      
244
                      
-
 
245
                        <td class="loi docfile">
231
                        <td class="loi docfile" style="background:pink;">
246
                         <i class="far fa-arrow-alt-circle-down" style="background:pink;"></i>
232
                         <input type="hidden">
247
                         <input type="hidden">
233
                        <input type="file" placeholder="LOI(SM)" disabled name="loi1">
248
                        <input type="file" placeholder="LOI(SM)" disabled name="loi1">
234
                        </td>
249
                        </td>
235
                    #end
250
                    #end
236
                    
251
                    
237
                   
252
                   
238
                   
253
                   
239
                    #if($pob.getCode() && $pob.getCode() != "")
254
                    #if($pob.getCode() && $pob.getCode() != "")
240
                        <td style="background:lime;"><input type="text" placeholder="Code(SM)" disabled name="code1" value="$pob.getCode()"
255
                        <td><i class="far fa-arrow-alt-circle-up" style="color:green"></i><input type="text" placeholder="Code(SM)" disabled name="code1" value="$pob.getCode()"
241
                                   ></td>
256
                                   ></td>
242
                    #else
257
                    #else
243
                        <td style="background:pink;"><input type="text" placeholder="Code(SM)" disabled name="code1"></td>
258
                        <td><i class="far fa-arrow-alt-circle-down" style="background:pink;"></i><input type="text" placeholder="Code(SM)" disabled name="code1"></td>
244
                    #end
259
                    #end
245
                   
260
                   
246
                   
261
                   
247
                    #if($pob.getReceePlaned())
262
                    #if($pob.getReceePlaned())
248
                        <td style="background:lime;"><input type="date" id="rplaned" placeholder="Recee Planed(Kamini)" disabled name="rplaned1"
263
                        <td><i class="far fa-arrow-alt-circle-up" style="color:green"></i><input type="date" id="rplaned" placeholder="Recee Planed(Kamini)" disabled name="rplaned1"
249
                                   value="$pob.getReceePlaned().format($datehiphenFormatter)" >
264
                                   value="$pob.getReceePlaned().format($datehiphenFormatter)" >
250
                        </td>
265
                        </td>
251
                    #else
266
                    #else
252
                        <td style="background:pink;"><input type="date" id="rplaned" placeholder="Recee Planed(Kamini)" disabled name="rplaned1">
267
                        <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">
253
                        </td>
268
                        </td>
254
                    #end
269
                    #end
255
                    #if($pob.getReceeActual())
270
                    #if($pob.getReceeActual())
256
                        <td style="background:lime;"><input type="date" id="ractual" placeholder="Recee Actual(Kamini)" disabled name="ractual1"
271
                        <td><i class="far fa-arrow-alt-circle-up" style="color:green"></i><input type="date" id="ractual" placeholder="Recee Actual(Kamini)" disabled name="ractual1"
257
                                   value="$pob.getReceeActual().format($datehiphenFormatter)" >
272
                                   value="$pob.getReceeActual().format($datehiphenFormatter)" >
258
                        </td>
273
                        </td>
259
                    #else
274
                    #else
260
                        <td style="background:pink;"><input type="date" id="ractual" placeholder="Recee Actual(Kamini)" disabled name="ractual1">
275
                        <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">
261
                        </td>
276
                        </td>
262
                    #end
277
                    #end
263
 
278
 
264
                    #if($pob.getDesigningPlaned())
279
                    #if($pob.getDesigningPlaned())
265
                        <td style="background:lime;"><input type="date" id="dplaned" placeholder="Designing Planed(Kamini)" disabled
280
                        <td><i class="far fa-arrow-alt-circle-up" style="color:green"></i><input type="date" id="dplaned" placeholder="Designing Planed(Kamini)" disabled
266
                                   name="dplaned1"
281
                                   name="dplaned1"
267
                                   value="$pob.getDesigningPlaned().format($datehiphenFormatter)"></td>
282
                                   value="$pob.getDesigningPlaned().format($datehiphenFormatter)"></td>
268
                    #else
283
                    #else
-
 
284
                        <td>
269
                        <td style="background:pink;"><input type="date" id="dplaned" placeholder="Designing Planed(Kamini)" disabled
285
                        <i class="far fa-arrow-alt-circle-down" style="background:pink;"></i><input type="date" id="dplaned" placeholder="Designing Planed(Kamini)" disabled
270
                                   name="dplaned1">
286
                                   name="dplaned1">
271
                        </td>
287
                        </td>
272
                    #end
288
                    #end
273
                    #if($pob.getDeploymentDate())
289
                    #if($pob.getDeploymentDate())
274
                        <td style="background:lime;"><input type="date" id="dactual" placeholder="Designing Actual(Kamini)" disabled
290
                        <td><i class="far fa-arrow-alt-circle-up" style="color:green"></i><input type="date" id="dactual" placeholder="Designing Actual(Kamini)" disabled
275
                                   name="dactual1"
291
                                   name="dactual1"
276
                                   value="$pob.getDeploymentDate().format($datehiphenFormatter)"></td>
292
                                   value="$pob.getDeploymentDate().format($datehiphenFormatter)"></td>
277
                    #else
293
                    #else
278
                        <td style="background:pink;"><input type="date" id="dactual" placeholder="Designing Actual(Kamini)" disabled
294
                        <td><i class="far fa-arrow-alt-circle-down" style="background:pink;"></i><input type="date" id="dactual" placeholder="Designing Actual(Kamini)" disabled
279
                                   name="dactual1">
295
                                   name="dactual1">
280
                        </td>
296
                        </td>
281
                    #end
297
                    #end
282
                    #if($pob.getStockPayment()!= 0)
298
                    #if($pob.getStockPayment()!= 0)
283
                        <td style="background:lime;"><input type="text" placeholder="Stock payment(kamini)" disabled name="spayment1"
299
                        <td><i class="far fa-arrow-alt-circle-up" style="color:green"></i><input type="text" placeholder="Stock payment(kamini)" disabled name="spayment1"
284
                                   value="$pob.getStockPayment()"></td>
300
                                   value="$pob.getStockPayment()"></td>
285
                    #else
301
                    #else
286
                        <td style="background:pink;"><input type="text" placeholder="Stock payment(kamini)" disabled name="spayment1""></td>
302
                        <td><i class="far fa-arrow-alt-circle-down" style="background:pink;"></i><input type="text" placeholder="Stock payment(kamini)" disabled name="spayment1""></td>
287
                    #end
303
                    #end
288
 
304
 
289
                 
305
                 
290
                    
306
                    
291
                     #if($pob.getExpectedDate())
307
                     #if($pob.getExpectedDate())
292
                        <td style="background:lime;"><input type="date" class="expdate" placeholder="Expected Date(Kamini)" disabled  value="$pob.getExpectedDate().format($datehiphenFormatter)" >
308
                        <td><i class="far fa-arrow-alt-circle-up" style="color:green"></i><input type="date" class="expdate" placeholder="Expected Date(Kamini)" disabled  value="$pob.getExpectedDate().format($datehiphenFormatter)" >
293
                        </td>
309
                        </td>
294
                    #else
310
                    #else
295
                        <td style="background:pink;"><input type="date" class="expdate" placeholder="Expected Date(Kamini)" disabled>
311
                        <td><i class="far fa-arrow-alt-circle-down" style="background:pink;"></i><input type="date" class="expdate" placeholder="Expected Date(Kamini)" disabled>
296
                        </td>
312
                        </td>
297
                    #end
313
                    #end
298
 
314
 
299
                    #if($pob.getPayDate())
315
                    #if($pob.getPayDate())
300
                        <td style="background:lime;">
316
                        <td><i class="far fa-arrow-alt-circle-up" style="color:green"></i>
301
                          <input type="date" class="paydate" placeholder="pay Date(Kamini)" disabled  value="$pob.getPayDate().format($datehiphenFormatter)"  >
317
                          <input type="date" class="paydate" placeholder="pay Date(Kamini)" disabled  value="$pob.getPayDate().format($datehiphenFormatter)"  >
302
                        </td>
318
                        </td>
303
                    #else
319
                    #else
304
                        <td style="background:pink;"><input type="date" class="paydate" placeholder="Pay Date(Kamini)" disabled >
320
                        <td><i class="far fa-arrow-alt-circle-down" style="background:pink;"></i><input type="date" class="paydate" placeholder="Pay Date(Kamini)" disabled >
305
                        </td>
321
                        </td>
306
                    #end
322
                    #end
307
 
323
 
308
                    #if($pob.getInaugrationDate())
324
                    #if($pob.getInaugrationDate())
309
                    #if($pob.getDeploymentDate())
325
                    #if($pob.getDeploymentDate())
310
                     <td style="background:lime;"><input type="date" class="inaugrationDate" placeholder="Inaugration Date (SM)" disabled  value="$pob.getInaugrationDate().format($datehiphenFormatter)" >
326
                     <td><i class="far fa-arrow-alt-circle-up" style="color:green"></i><input type="date" class="inaugrationDate" placeholder="Inaugration Date (SM)" disabled  value="$pob.getInaugrationDate().format($datehiphenFormatter)" >
311
                        </td>
327
                        </td>
312
                    #else
328
                    #else
313
                     <td style="background:red;"><input type="date" class="inaugrationDate" placeholder="Inaugration Date (SM)" disabled  value="$pob.getInaugrationDate().format($datehiphenFormatter)" >
329
                     <td><i class="far fa-arrow-alt-circle-down" style="background:red;"></i><input type="date" class="inaugrationDate" placeholder="Inaugration Date (SM)" disabled  value="$pob.getInaugrationDate().format($datehiphenFormatter)" >
314
                        </td>
330
                        </td>
315
                    #end
331
                    #end
316
                    #else
332
                    #else
317
                        <td style="background:pink;"><input type="date" class="inaugrationDate" placeholder="Inaugration Date (SM)" disabled>
333
                        <td><i class="far fa-arrow-alt-circle-down" style="background:pink;"></i><input type="date" class="inaugrationDate" placeholder="Inaugration Date (SM)" disabled>
318
                        </td>
334
                        </td>
319
                    #end 
335
                    #end 
320
 
336
 
321
 
337
 
322
					<td #if($pob.getBillingStatus()==0) style="background-color:pink"#else style="background-color:lime" #end>
338
					<td #if($pob.getBillingStatus()==0) style="background-color:pink"#else style="background-color:lime" #end>
Line 328... Line 344...
328
                        #end   
344
                        #end   
329
                    </td> 
345
                    </td> 
330
                    
346
                    
331
                    
347
                    
332
                   #if($partnerVerificationStatusMap.get($pob.getId()))
348
                   #if($partnerVerificationStatusMap.get($pob.getId()))
333
                     <td style="background:lime;"><input type="text" name= "verificationStatusOnboarding"class="verificationStatus" placeholder="" disabled  value="$partnerVerificationStatusMap.get($pob.getId())" >
349
                     <td><i class="far fa-arrow-alt-circle-up" style="color:green"></i><input type="text" name= "verificationStatusOnboarding"class="verificationStatus" placeholder="" disabled  value="$partnerVerificationStatusMap.get($pob.getId())" >
334
                        </td>
350
                        </td>
335
                    #else
351
                    #else
336
                    <td style="background:red;"><input type="text" name= "verificationStatusOnboarding" class="verificationStatus" placeholder="" disabled  value="PENDING" >
352
                    <td><i class="far fa-arrow-alt-circle-down" style="background:red;"></i><input type="text" name= "verificationStatusOnboarding" class="verificationStatus" placeholder="" disabled  value="PENDING" >
337
                        </td>
353
                        </td>
338
                    
354
                    
339
                   #end 
355
                   #end 
340
                    
356
                    
341
                        <td>
357
                        <td>