Esempio n. 1
0
        private void guardarbutton_Click(object sender, EventArgs e)
        {
            int ID;

            int.TryParse(IDnumericUpDown.Text, out ID);
            Articulos art = BLL.ArticulosBLL.Buscar(ID);

            if (art == null)
            {
                Articulos art1 = LlenarClase();

                if (DescripciontextBox.Text == string.Empty || PrecionumericUpDown.Value == 0)
                {
                    ValidarerrorProvider.SetError(guardarbutton, "No puede dejar nada vacio");
                }
                else if (BLL.ArticulosBLL.Guardar(art1))
                {
                    MessageBox.Show("Nota de Credito Guardada");
                }
                else if (!BLL.ArticulosBLL.Guardar(art1))
                {
                    MessageBox.Show("Nota de Credito No Guardada");
                }
            }
        }
Esempio n. 2
0
        public bool Validar(int error)
        {
            bool paso = false;

            if (error == 1 && (LibroIDnumericUpDown.Value == 0))
            {
                ValidarerrorProvider.SetError(LibroIDnumericUpDown, "Favor LLenar");
                paso = true;
            }

            if (error == 2 && string.IsNullOrEmpty(DescripciontextBox.Text))
            {
                ValidarerrorProvider.SetError(DescripciontextBox, "Favor LLenar");
                paso = true;
            }
            if (error == 2 && string.IsNullOrEmpty(SiglastextBox.Text))
            {
                ValidarerrorProvider.SetError(SiglastextBox, "Favor LLenar");
                paso = true;
            }

            if (error == 2 && string.IsNullOrEmpty(TipotextBox.Text))
            {
                ValidarerrorProvider.SetError(TipotextBox, "Favor LLenar");
                paso = true;
            }
            return(paso);
        }
Esempio n. 3
0
        private bool Validar()
        {
            bool paso = false;



            if (String.IsNullOrWhiteSpace(observacionesTextbox.Text))
            {
                ValidarerrorProvider.SetError(observacionesTextbox,
                                              "No debes dejar la Observacion vacia");
                paso = true;
            }


            if (CantidadnumericUpDown.Value == 0)
            {
                ValidarerrorProvider.SetError(CantidadnumericUpDown,
                                              "No debes dejar la Cantidad Vacia vacia");
                paso = true;
            }

            if (DetalleCotizacionesdataGridView.RowCount == 0)
            {
                ValidarerrorProvider.SetError(DetalleCotizacionesdataGridView,
                                              "Es obligatorio Agregar un Articulo ");
                paso = true;
            }

            return(paso);
        }
        public bool Validar()
        {
            bool retorno = true;

            if (string.IsNullOrEmpty(DescripciontextBox.Text))
            {
                ValidarerrorProvider.SetError(DescripciontextBox, "Debe de ingresar la Descripcion.");
                retorno = false;
            }
            return(retorno);
        }
        public bool Validar()
        {
            bool retorno = true;

            if ((string.IsNullOrEmpty(NombrestextBox.Text)) || (string.IsNullOrEmpty(SueldotextBox.Text)) || (string.IsNullOrEmpty(EmailtextBox.Text)) || (EmpleadosEmailsdataGridView.DataSource == null) || (EmpleadosRetencionesdataGridView.DataSource == null))
            {
                ValidarerrorProvider.SetError(NombrestextBox, "Debe de ingresar el Nombre.");
                ValidarerrorProvider.SetError(SueldotextBox, "Debe de ingresar el Sueldo.");
                ValidarerrorProvider.SetError(EmailtextBox, "Debe de ingresar el Email.");
                ValidarerrorProvider.SetError(EmpleadosEmailsdataGridView, "Debe agregar los Datos.");
                ValidarerrorProvider.SetError(EmpleadosRetencionesdataGridView, "Debe agregar los Datos.");
                retorno = false;
            }
            return(retorno);
        }
