108 lines
4.3 KiB
Plaintext
108 lines
4.3 KiB
Plaintext
<%@page import = "mnp.objects.dao.*,mnp.objects.*"%>
|
|
<%@page import = "java.util.*,mnp.command.CommandsDef,mnp.utility.DateUtils"%>
|
|
<%@page import = "mnp.utility.ui.Res"%>
|
|
|
|
<jsp:useBean id="resultBean" scope="request" class="mnp.objects.filter.TerzePartiFilter" />
|
|
|
|
<%if(request.getParameter("btnFiltra")!= null){%>
|
|
<jsp:setProperty name="resultBean" property="*"/>
|
|
<jsp:forward page="/ShowStateConsoleTERZEPARTI.do"/>
|
|
<%}%>
|
|
<html>
|
|
<head>
|
|
<title>
|
|
FiltroStatoRichiesteTerzeParti
|
|
</title>
|
|
</head>
|
|
<!-- tabella che include il menu verticale -->
|
|
<table width = "100%" class = "tableBannerRosso" border = 0>
|
|
<tr>
|
|
<td align = "left" width = "100%"><IMG border = 0 SRC ="<%=Res.ApplContext%>/images/banner.gif"></td>
|
|
</tr>
|
|
</table>
|
|
<table width = "100%" >
|
|
<tr>
|
|
<td width = "10%">
|
|
<jsp:include page="/jsp/GUI/Banner.jsp" flush = "true"/>
|
|
</td>
|
|
<td align = "right" valign = "top" width = "90%">
|
|
<!--fine tabella x menu -->
|
|
<br>
|
|
<b><i><P class = "titolo"> FILTRO STATO DELLE RICHIESTE PORTING TERZA PARTE</P></i></b>
|
|
<!-- titolo -->
|
|
|
|
<form name = "frmFiltroTerzeParti" method="post" onSubmit = "return checkFiltroStatiTerzeParti();" action = "<%=CommandsDef.SHOW_STATE_FILTER_DO%>" >
|
|
|
|
<!-- titolo della tabella --->
|
|
<table width = '100%' border = '1'>
|
|
<tr>
|
|
<td class= 'tdCeleste'><font class = 'normaleTab'>Tipo Processo</font></td>
|
|
<td class= 'tdGiallo' colspan = '3'><select name = 'tipo_processo' onChange = 'javascript:document.frmFiltroTerzeParti.submit();'>
|
|
<option value = '<%=ProcessMapper.proc_DONOR_Name%>'>DONOR</option>
|
|
<option selected value = '<%=ProcessMapper.proc_PORTING_IN%>'>TERZA PARTE</option>
|
|
<option value = '<%=ProcessMapper.proc_RECIPIENT_Name%>'>RECIPIENT</option>
|
|
</select></td>
|
|
</tr>
|
|
<tr><td class = 'tdBianco' colspan = '4'> </td></tr>
|
|
<tr>
|
|
<td class= 'tdCeleste'><font class = 'normaleTab'>Data Ricezione Richiesta</font></td>
|
|
<td class= 'tdGiallo' colspan = '3'><input type = 'text' name = 'data_ricezione_richiesta' onBlur ='checkData(this,this.value)'></td>
|
|
</tr>
|
|
<tr>
|
|
<td class= 'tdCeleste'><font class = 'normaleTab'>Data Ricezione Richiesta Da</font></td>
|
|
<td class= 'tdGiallo'><input type = 'text' name = 'data_ricezione_richiesta_da' onBlur ='checkData(this,this.value);addSysdate(this.value,document.forms[0].data_ricezione_richiesta_a);'></td>
|
|
<td class= 'tdCeleste'><font class = 'normaleTab'>Data Ricezione Richiesta A</font></td>
|
|
<td class= 'tdGiallo'><input type = 'text' name = 'data_ricezione_richiesta_a' onBlur ='checkData(this,this.value)'></td>
|
|
</tr>
|
|
<tr>
|
|
<td class= 'tdCeleste'><font class = 'normaleTab'>Data Cut Over</font></td>
|
|
<td class= 'tdGiallo' colspan = '3'><input type = 'text' name = 'data_cut_over' onBlur ='checkData(this,this.value)'></td>
|
|
</tr>
|
|
<tr>
|
|
<td class= 'tdCeleste'><font class = 'normaleTab'>Data Cut Over Da</font></td>
|
|
<td class= 'tdGiallo'><input type = 'text' name = 'data_cut_over_da' onBlur ='checkData(this,this.value);addSysdate(this.value,document.forms[0].data_cut_over_a);'></td>
|
|
<td class= 'tdCeleste'><font class = 'normaleTab'>Data Cut Over A</font></td>
|
|
<td class= 'tdGiallo'><input type = 'text' name = 'data_cut_over_a' onBlur ='checkData(this,this.value)'></td>
|
|
</tr>
|
|
<tr>
|
|
<td class= 'tdCeleste'><font class = 'normaleTab'>Seleziona l'Operatore </font></td>
|
|
<td class= 'tdGiallo' colspan = '3'>
|
|
<table>
|
|
<%
|
|
if(resultBean != null){
|
|
String[] aOperatori = null;
|
|
if(resultBean.getOperatore() != null){
|
|
aOperatori = resultBean.getOperatore();%>
|
|
<input type = 'hidden' name = 'lenArray' value = '<%=aOperatori.length%>'>
|
|
<%for (int i = 0; i < aOperatori.length; i++) {%>
|
|
<tr>
|
|
<td width ='5%'><input type = 'checkbox' name = 'operatore' value = '<%=aOperatori[i]%>'></td>
|
|
<td><font class = 'normaleTab'><%=aOperatori[i]%></font></td>
|
|
</tr>
|
|
<% }
|
|
}
|
|
}%>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<!-- pulsanti -->
|
|
<BR><BR><HR class = "riga">
|
|
<TABLE width = "100%">
|
|
<TR>
|
|
<TD ALIGN= "CENTER"><INPUT TYPE= "submit" NAME= "btnFiltra" VALUE= " FILTRA "></TD>
|
|
</TR>
|
|
</TABLE>
|
|
|
|
<!-- pulsanti -->
|
|
|
|
</FORM>
|
|
|
|
<!-- tabella x menu -->
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<!-- tabella x menu -->
|
|
</BODY>
|
|
</HTML>
|