Subversion Repositories SmartDukaan

Rev

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

Rev 3100 Rev 3116
Line 208... Line 208...
208
			</tr>
208
			</tr>
209
		</thead>
209
		</thead>
210
		<tbody>
210
		<tbody>
211
 
211
 
212
<%
212
<%
213
    for (Entry entry : itemsResultMap.entrySet()) {
213
    for (Entry<Long, Map<String, Long>> entry : itemsResultMap.entrySet()) {
214
        Long catalogItemId = (Long)entry.getKey();
214
        Long catalogItemId = (Long)entry.getKey();
215
        Map<String, Long> itemMap = (Map<String, Long>)entry.getValue();
215
        Map<String, Long> itemMap = (Map<String, Long>)entry.getValue();
216
%>
216
%>
217
			<tr>
217
			<tr>
218
				<td><%=itemsCatalogIdMap.get(catalogItemId)==null? catalogItemId : itemsCatalogIdMap.get(catalogItemId).getName()%></td>
218
				<td><%=itemsCatalogIdMap.get(catalogItemId)==null? catalogItemId : itemsCatalogIdMap.get(catalogItemId).getName()%></td>