Esempio n. 6
0
        private void eliminarbutton_Click(object sender, EventArgs e)
        {
            int ID;

            int.TryParse(IDnumericUpDown.Text, out ID);

            if (BLL.ArticulosBLL.Eliminar(ID))
            {
                MessageBox.Show("Eliminado");
            }
            else
            {
                ValidarerrorProvider.SetError(eliminarbutton, "No se puede eliminar un articulo que no existe");
            }
        }
Esempio n. 7
0
        private bool ValidarE()
        {
            bool paso = false;



            if (MantenimientoIDnumericUpDown.Value == 0)
            {
                ValidarerrorProvider.SetError(MantenimientoIDnumericUpDown,
                                              "Llene el campo");
                paso = true;
            }


            return(paso);
        }
Esempio n. 8
0
        private bool Validar()
        {
            bool interruptor = true;

            if (string.IsNullOrEmpty(MontomaskedTextBox.Text))
            {
                ValidarerrorProvider.SetError(MontomaskedTextBox, "Por favor llenar el campo vacio.");
                interruptor = false;
            }
            if (string.IsNullOrEmpty(ClienteIdcomboBox.Text))
            {
                ValidarerrorProvider.SetError(ClienteIdcomboBox, "Por favor llenar el campo vacio.");
                interruptor = false;
            }

            return(interruptor);
        }
Esempio n. 9
0
        private bool Validar()
        {
            bool paso = false;

            if (CantidadnumericUpDown.Value == 0)
            {
                ValidarerrorProvider.SetError(CantidadnumericUpDown,
                                              "No debes dejar la Cantidad Vacia vacia");
                paso = true;
            }

            if (DetalleMantenimientodataGridView.RowCount == 0)
            {
                ValidarerrorProvider.SetError(DetalleMantenimientodataGridView,
                                              "Es obligatorio Agregar un Articulo ");
                paso = true;
            }

            return(paso);
        }
Esempio n. 10
0
        private void guardarbutton_Click(object sender, EventArgs e)
        {
            int ID;

            int.TryParse(idnumericUpDown.Text, out ID);
            NotasDeCredito nc = BLL.NotasDeCreditoBLL.Buscar(ID);

            if (nc == null)
            {
                NotasDeCredito nc1 = LlenarClase();

                if (fechadateTimePicker.Text == string.Empty || estudianteidnumericUpDown.Value == 0 ||
                    nombretextBox.Text == string.Empty || montoasignaturasnumericUpDown.Value == 0 ||
                    pctnumericUpDown.Value == 0 || montotextBox.Text == string.Empty)
                {
                    ValidarerrorProvider.SetError(guardarbutton, "No puede dejar nada vacio");
                }
                else if (BLL.NotasDeCreditoBLL.Guardar(nc1))
                {
                    MessageBox.Show("Nota de Credito Guardada");
                }
                else if (!BLL.NotasDeCreditoBLL.Guardar(nc1))
                {
                    MessageBox.Show("Nota de Credito No Guardada");
                }
            }
            else
            {
                mod(nc);

                if (BLL.NotasDeCreditoBLL.Modificar(nc))
                {
                    MessageBox.Show("Acaba de Modificar La Nota De Credito");
                }
                else
                {
                    MessageBox.Show("No Se Pudo Modificar La Nota De Credito");
                }
            }
            LimpiarTextBox();
        }
Esempio n. 11
0
        private bool Validar()
        {
            bool paso = true;

            if (String.IsNullOrEmpty(DescripcionrichTextBox.Text))
            {
                ValidarerrorProvider.SetError(DescripcionrichTextBox, "No debes dejar este campo vacio");
                paso = false;
            }

            if (CantidadnumericUpDown.Value == 0)
            {
                ValidarerrorProvider.SetError(CantidadnumericUpDown, "No debe dejarlo el campo en 0");
                paso = false;
            }
            if (GruposnumericUpDown.Value == 0)
            {
                ValidarerrorProvider.SetError(GruposnumericUpDown, "No debe dejar el campo en 0");
                paso = false;
            }
            return(paso);
        }