74 lines
2.2 KiB
Plaintext
74 lines
2.2 KiB
Plaintext
<html>
|
|
<head>
|
|
<title>
|
|
AnnullamentoMassivo
|
|
</title>
|
|
|
|
</head>
|
|
|
|
<%@page import = "mnp.objects.dao.*, mnp.objects.filter.*, mnp.objects.*"%>
|
|
<%@page import = "java.util.*, mnp.command.*, mnp.utility.*, mnp.database.*"%>
|
|
<%@page import = "mnp.utility.ui.Res"%>
|
|
<!-- COPY -->
|
|
<!-- 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 = "left" valign = "top" width = "90%">
|
|
<!--fine tabella x menu -->
|
|
<!-- /COPY -->
|
|
<br>
|
|
<br>
|
|
<b><i><P class = "titolo" align = 'right'>ANNULLAMENTO FORZATO RICHIESTE DBC</P></i></b>
|
|
<!-- titolo della tabella --->
|
|
|
|
<form name = 'annullaForm' ENCTYPE="multipart/form-data" method= 'post' action = "<%=Res.ApplContext%>/<%=CommandsDef.SHOW_RIC_DA_ANNULLARE_DO%>" onSubmit = "return checkFile(this.annullamentoFile.value)">
|
|
<table width='100%' border='1'>
|
|
<tr>
|
|
<td class= 'tdCeleste' align= 'left'><font class = 'normaleTab'>Seleziona il file di richieste di Cessazione Porting da Annullare:</font></td>
|
|
<%
|
|
String processo = request.getParameter("proc");
|
|
if(processo.equalsIgnoreCase(ProcessMapper.proc_CESS_PORTING)){%>
|
|
<input type = 'hidden' name = 'proc' value = '<%=ProcessMapper.proc_CESS_PORTING%>'>
|
|
<%}else if(processo.equalsIgnoreCase(ProcessMapper.proc_RECIPIENT)){%>
|
|
<input type = 'hidden' name = 'proc' value = '<%=ProcessMapper.proc_RECIPIENT%>'>
|
|
<%}else if(processo.equalsIgnoreCase(ProcessMapper.proc_DONOR)){%>
|
|
<input type = 'hidden' name = 'proc' value = '<%=ProcessMapper.proc_DONOR%>'>
|
|
<%}%>
|
|
</tr>
|
|
<tr><td class = 'tdBianco'> </td></tr>
|
|
<tr>
|
|
<td class= 'tdGiallo' align='left'>
|
|
<input type='file' name='annullamentoFile'>
|
|
</td>
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
<!-- pulsanti -->
|
|
<BR><BR><HR class = "riga">
|
|
<TABLE width = "100%">
|
|
<TR>
|
|
<TD ALIGN= "CENTER"><INPUT TYPE= "submit" NAME= "CONFERMA" VALUE= "CONFERMA"></TD>
|
|
</TR>
|
|
</TABLE>
|
|
|
|
</form>
|
|
|
|
<!-- tabella x menu -->
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<!-- tabella x menu -->
|
|
</BODY>
|
|
</HTML>
|
|
|
|
|