示例#1
0
        protected void Page_Load(object sender, EventArgs e)
        {
            if (!IsPostBack)
            {
                try
                {
                    Controllers.ConsultarInventarioController obConsultarInventarioController =
                        new Controllers.ConsultarInventarioController();
                    DataSet dsConsulta = obConsultarInventarioController.getConsultaInventarioController();

                    if (dsConsulta.Tables[0].Rows.Count > 0)
                    {
                        gvwDatos.DataSource = dsConsulta;
                    }
                    else
                    {
                        gvwDatos.DataSource = null;
                    }

                    gvwDatos.DataBind();
                }
                catch (Exception ex)
                {
                    ClientScript.RegisterStartupScript(this.GetType(), "Mesaje", "<Script> swal('ERROR!', '" + ex.Message + "!', 'error')</Script>");
                }
            }
        }
        protected void btnGuardar_Click(object sender, EventArgs e)
        {
            try
            {
                string stMensaje = string.Empty;
                if (string.IsNullOrEmpty(txtNombre.Text))
                {
                    stMensaje += "Ingrese Nombre,";
                }
                if (string.IsNullOrEmpty(txtProveedor.Text))
                {
                    stMensaje += "Ingrese Proveedor,";
                }
                if (string.IsNullOrEmpty(txtCantidad.Text))
                {
                    stMensaje += "Ingrese Cantidad,";
                }
                if (string.IsNullOrEmpty(txtTipo.Text))
                {
                    stMensaje += "Ingrese Tipo,";
                }
                if (string.IsNullOrEmpty(txtValor.Text))
                {
                    stMensaje += "Ingrese Valor,";
                }

                if (!string.IsNullOrEmpty(stMensaje))
                {
                    throw new Exception(stMensaje.TrimEnd(','));
                }

                Logica.Models.clsConsultarInventario obclsConsultarInventario = new Logica.Models.clsConsultarInventario
                {
                    stNombre    = txtNombre.Text,
                    inCantidad  = Convert.ToInt32(txtCantidad.Text),
                    inValor     = Convert.ToInt32(txtValor.Text),
                    inProveedor = Convert.ToInt32(txtProveedor.Text),
                    inTipo      = Convert.ToInt32(txtTipo.Text)
                };

                Controllers.ConsultarInventarioController obConsultarInventarioController = new Controllers.ConsultarInventarioController();

                if (string.IsNullOrEmpty(lblOpcion.Text))
                {
                    lblOpcion.Text = "1";
                }

                ClientScript.RegisterStartupScript(this.GetType(), "Mesaje", "<Script> swal('CORRECTO!', '" +
                                                   obConsultarInventarioController.setAdministrarInventarioCotroller(obclsConsultarInventario, Convert.ToInt32(lblOpcion.Text))
                                                   + "!', 'error')</Script>");
            }
            catch (Exception ex)
            {
                ClientScript.RegisterStartupScript(this.GetType(), "Mesaje", "<Script> swal('ERROR!', '" + ex.Message + "!', 'error')</Script>");
            }
        }