viewPrestazioniErogateIntervento.jsp 1.28 KB
Newer Older
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
<%@ include file="/project/include.jsp"%>


<span class="generic-label">Prestazioni erogate nel periodo <strong>${j:formatWithFormatter(prestErogInterventoDto.periodoRifDa, "it.cedaf.juice.mvc.binding.formatters.DateFormatter")}</strong> - <strong>${j:formatWithFormatter(prestErogInterventoDto.periodoRifA, "it.cedaf.juice.mvc.binding.formatters.DateFormatter")}</strong></span>
<br/><br/>
<c:choose>
	<c:when test="${!empty prestErogInterventoDto.errorMsg}">
		<span class="generic-warning-message">${prestErogInterventoDto.errorMsg}</span>
	</c:when>
	<c:otherwise>
	<table width="100%" class="static-grid-modal-table">
	<tr>
		<td class="static-grid-modal-column-title">${j:bundle('LBL_gruppoPrestazioni')}</td>
		<td class="static-grid-modal-column-title" style="text-align:right;">Q.t Erogata</td>
	</tr>
	<c:forEach items="${prestErogInterventoDto.prestazioniErogate}" var="infoPrestErog" >
		<c:if test="${!empty infoPrestErog}">
		<tr>
			<td class="static-grid-modal-td">${infoPrestErog.descrizioneGruppoPrest}</td>
			<td class="static-grid-modal-td" style="text-align:right;">${j:formatWithFormatter(infoPrestErog.qtaErogata, "it.cedaf.icare.commons.control.binding.requestbean.formatters.ImportoFormatter")}</td>
		</tr>	
		</c:if>	
	</c:forEach>
	</table>
	</c:otherwise>
</c:choose>