Ejemplo n.º 1
0
        private void txtCodigoDaComanda_KeyPress(object sender, KeyPressEventArgs e)
        {
            try
            {
                ValidatorField.IntegerAndLetter(e);
                ValidatorField.NoSpace(e);

                if ((Keys)e.KeyChar == Keys.Enter)
                {
                    Espere espere = new Espere();
                    CarregarComandaAtiva(espere);
                    MostrarBotaoVendaSeExisteItensNaComanda();
                    LimparTxt(new List <TextBox>()
                    {
                        txtCodigoDaComanda
                    });
                    FocarNoTxt(txtQuantidade);
                    espere.CancelarTask();
                    if (espere.Cancel.IsCancellationRequested)
                    {
                        mensagem.Close();
                    }
                }
            }
            catch (CustomException erro)
            {
                DialogMessage.MessageFullComButtonOkIconeDeInformacao(erro.Message, "Aviso");
            }
            catch (Exception erro)
            {
                DialogMessage.MessageComButtonOkIconeErro(erro.Message, "Erro");
            }
        }
 private void txtEstoque_KeyPress(object sender, KeyPressEventArgs e)
 {
     try
     {
         ValidatorField.IntegerAndLetter(e: e);
         LimparFocoDoDataGridView();
         if ((Keys)e.KeyChar == Keys.Enter)
         {
             if (_estoqueRepositorio.GetQuantidade() > 0)
             {
                 if (ckbPorCodigo.Checked)
                 {
                     _estoqueRepositorio.ListarPorCodigo(dgv: dgvEstoque, codigo: txtEstoque.Text);
                 }
             }
         }
     }
     catch (CustomException erro)
     {
         DialogMessage.MessageFullComButtonOkIconeDeInformacao(erro.Message, "Aviso");
         LimparTxt();
         FocoNoTxt();
     }
     catch (Exception erro)
     {
         DialogMessage.MessageComButtonOkIconeErro(erro.Message, "Erro");
     }
 }
Ejemplo n.º 3
0
 private void mtbCpf_KeyPress(object sender, KeyPressEventArgs e)
 {
     ValidatorField.IntegerAndLetter(e: e);
     if (e.KeyChar == (char)Keys.Enter)
     {
         FocarNoButton(btn: btnCadastrar);
     }
 }
Ejemplo n.º 4
0
 private void txtDescricao_KeyPress(object sender, KeyPressEventArgs e)
 {
     ValidatorField.IntegerAndLetter(e: e);
     if ((Keys)e.KeyChar == Keys.Enter)
     {
         FocarNoTxt(txtPrecoCompra);
     }
 }
 private void txtCategoria_KeyPress(object sender, KeyPressEventArgs e)
 {
     ValidatorField.IntegerAndLetter(e: e);
     ValidatorField.AllowOneSpaceTogether(e, sender);
     if (e.KeyChar == (char)Keys.Enter)
     {
         FocarNoBtn();
     }
 }
Ejemplo n.º 6
0
 private void txtCodigo_KeyPress(object sender, KeyPressEventArgs e)
 {
     ValidatorField.IntegerAndLetter(e: e);
     ValidatorField.NoSpace(e);
     if ((Keys)e.KeyChar == Keys.Enter)
     {
         FocarNoTxt(txtNome);
     }
 }
Ejemplo n.º 7
0
 private void txtComanda_KeyPress(object sender, KeyPressEventArgs e)
 {
     ValidatorField.IntegerAndLetter(e: e);
     ValidatorField.NoSpace(e);
     if (e.KeyChar == (char)Keys.Enter)
     {
         FocarNoBtn();
     }
 }
 private void txtNome_KeyPress(object sender, KeyPressEventArgs e)
 {
     ValidatorField.IntegerAndLetter(e: e);
     ValidatorField.AllowOneSpaceTogether(e, sender);
     if ((Keys)e.KeyChar == Keys.Enter)
     {
         if (cbbCategoria.Items.Count > 0)
         {
             FocarNoCbb(cbbCategoria);
             MostrarItensDoCbb(cbb: cbbCategoria);
         }
         else
         {
             FocarNoBotao(btnAdicionarCategoria);
         }
     }
 }
 private void mtbCpf_KeyPress(object sender, KeyPressEventArgs e)
 {
     ValidatorField.IntegerAndLetter(e: e);
 }
