Ejemplo n.º 1
0
        private void MenuBoletaVerificar_Click(object sender, EventArgs e)
        {
            BL_Boleta Aux = new BL_Boleta().BoletaPorIDBOLETA(Convert.ToInt64(DataGridBoletas.SelectedRows[0].Cells[0].Value));

            Usuario = new BL_Usuario().DadosNome(WINDOWSNAME);
            if (Usuario != null && Usuario.USUARIO != "" && Usuario.SENHA != "")
            {
                if (Aux.VerificarCotista(Aux.CODCOT, Aux.CODFUND, Properties.Settings.Default.Usuario, Properties.Settings.Default.Senha) == "Liberado")
                {
                    Aux.Editar(Aux.IDBOLETA, Aux.COTIZACAO, Aux.IMPACTO, "Liberado");
                }
                else
                {
                    MessageBox.Show("Cadastro não liberado!");
                }
            }
            else
            {
                MessageBox.Show("Favor verificar usuário e senha nas Configurações.");
            }

            //Atualiza Boletas e o controle
            Ordem = Ordem.DadosPorIDORDEM(Ordem.IDORDEM);
            RefreshData();
        }
Ejemplo n.º 2
0
        private void MenuBoletaCancelar_Click(object sender, EventArgs e)
        {
            BL_Boleta BoletaAux = new BL_Boleta().BoletaPorIDBOLETA(Convert.ToInt64(DataGridBoletas.SelectedRows[0].Cells[0].Value));

            if (BoletaAux.STATUS == "Liberado" || BoletaAux.STATUS == "Pendente" || BoletaAux.STATUS == "Cadastro Pendente" || BoletaAux.STATUS == "TCR Pendente")
            {
                BoletaAux.Editar(BoletaAux.IDBOLETA, BoletaAux.COTIZACAO, BoletaAux.IMPACTO, "Cancelado");
                new BL_RegistroResgate().EditarIDBOLETA(BoletaAux.IDBOLETA, "Cancelado");
            }

            //Atualiza Boletas e o controle
            Ordem = Ordem.DadosPorIDORDEM(Ordem.IDORDEM);
            RefreshData();
        }