Esempio n. 1
0
        private bool Validar()
        {
            bool bandera = true;

            using (BLL.ValidacionesBLL ctrVal = new BLL.ValidacionesBLL()) {
                if (!ctrVal.noEstaVacio(txtCodigo.Text))
                {
                    smsError.SetError(txtCodigo, "Codigo Incorrecto");
                    bandera = false;
                }

                if (!ctrVal.noEstaVacio(txtNuevoRespon.Text))
                {
                    smsError.SetError(txtNitResp, "No ha Seleccinado El Responsable");
                    bandera = false;
                }
                return(bandera);
            }
        }
Esempio n. 2
0
        private bool validar()
        {
            bool bandera = true;

            BLL.ValidacionesBLL ctrVal = new BLL.ValidacionesBLL();

            if (!ctrVal.esCodigoAreaValida(txtCodigo.Text))
            {
                smsError.SetError(txtCodigo, "Codigo de Area Incorrecto ");
                bandera = false;
            }

            if (!ctrVal.noEstaVacio(txtNomArea.Text))
            {
                smsError.SetError(txtNomArea, "Ingrese el Nombre del Area");
                bandera = false;
            }
            if (!ctrVal.noEstaVacio(txtNombreResp.Text))
            {
                smsError.SetError(txtNit, "Seleccione el Responsable del Area");
                bandera = false;
            }
            return(bandera);
        }
Esempio n. 3
0
        private bool validar()
        {
            bool bandera = true;

            using (BLL.ValidacionesBLL ctrVal = new BLL.ValidacionesBLL())
            {
                if (!ctrVal.esCodigoValido(txtCodigo.Text))
                {
                    smsError.SetError(txtCodigo, "Codigo Incorrecto");
                    bandera = false;
                }

                if (!ctrVal.noEstaVacio(txtNombre.Text))
                {
                    smsError.SetError(txtNombre, "Ingrese Nombre del Activo");
                    bandera = false;
                }

                if (!ctrVal.noEstaVacio(txtDescripcion.Text))
                {
                    smsError.SetError(txtDescripcion, "Ingrese Descripcion detallada");
                    bandera = false;
                }

                if (!ctrVal.noEstaVacio(cboGrupo.Text))
                {
                    smsError.SetError(cboGrupo, "Seleccione un Tipo");
                    bandera = false;
                }

                if (cboAreaResp.Text == "" && lblOperacion.Text == "Nuevo")
                {
                    smsError.SetError(cboAreaResp, "Seleccione el Area Responsable");
                    bandera = false;
                }

                if (cboGrupo.Text == "")
                {
                    smsError.SetError(cboGrupo, "Seleccione el Grupo");
                    bandera = false;
                }

                if (cboSubgrupo.Text == "")
                {
                    smsError.SetError(cboSubgrupo, "Seleccione el Subgrupo");
                    bandera = false;
                }
                if (!ctrVal.noEstaVacio(txtResponsable.Text))
                {
                    smsError.SetError(txtCodResp, "Ingrese El Responsable");
                    bandera = false;
                }
                if (!ctrVal.noEstaVacio(cboPropiedad.Text))
                {
                    smsError.SetError(cboPropiedad, "Seleccione el tipo de Propiedad");
                    bandera = false;
                }

                if (!ctrVal.noEstaVacio(txtvidaUtil.Text))
                {
                    smsError.SetError(txtvidaUtil, "Ingrese la Vida Util");
                    bandera = false;
                }

                if (!ctrVal.esValorValido(txtvalComercial.Text))
                {
                    smsError.SetError(txtvalComercial, "EL Valor Comercial Debe Ser mayor a cero (0)");
                    bandera = false;
                }
            }
            if (chkMantenimiento.Checked == true)
            {
                smsError.SetError(chkMantenimiento, "Ingrese los Datos del Contrato de Mantenimiento");
                bandera = validarMto();
            }
            if (chkPoliza.Checked == true)
            {
                smsError.SetError(chkPoliza, "Ingrese los Datos del Seguro");
                bandera = validarPoliza();
            }
            return(bandera);
        }