Example #1
0
        private void Page_Load(object sender, System.EventArgs e)
        {
            this.opcionEstado  = this.Request.QueryString["OpcionEstado"] == null ? "" : this.Request.QueryString["OpcionEstado"].ToString();
            this.UnidadVentaID = Utiles.Validaciones.obtieneEntero(this.Request.QueryString["UnidadVentaID"] == null ? "" : this.Request.QueryString["UnidadVentaID"].ToString());

            #region IsAuthenticated
            if (Session["Usuario"] != null)
            {
                usuario = (IUsuarios)Session["Usuario"];
            }

            if (User.Identity.IsAuthenticated)
            {
                string sOpcion = this.opcionEstado;
                Menu   oMenu   = (Menu)this.FindControl("Menu1");
                this.ValidarSeguridad(oMenu, sOpcion);
            }
            #endregion


            if (!IsPostBack)
            {
                string opcion = this.Request.QueryString["OpcionEstado"];

                SetearTituloPagina(opcion);
                Session["dsTareaAlertas"] = null;
                this.BindGrilla();
            }

            ITareaAlerta tareaAlerta = TareaAlertaFactory.GetTareaAlerta();
            this.dsTareaAlertas = tareaAlerta.GetTareaAlertasDataSet();

            this.BindGrilla();
        }
Example #2
0
        public override global::System.Data.DataSet Clone()
        {
            DsTareaAlertas cln = ((DsTareaAlertas)(base.Clone()));

            cln.InitVars();
            cln.SchemaSerializationMode = this.SchemaSerializationMode;
            return(cln);
        }
Example #3
0
        public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedDataSetSchema(global::System.Xml.Schema.XmlSchemaSet xs)
        {
            DsTareaAlertas ds = new DsTareaAlertas();

            global::System.Xml.Schema.XmlSchemaComplexType type     = new global::System.Xml.Schema.XmlSchemaComplexType();
            global::System.Xml.Schema.XmlSchemaSequence    sequence = new global::System.Xml.Schema.XmlSchemaSequence();
            global::System.Xml.Schema.XmlSchemaAny         any      = new global::System.Xml.Schema.XmlSchemaAny();
            any.Namespace = ds.Namespace;
            sequence.Items.Add(any);
            type.Particle = sequence;
            global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
            if (xs.Contains(dsSchema.TargetNamespace))
            {
                global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
                global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
                try {
                    global::System.Xml.Schema.XmlSchema schema = null;
                    dsSchema.Write(s1);
                    for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext();)
                    {
                        schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
                        s2.SetLength(0);
                        schema.Write(s2);
                        if ((s1.Length == s2.Length))
                        {
                            s1.Position = 0;
                            s2.Position = 0;
                            for (; ((s1.Position != s1.Length) &&
                                    (s1.ReadByte() == s2.ReadByte()));)
                            {
                                ;
                            }
                            if ((s1.Position == s1.Length))
                            {
                                return(type);
                            }
                        }
                    }
                }
                finally {
                    if ((s1 != null))
                    {
                        s1.Close();
                    }
                    if ((s2 != null))
                    {
                        s2.Close();
                    }
                }
            }
            xs.Add(dsSchema);
            return(type);
        }
Example #4
0
        private void BindGrilla()
        {
            SisPackController.AdministrarGrillas.Configurar(this.dtgTareaAlerta, "TareaAlertaID", 10);
            dtgTareaAlerta.AllowPaging = false;

            if (Session["dsTareaAlertas"] == null)
            {
                ITareaAlerta tareaAlerta = TareaAlertaFactory.GetTareaAlerta();

                string opcion = this.Request.QueryString["OpcionEstado"];
                this.UnidadVentaID = Utiles.Validaciones.obtieneEntero(this.Request.QueryString["UnidadVentaID"] == null ? "" : this.Request.QueryString["UnidadVentaID"].ToString());

                if (opcion == "alertaTareasBolsin")
                {
                    tareaAlerta.EsBolsin = true;
                }
                else if (opcion == "alertaTareasUVenta")
                {
                    if (this.UnidadVentaID != 0)
                    {
                        tareaAlerta.UnidadVentaID = this.UnidadVentaID;
                    }
                    else
                    {
                        tareaAlerta.EsUnidadVenta = true;
                    }
                }

                this.dsTareaAlertas = tareaAlerta.GetTareaAlertasDataSet();
            }
            else
            {
                this.dsTareaAlertas = (DsTareaAlertas)Session["dsTareaAlertas"];
                if (this.dtgTareaAlerta.EditItemIndex != -1)
                {
                    DataGridItem            item = this.dtgTareaAlerta.Items[this.dtgTareaAlerta.EditItemIndex];
                    DsTareaAlertas.datosRow dr   = (DsTareaAlertas.datosRow) this.dsTareaAlertas.datos.Rows[item.DataSetIndex];
                }
            }

            Session["dsTareaAlertas"]            = this.dsTareaAlertas;
            this.dtgTareaAlerta.DataSource       = this.dsTareaAlertas;
            this.dtgTareaAlerta.CurrentPageIndex = 0;
            this.dtgTareaAlerta.DataBind();
        }
