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