1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
iterator iter = lentitiesDeclarationsList.iterator();
while(iter.hasNext()){
EntityDeclaration entityDeclaration = (EntityDeclaration) entitiesDeclarationsList.get(i);
%>
<tr>
<td class="output1"><a target="_blank" href="<%= request.getContextPath()%>/update.nx?nexansEntityID=<%= entityDeclaration.getId() %>" onclick="window.open(this.href,null,'height=340,width=800,toolbar=no,scrollbar=no,center=yes'); return false;" > > </a></td>
<td class="output1"><%=entityDeclaration.getLegaleEntityCountry()%></td>
<td class="output1"><%=entityDeclaration.getSupplierName()%></td>
<td class="output1"><input type="text" name="field" size="40"
maxlength="256" value=""> <a target="_blank" href="<%= request.getContextPath()%>/supplierConsolidation.nx " onclick="window.open(this.href,null,'height=190,width=80,toolbar=no,scrollbar=no,center=yes'); return false;" > > </a></td>
<td class="output1"><%=entityDeclaration.getProductName()%></td>
<td class="output1"><input type="text" name="field" size="40" maxlength="256" value="">
<a target="_blank" href="<%= request.getContextPath()%>/productConsolidation.nx " onclick="window.open(this.href,null,'height=190,width=80,toolbar=no,scrollbar=no,center=yes'); return false;" > > </a></td>
<td class="output1">
<div align="center"><input type="checkbox" value="true" <%if(entityDeclaration.getIsEligible() == true){%><%="checked"%><%} %>>
</td>
<td class="output1">
<div align="center"><input type="checkbox">
</td>
<td class="output1">
<div align="center"><input type="checkbox">
</td>
</tr>
} |
Partager