Example #5
0
        /// <summary>
        /// Método para llenar el dataset de tareas alertas.
        /// Invoca al stored procedure TareaAlertasBolsinALL o TareaAlertasUVentaALL.
        /// </summary>
        /// <returns>Retorna el dataset de alertas de tareas definidas para el bolsin.</returns>
        public DsTareaAlertas GetTareaAlertasDataSet()
        {
            DsTareaAlertas ds = new DsTareaAlertas();

            if (this.esBolsin)
            {
                Config.Conexion.LlenarTypeDataSet(ds.datos, System.Data.CommandType.StoredProcedure, "TareaAlertasBolsinALL");
            }
            else if (this.esUnidadVenta)
            {
                Config.Conexion.LlenarTypeDataSet(ds.datos, System.Data.CommandType.StoredProcedure, "TareaAlertasUVentaALL");
            }
            else if (this.unidadVentaID != 0)
            {
                SqlParameter pUnidadVentaID = new SqlParameter("@UnidadVentaID", this.UnidadVentaID);
                Config.Conexion.LlenarTypeDataSet(ds.datos, System.Data.CommandType.StoredProcedure, "TareaAlertasUVentaEspecificaALL", pUnidadVentaID);
            }

            return(ds);
        }
Example #6
0
        protected void dtgTareaAlerta_Update(object sender, DataGridCommandEventArgs e)
        {
            try
            {
                string valorString = Request.Form[((TextBox)e.Item.FindControl("txtValor")).UniqueID];
                if (valorString == "")
                {
                    ((ErrorWeb)this.phErrores.Controls[0]).setMensaje("Error, el valor no puede quedar vacio");
                    return;
                }

                this.dsTareaAlertas = (DsTareaAlertas)Session["dsTareaAlertas"];
                DsTareaAlertas.datosRow dr = (DsTareaAlertas.datosRow) this.dsTareaAlertas.datos.Rows[e.Item.DataSetIndex];

                ITareaAlerta tareaAlerta = TareaAlertaFactory.GetTareaAlerta();
                tareaAlerta.TareaAlertaID = dr.TareaAlertaID;
                int valor = Utiles.Validaciones.obtieneEntero(valorString);
                tareaAlerta.Valor = valor;

                string opcion = this.Request.QueryString["OpcionEstado"];
                this.UnidadVentaID = Utiles.Validaciones.obtieneEntero(this.Request.QueryString["UnidadVentaID"] == null ? "" : this.Request.QueryString["UnidadVentaID"].ToString());


                if (opcion == "alertaTareasBolsin")
                {
                    tareaAlerta.EsBolsin = true;
                }
                else if (opcion == "alertaTareasUVenta")
                {
                    if (this.UnidadVentaID != 0)
                    {
                        tareaAlerta.UnidadVentaID = this.UnidadVentaID;
                    }
                    else
                    {
                        tareaAlerta.EsUnidadVenta = true;
                    }
                }

                try
                {
                    tareaAlerta.Guardar(usuario);
                    this.dtgTareaAlerta.EditItemIndex = -1;
                    Session["dsTareaAlertas"]         = null;
                    this.BindGrilla();
                }
                catch (Exception ex)
                {
                    string mensaje = ex.Message;
                    try
                    {
                        mensaje = this.TraducirTexto(ex.Message);
                        if (mensaje == "" || mensaje == null)
                        {
                            mensaje = ex.Message;
                        }
                    }
                    catch (Exception)
                    {
                        mensaje = ex.Message;
                    }
                    ((ErrorWeb)this.phErrores.Controls[0]).setMensaje(mensaje);
                }
            }
            catch (Exception ex)
            {
                ManejaErrores(ex);
            }
        }
Example #7
0
            public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs)
            {
                global::System.Xml.Schema.XmlSchemaComplexType type     = new global::System.Xml.Schema.XmlSchemaComplexType();
                global::System.Xml.Schema.XmlSchemaSequence    sequence = new global::System.Xml.Schema.XmlSchemaSequence();
                DsTareaAlertas ds = new DsTareaAlertas();

                global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
                any1.Namespace       = "http://www.w3.org/2001/XMLSchema";
                any1.MinOccurs       = new decimal(0);
                any1.MaxOccurs       = decimal.MaxValue;
                any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
                sequence.Items.Add(any1);
                global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
                any2.Namespace       = "urn:schemas-microsoft-com:xml-diffgram-v1";
                any2.MinOccurs       = new decimal(1);
                any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
                sequence.Items.Add(any2);
                global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
                attribute1.Name       = "namespace";
                attribute1.FixedValue = ds.Namespace;
                type.Attributes.Add(attribute1);
                global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
                attribute2.Name       = "tableTypeName";
                attribute2.FixedValue = "datosDataTable";
                type.Attributes.Add(attribute2);
                type.Particle = sequence;
                global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
                if (xs.Contains(dsSchema.TargetNamespace))
                {
                    global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
                    global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
                    try {
                        global::System.Xml.Schema.XmlSchema schema = null;
                        dsSchema.Write(s1);
                        for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext();)
                        {
                            schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
                            s2.SetLength(0);
                            schema.Write(s2);
                            if ((s1.Length == s2.Length))
                            {
                                s1.Position = 0;
                                s2.Position = 0;
                                for (; ((s1.Position != s1.Length) &&
                                        (s1.ReadByte() == s2.ReadByte()));)
                                {
                                    ;
                                }
                                if ((s1.Position == s1.Length))
                                {
                                    return(type);
                                }
                            }
                        }
                    }
                    finally {
                        if ((s1 != null))
                        {
                            s1.Close();
                        }
                        if ((s2 != null))
                        {
                            s2.Close();
                        }
                    }
                }
                xs.Add(dsSchema);
                return(type);
            }