Ejemplo n.º 10
0
        private void txtCodigoDoProduto_KeyPress(object sender, KeyPressEventArgs e)
        {
            try
            {
                ValidatorField.IntegerAndLetter(e);
                ValidatorField.NoSpace(e);
                if ((Keys)e.KeyChar == Keys.Enter && txtCodigoDoProduto.Text.Length > 0)
                {
                    if (ckbPorPeso.Checked)
                    {
                        decimal peso = 0;
                        if (txtPesoDoProduto.Text.Contains("0,"))
                        {
                            string temp = txtPesoDoProduto.Text.Substring(2, txtPesoDoProduto.Text.Length - 2);
                            peso = txtPesoDoProduto.Text == "" ? 0 : Convert.ToDecimal(temp);
                        }
                        else
                        {
                            peso = txtPesoDoProduto.Text == "" ? 0 : Convert.ToDecimal(txtPesoDoProduto.Text.Replace(",", ""));
                        }

                        if (peso > 0)
                        {
                            InstanciarProdutoRepositorio();
                            _produtoRepositorio.AdicionarProdutoParaVendaPorPeso(ltvProdutos, txtCodigoDoProduto.Text, peso);
                            GetValorNaComanda();
                            LimparTxt(new List <TextBox>()
                            {
                                txtCodigoDoProduto
                            });
                            MostrarBotaoVendaSeExisteItensNaComanda();
                            EsconderGroupBoxOuMostrar(new List <GroupBox>()
                            {
                                gpbValorPorPeso
                            }, Esconder);
                            DesmarcarCheckBox();
                            LimparTxt(new List <TextBox>()
                            {
                                txtValorPago
                            });
                        }
                        else
                        {
                            MyErro.MyCustomException("Digite o valor do item vendido.");
                            FocarNoTxt(txtPesoDoProduto);
                        }
                    }
                    else
                    {
                        if (txtQuantidade.Text == "0" || txtQuantidade.Text == "00" || txtQuantidade.Text == "000")
                        {
                            LimparTxt(new List <TextBox>()
                            {
                                txtQuantidade
                            });
                            FocarNoTxt(txtQuantidade);
                            DialogMessage.MessageFullComButtonOkIconeDeInformacao("Não é possível vende um produto com o campo Quantidade com 0", "Aviso");
                        }
                        else if (txtQuantidade.Text.Length == 0)
                        {
                            FocarNoTxt(txtQuantidade);
                            DialogMessage.MessageFullComButtonOkIconeDeInformacao("Não é possível vende um produto com o campo Quantidade vazio.", "Aviso");
                        }
                        else
                        {
                            InstanciarProdutoRepositorio();
                            _produtoRepositorio.AdicionarProdutoParaVenda(ltvProdutos, txtCodigoDoProduto.Text, Convert.ToInt32(txtQuantidade.Text));
                            GetValorNaComanda();
                            LimparTxt(new List <TextBox>()
                            {
                                txtCodigoDoProduto
                            });
                            MostrarBotaoVendaSeExisteItensNaComanda();
                            EsconderGroupBoxOuMostrar(new List <GroupBox>()
                            {
                                gpbValorPorPeso
                            }, Esconder);
                            DesmarcarCheckBox();
                            LimparTxt(new List <TextBox>()
                            {
                                txtValorPago
                            });
                        }
                    }
                }
                else if ((Keys)e.KeyChar == Keys.Enter && txtCodigoDoProduto.Text.Length == 0)
                {
                    FocarNoTxt(txtValorPago);
                }
            }
            catch (CustomException erro)
            {
                DialogMessage.MessageFullComButtonOkIconeDeInformacao(erro.Message, "Aviso");
                LimparTxt(new List <TextBox>()
                {
                    txtCodigoDoProduto
                });
                FocarNoTxt(txtCodigoDoProduto);
            }
            catch (Exception erro)
            {
                DialogMessage.MessageComButtonOkIconeErro(erro.Message, "Erro");
            }
        }
Ejemplo n.º 11
0
 private void txtPesquisar_KeyPress(object sender, KeyPressEventArgs e)
 {
     ValidatorField.AllowOneSpaceTogether(e, sender);
     ValidatorField.IntegerAndLetter(e: e);
 }
Ejemplo n.º 12
0
 private void txtPesquisar_KeyPress(object sender, KeyPressEventArgs e)
 {
     ValidatorField.IntegerAndLetter(e: e);
 }
Ejemplo n.º 13
0
 private void txtComanda_KeyPress(object sender, KeyPressEventArgs e)
 {
     ValidatorField.IntegerAndLetter(e: e);
     ValidatorField.NoSpace(e);
 }