quadroRiassuntivoExt.jsp 1.3 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 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
<%@ include file="/project/include.jsp" %>
<%@page import="it.cedaf.icare.business.managers.quadririassuntivi.CustomInfo"%>
<%@page import="it.cedaf.icare.quadririassuntivi.view.dto.CustomItem"%>
<%@page import="it.cedaf.commons.DateLib"%>
<%@page import="it.cedaf.commons.StringLib"%>

<script type="text/javascript">
	function openAttivitaDataManagement(idSoggetto) {
		
	}
</script>

<%
	CustomItem item = (CustomItem) request.getAttribute("currentItem");
	CustomInfo info = item.getCustomInfo();
	
	String responsabile = info.getOperatoreResponsabile();
	String emailAddress = info.getMailOperatoreResponsabile();
	if (!StringLib.isNullOrEmptyString(emailAddress)) {
		responsabile = "<a href='mailto:" + emailAddress + "'>" + responsabile + "</a>";
	}
%>


<td width="50%">
	<table>
		<tr>
			<td class="gantt-detail-label"><shell:label prop="dataInizio" /></td>
			<td class="gantt-detail-value"><%=DateLib.format(item.getFrom())%></td>	
		</tr>
		<tr>
			<td class="gantt-detail-label"><shell:label prop="descrizione" /></td>
			<td class="gantt-detail-value"><%=info.getProperty("descrizione")%></td>
		</tr>
	</table>
</td>
<td width="50%">
	<table>
		<tr>
			<td class="gantt-detail-label"><shell:label prop="dataFine" /></td>
			<td class="gantt-detail-value"><%=DateLib.format(item.getTo())%></td>	
		</tr>
	</table>
</td>