Files
gateway-mnp-dbc/dbcmnpsrc/FE/mnpdev/mnp/web/jsp/EsitoInvioAttivazioneGisp.jsp
2024-05-13 12:54:14 +02:00

135 lines
4.2 KiB
Plaintext

<%@page import = "mnp.utility.ui.PageLoader"%>
<%@page import = "mnp.objects.*, mnp.utility.ui.Res, mnp.objects.ui.*"%>
<jsp:useBean id="invioAttivazioneGispBean" scope="request" class="mnp.objects.ui.InvioAttivazioneGispBean"/>
<!--jsp:setProperty name="inviaBean" property="*"/-->
<!--
Pagina di ritorno della Invio.jsp
-->
<HTML>
<TITLE>
Mnp
</TITLE>
<BODY>
<!-- codice java -->
<%
PageLoader pageLoader = new PageLoader();
String sNomeFileSelezionato = "";
String sTipoFile = "";
String sTipoProcesso = "";
String sDestinatario = "";
String sModoInvio = "";
String[] aNomeFileGenerati = null;
EsitoRichiestaCA[] esito = null;
String sEsitoOperazione ="";
invioAttivazioneGispBean = (InvioAttivazioneGispBean)session.getAttribute("invioAttivazioneGispBean");
sEsitoOperazione = invioAttivazioneGispBean.getEsitoOperazione().equals("OK")?"Richiesta di Attivazione Gisp Inviata":"Richiesta di Attivazione Gisp NON Inviata";
if((invioAttivazioneGispBean != null) && (sEsitoOperazione.equals(""))){
//--------------------------------------------------------------//
//se sEsitoOperazione è valorizzato allora c-è stato un errore.
//--------------------------------------------------------------//
}
%>
<!-- fine codice java -->
<!-- intestazione -->
<!-- tabella che include il menu verticale -->
<table width = "100%">
<TR><td width = "100%" bgcolor = "#D61414">&nbsp</td><TR>
</table>
<table width = "100%" >
<tr>
<td width = "10%">
<jsp:include page="/jsp/Banner.jsp" flush = "true"/>
</td>
<td align = "right" valign = "top" width = "90%">
<!--fine tabella x menu -->
<BR>
<BR>
<b><i><P class = "titolo">ESITO RICHISTA ATTIVAZIONE GISP</P></i></b>
<FORM NAME= "frmSpedisci" ENCTYPE="multipart/form-data" METHOD="POST" ACTION="<%=Res.ApplContext%>/FileUploadServlet" onSubmit = "return doCheckForm(this)">
<!-- dati -->
<TABLE width = "100%" BORDER= "1" class ="border">
<TR>
<TD nowrap><P class = "normale"> NOME_RICHIESTA </P>
</TD>
<TD nowrap><P class = "normale"><INPUT TYPE= "text" NAME= "nomeRichiesta" readOnly value="<%=invioAttivazioneGispBean.getNomeRichiesta()%>" ></INPUT></P>
</TD>
</TR>
<TR>
<TD nowrap><P class = "normale"> CAS </P>
</TD>
<TD nowrap><P class = "normale"><INPUT TYPE= "text" NAME= "cas" readOnly value="<%=invioAttivazioneGispBean.getCas()%>" ></INPUT></P>
</TD>
</TR>
<TR>
<TD nowrap><P class = "normale"> NUM_TEL </P>
</TD>
<TD nowrap><P class = "normale"><INPUT TYPE= "text" NAME= "numTel" readOnly value="<%=invioAttivazioneGispBean.getNumTel()%>" ></INPUT></P>
</TD>
</TR>
<TR>
<TD nowrap><P class = "normale"> DATA_ESPL </P>
</TD>
<TD nowrap><P class = "normale"><INPUT TYPE= "text" NAME= "dataEspl" readOnly value="<%=invioAttivazioneGispBean.getDataEspl()%>" ></INPUT></P>
</TD>
</TR>
<TR>
<TD nowrap><P class = "normale"> IMSI </P>
</TD>
<TD nowrap><P class = "normale"><INPUT TYPE= "text" NAME= "imsi" readOnly value="<%=invioAttivazioneGispBean.getImsi()%>" ></INPUT></P>
</TD>
</TR>
<TR>
<TD nowrap><P class = "normale">PROFILO</P>
</TD>
<TD nowrap><P class = "normale"><INPUT TYPE= "text" NAME= "profilo" readOnly value="<%=invioAttivazioneGispBean.getProfilo()%>" ></INPUT></P>
</TD>
</TR>
<TR>
<TD nowrap><P class = "normale">TID</P>
</TD>
<TD nowrap><P class = "normale"><INPUT TYPE= "text" NAME= "tid" readOnly value="<%=invioAttivazioneGispBean.getTid()%>" ></INPUT></P>
</TD>
</TR>
<TR>
<TD nowrap><P class = "normale">INTERNA</P>
</TD>
<TD nowrap><P class = "normale"><INPUT TYPE= "text" NAME= "interna" readOnly value="<%=invioAttivazioneGispBean.getInterna()%>" ></INPUT></P>
</TD>
</TR>
<BR>
<TR>
<TD><P class = "normale"> Esito Operazione </P> </TD>
<TD><INPUT TYPE="text" SIZE = "80" NAME='txtEsito' readOnly VALUE ='<%=sEsitoOperazione%>'></TD>
</TR>
<!--pulsanti -->
<BR><BR><HR class = "riga">
<TR>
<TD ALIGN= "CENTER"><A class = "linkPage" HREF="<%=Res.ApplContext%>/MainDispatcher?nomePagina=Invio"> << Back </A></TD>
</TR>
</TABLE>
</FORM>
<!-- tabella x menu -->
</td>
</tr>
</table>
<!-- tabella x menu -->
</BODY>
</HTML>