Etiquetas Requerimientos.
git-tfs-id: [http://192.168.1.10:8080/tfs/AyA]$/SINORT;C546
This commit is contained in:
parent
4a576ef8b1
commit
72b571cc4e
2 changed files with 22 additions and 8 deletions
|
|
@ -189,7 +189,7 @@
|
|||
<div>
|
||||
|
||||
|
||||
|
||||
<%-- Requerimiento 10 Inicio --%>
|
||||
<table id="tblDatosProyecto" style="border-width: medium; border-color: #BFBFBF; text-align: left" border="0" class="table-responsive">
|
||||
<tr>
|
||||
<td colspan="2">
|
||||
|
|
@ -338,6 +338,7 @@
|
|||
<div id="dvCheckFirmado">
|
||||
<asp:CheckBox ID="chkFirmado" runat="server" Checked="true" Visible="false" Text="Validar firma digital"/>
|
||||
</div>
|
||||
|
||||
<div id="dvCheckNotificacion">
|
||||
<asp:CheckBox ID="chkNotificacion" runat="server" Checked="false" AutoPostBack="true" OnCheckedChanged="chkNotificacion_CheckedChanged" Visible="false" Text="Notificar al Usuario"/>
|
||||
</div>
|
||||
|
|
@ -438,7 +439,8 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<%-- Requerimiento 10 Fin --%>
|
||||
<br />
|
||||
<br />
|
||||
|
||||
|
|
|
|||
|
|
@ -91,8 +91,9 @@ public partial class Forms_Trans_frwCartaSolicitud : General
|
|||
cartaBL objCartaBL;
|
||||
DropDownList ddlTemporal, ddlTemporal2;
|
||||
string strNumSolicitudTMP = string.Empty;
|
||||
//Requerimiento 10
|
||||
int nNumeroSolicitudCFIA = 0;
|
||||
|
||||
//Requerimiento 10
|
||||
#region variable firma digital
|
||||
int nNumSolicitudTMP = 0;
|
||||
int nPKReutilizaTMP = 0;
|
||||
|
|
@ -126,7 +127,10 @@ public partial class Forms_Trans_frwCartaSolicitud : General
|
|||
{
|
||||
try
|
||||
{
|
||||
//Requerimiento 10
|
||||
strPKSolicitudTMP = Session["PKSOLICITUD"].ToString();
|
||||
//Requerimiento 10
|
||||
|
||||
ScriptManager.GetCurrent(Page).RegisterPostBackControl(btnNuevoCarta);
|
||||
ScriptManager.GetCurrent(Page).RegisterPostBackControl(grvListaCartaSolicitud);
|
||||
|
||||
|
|
@ -155,7 +159,9 @@ public partial class Forms_Trans_frwCartaSolicitud : General
|
|||
}
|
||||
if (Request["d"].ToString() == "firmar")
|
||||
chkFirmado.Visible = true;
|
||||
//Requerimiento 10
|
||||
chkNotificacion.Visible = true;
|
||||
//Requerimiento 10
|
||||
}
|
||||
|
||||
if ((!IsPostBack) && (Session.Count > 0))
|
||||
|
|
@ -200,7 +206,7 @@ public partial class Forms_Trans_frwCartaSolicitud : General
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
//Requerimiento 10 Inicio
|
||||
protected void btnSalirNotificacionCliente_Click(object sender, EventArgs e)
|
||||
{
|
||||
try
|
||||
|
|
@ -459,10 +465,13 @@ public partial class Forms_Trans_frwCartaSolicitud : General
|
|||
MensajeError("Se produjo un error en la operación", ex);
|
||||
}
|
||||
}
|
||||
|
||||
//Requerimiento 10 Fin
|
||||
#endregion
|
||||
|
||||
#region Eventos Controles Web (R3)
|
||||
|
||||
//Requerimiento 10 Inicio
|
||||
protected void btnEnviarRevision_Click(object sender, EventArgs e) //M0
|
||||
{
|
||||
try
|
||||
|
|
@ -833,6 +842,7 @@ public partial class Forms_Trans_frwCartaSolicitud : General
|
|||
EjecutarScript("inicializaTab('formulario');");
|
||||
}
|
||||
}
|
||||
//Requerimiento 10 Fin
|
||||
|
||||
protected void btnNuevaCarta_Click(object sender, EventArgs e) //M1
|
||||
{
|
||||
|
|
@ -1598,12 +1608,12 @@ public partial class Forms_Trans_frwCartaSolicitud : General
|
|||
|
||||
}
|
||||
}
|
||||
//Requerimiento 10 Inicio
|
||||
else
|
||||
{
|
||||
{ ClientScript.RegisterStartupScript(this.GetType(), "Error", "<script>javascript: MensajeInformativo('No existe el documento por favor verifique.');</script>"); }
|
||||
|
||||
|
||||
}
|
||||
//Requerimiento 10 Fin
|
||||
|
||||
//// To copy a file to another location and
|
||||
//// overwrite the destination file if it already exists.
|
||||
|
|
@ -2766,6 +2776,7 @@ public partial class Forms_Trans_frwCartaSolicitud : General
|
|||
objNotificacionBL.objnotificacionEL.message = "OK";
|
||||
int nValorRetornado = objNotificacionBL.cancelarNotificacion(objNotificacionBL.objnotificacionEL);
|
||||
|
||||
//Requerimiento 10 Inicio
|
||||
#region Notificacion
|
||||
if (chkNotificacion.Checked)
|
||||
{
|
||||
|
|
@ -2808,6 +2819,7 @@ public partial class Forms_Trans_frwCartaSolicitud : General
|
|||
MensajeAlerta("Falta finalizar la notificación al usuario.");
|
||||
}
|
||||
#endregion
|
||||
//Requerimiento 10 Fin
|
||||
}
|
||||
//ClientScript.RegisterStartupScript(this.GetType(), "Error", "<script>javascript: MensajeInformativo('Se ha generado el documento PDF. ');</script>");
|
||||
}
|
||||
|
|
@ -2992,6 +3004,7 @@ public partial class Forms_Trans_frwCartaSolicitud : General
|
|||
}
|
||||
return bValorRetornado;
|
||||
}
|
||||
//Requerimiento 10 Inicio
|
||||
private bool VerificarNotificacion()
|
||||
{
|
||||
bool bValor = false;
|
||||
|
|
@ -3216,8 +3229,7 @@ public partial class Forms_Trans_frwCartaSolicitud : General
|
|||
|
||||
return nValorRetornado;
|
||||
}
|
||||
|
||||
|
||||
//Requerimiento 10 Fin
|
||||
private void AbrirVentanaEmergenteDevolucion()
|
||||
{
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue