Beispiel #1
0
        private bool ValidarDatosCompra()
        {
            bool val = true;

            if (textBoxProductoCodigo.Text.Trim() == "")
            {
                val = false;
                Validaciones.SetError(textBoxProductoCodigo, "Debe Ingresar un Codigo!");
            }
            else if (!TextValidator.ValidarEntero(textBoxProductoCodigo.Text))
            {
                val = false;
                Validaciones.SetError(textBoxProductoCodigo, "Debe ingresar un codigo valido!");
            }

            int CantidadProducto = 0;

            Int32.TryParse(textBoxProductoCantidad.Text, out CantidadProducto);
            if (textBoxProductoCantidad.Text.Trim() == "" || CantidadProducto < 1)
            {
                val = false;
                Validaciones.SetError(textBoxProductoCantidad, "Debe Ingresar una cantidad!");
                textBoxProductoCantidad.Text = "1";
            }
            else if (!TextValidator.ValidarEntero(textBoxProductoCantidad.Text))
            {
                val = false;
                Validaciones.SetError(textBoxProductoCantidad, "Debe ingresar una cantidad valida!");
            }
            return(val);
        }
Beispiel #2
0
        private bool ValidarCampos()
        {
            bool val = true;

            if (txt_Codigo.Text.Trim() == "")
            {
                val = false;
                Validaciones.SetError(txt_Codigo, "Debe ingresar un codigo!");
            }
            else if (!TextValidator.ValidarEntero(txt_Codigo.Text))
            {
                val = false;
                Validaciones.SetError(txt_Codigo, "El codigo es unicamente numerico");
            }

            if (txt_Producto.Text.Trim() == "")
            {
                val = false;
                Validaciones.SetError(txt_Producto, "Debe Ingresar un Producto!");
            }
            else if (!TextValidator.ValidarStringEntero(txt_Producto.Text) && (!TextValidator.ValidarString(txt_Producto.Text)))
            {
                val = false;
                Validaciones.SetError(txt_Producto, "Producto mal ingresado!");
            }

            if (txt_Precio.Text.Trim() == "")
            {
                val = false;
                Validaciones.SetError(txt_Precio, "Debe Ingresar un Precio para el producto!");
            }
            else if (!TextValidator.ValidarFloat(txt_Precio.Text))
            {
                val = false;
                Validaciones.SetError(txt_Precio, "El precio del producto debe ser numero y con 2 decimales");
            }

            return(val);
        }
        private bool ValidarCampos()
        {
            bool val = true;

            if (txt_name.Text.Trim() == "")
            {
                val = false;
                Validaciones.SetError(txt_name, "Debe Ingresar un Nombre!");
            }
            else if (!TextValidator.ValidarString(txt_name.Text))
            {
                val = false;
                Validaciones.SetError(txt_name, "El nombre debe contener unicamente letras!");
            }


            if (txt_ape.Text.Trim() == "")
            {
                val = false;
                Validaciones.SetError(txt_ape, "Debe Ingresar un Apellido!");
            }
            else if (!TextValidator.ValidarString(txt_ape.Text))
            {
                val = false;
                Validaciones.SetError(txt_ape, "El Apellido debe contener unicamente letras!");
            }

            if (txt_tel.Text.Trim() == "")
            {
                val = false;
                Validaciones.SetError(txt_tel, "Debe Ingresar un Telefono!");
            }
            else if (!TextValidator.ValidarTelefono(txt_tel.Text))
            {
                val = false;
                Validaciones.SetError(txt_tel, "Ingrese un telefono valido!");
            }


            if (txt_dom.Text.Trim() == "")
            {
                val = false;
                Validaciones.SetError(txt_dom, "Debe Ingresar un Domicilio!");
            }
            else if (!TextValidator.ValidarStringEntero(txt_dom.Text))
            {
                val = false;
                Validaciones.SetError(txt_dom, "Debe ingresar un domicilio valido!");
            }

            if (txt_doc.Text.Trim() == "")
            {
                val = false;
                Validaciones.SetError(txt_doc, "Debe Ingresar un documento!");
            }
            else if (!TextValidator.ValidarEntero(txt_doc.Text))
            {
                val = false;
                Validaciones.SetError(txt_doc, "Debe ingresar un documento valido!");
            }

            if (txt_mat.Text.Trim() == "")
            {
                val = false;
                Validaciones.SetError(txt_mat, "Debe Ingresar una matricula!");
            }
            else if (!TextValidator.ValidarEntero(txt_mat.Text))
            {
                val = false;
                Validaciones.SetError(txt_mat, "Debe ingresar una matricula valida!");
            }

            if (txt_mail.Text.Trim() == "")
            {
                val = false;
                Validaciones.SetError(txt_mail, "Debe Ingresar un mail!");
            }
            else if (!TextValidator.ValidarMail(txt_mail.Text))
            {
                val = false;
                Validaciones.SetError(txt_mail, "Debe ingresar un mail valido!");
            }

            return(val);
        }