122 lines
6.4 KiB
Plaintext
122 lines
6.4 KiB
Plaintext
<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean" %>
|
|
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html" %>
|
|
<%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic" %>
|
|
<%@ taglib uri="http://struts.apache.org/tags-tiles" prefix="tiles" %>
|
|
|
|
<bean:define id="paging" name="displayReportActionForm" property="paging"></bean:define>
|
|
<bean:define id="rowFrom" name="paging" property="rowFrom" type="Integer"></bean:define>
|
|
<bean:define id="rowsInPage" name="paging" property="rowsInPage" type="Integer"></bean:define>
|
|
<bean:define id="report" name="displayReportActionForm" property="report"></bean:define>
|
|
|
|
<table valign="top" cellspacing=0 cellpadding=0 WIDTH="100%" class="color0">
|
|
<tr align="center" height="30">
|
|
<th class="L" colspan="4">
|
|
<bean:write name="report" property="reportName" />
|
|
</th>
|
|
</tr>
|
|
<tr align="center" height="20">
|
|
<td>
|
|
<table border="0" cellspacing="0" cellpadding="0" class="colorReport">
|
|
<tr>
|
|
<th width="8%" align="left"/><b><bean:message key="displayReport.ID"/></b>: <bean:write name="report" property="id" /></th>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
<td>
|
|
<table border="0" cellspacing="0" cellpadding="0" class="colorReport">
|
|
<tr>
|
|
<th width="8%" align="left"/><b><bean:message key="displayReport.SETTORE"/></b>: <bean:write name="report" property="businessArea" /></th>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
<td>
|
|
<table border="0" cellspacing="0" cellpadding="0" class="colorReport">
|
|
<tr>
|
|
<th width="8%" align="left"/><b><bean:message key="displayReport.DATA_ULTIMO_AGGIORNAMENTO"/></b>: <bean:write name="report" property="lastUpdate" /></th>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
<td>
|
|
<table border="0" cellspacing="0" cellpadding="0" class="colorReport">
|
|
<tr>
|
|
<th width="8%" align="left"/><b><bean:message key="displayReport.NUM_RECORD"/></b>: <bean:write name="displayReportActionForm" property="requestNum" /></th>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<table width="100%" valign="top">
|
|
<logic:greaterEqual name="displayReportActionForm" property="requestNum" value="0">
|
|
<tr width="100%">
|
|
<td colspan="3">
|
|
<table class="color0" width="100%" valign="top" cellpadding="0" cellspacing="0">
|
|
<logic:messagesPresent message="true">
|
|
<tr align="left">
|
|
<th>
|
|
<html:messages id="msg" message="true">
|
|
<bean:write name="msg"/>
|
|
</html:messages>
|
|
</th>
|
|
</tr>
|
|
</logic:messagesPresent>
|
|
<logic:notEmpty name="report" property="items">
|
|
<tr width="100%">
|
|
<td width="87%" colspan="3">
|
|
<table class="color1 border withHidden" width="100%" cellpadding="1" cellspacing="0">
|
|
<tr>
|
|
<th width="8%" align="left">
|
|
<bean:message key="displayReport.RICHIESTE"/>
|
|
</th>
|
|
<th width="8%" align="left">
|
|
<bean:message key="displayReport.CODICE_OPERATORE_RECIPIENT"/>
|
|
</th>
|
|
<th width="8%" align="left">
|
|
<bean:message key="displayReport.DATA_EVENTO"/>
|
|
</th>
|
|
<th width="8%" align="left">
|
|
<bean:message key="displayReport.SETTIMANA_EVENTO"/>
|
|
</th>
|
|
<th width="8%" align="left">
|
|
<bean:message key="displayReport.MESE_EVENTO"/>
|
|
</th>
|
|
<th width="8%" align="left">
|
|
<bean:message key="displayReport.DESCR_STATO_EVENTO"/>
|
|
</th>
|
|
<th width="8%" align="left">
|
|
<bean:message key="displayReport.DESCR_STATO_ATTUALE"/>
|
|
</th>
|
|
<th width="8%" align="left">
|
|
<bean:message key="displayReport.STATO_EVENTO"/>
|
|
</th>
|
|
<th width="8%" align="left">
|
|
<bean:message key="displayReport.STATO_ATTUALE"/>
|
|
</th>
|
|
</tr>
|
|
<logic:iterate
|
|
id="report"
|
|
name="displayReportActionForm"
|
|
property="report.items"
|
|
indexId="index"
|
|
offset="rowFrom"
|
|
length="rowsInPage">
|
|
<tr>
|
|
<td width="8%"><bean:write name="report" property="RICHIESTE" /></td>
|
|
<td width="8%"><bean:write name="report" property="CODICE_OPERATORE_RECIPIENT" /></td>
|
|
<td width="8%"><bean:write name="report" property="DATA_EVENTO" /></td>
|
|
<td width="8%"><bean:write name="report" property="SETTIMANA_EVENTO" /></td>
|
|
<td width="8%"><bean:write name="report" property="MESE_EVENTO" /></td>
|
|
<td width="8%"><bean:write name="report" property="DESCR_STATO_EVENTO" /></td>
|
|
<td width="8%"><bean:write name="report" property="DESCR_STATO_ATTUALE" /></td>
|
|
<td width="8%"><bean:write name="report" property="STATO_EVENTO" /></td>
|
|
<td width="8%"><bean:write name="report" property="STATO_ATTUALE" /></td>
|
|
</tr>
|
|
</logic:iterate>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</logic:notEmpty>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</logic:greaterEqual>
|
|
</table> |