Пример #1
0
        protected void btnBuscar_Click(object sender, EventArgs e)
        {
            Codigo();
            string             Cnpj = txtBuscaCnpj.Text;
            mFornecedor        M    = new mFornecedor();
            List <pFornecedor> Lc   = M.SelFornecedor(Cnpj);

            if (Lc.Count == 0)
            {
                Msg("Fornecedor Inexistente !"); return;
            }
            else
            {
                txtRazaoSocial.Text   = Lc[0].Razao_Social;
                txtCnpj.Text          = Lc[0].Cnpj;
                txtTelefone.Text      = Lc[0].Telefone;
                txtEmail.Text         = Lc[0].Email;
                txtTipoPeca.Text      = Lc[0].Tipo_Peca;
                txtEstado.Text        = Lc[0].Estado;
                txtUf.Text            = Lc[0].Uf;
                txtLougradouro.Text   = Lc[0].Lougradouro;
                txtComplemento.Text   = Lc[0].Complemento;
                txtBairro.Text        = Lc[0].Bairro;
                txtCep.Text           = Lc[0].Cep;
                lblCodFornecedor.Text = Lc[0].Cod_Fornecedor.ToString();
            }
        }
Пример #2
0
        private void ListarGrid()
        {
            mFornecedor        M  = new mFornecedor();
            List <pFornecedor> Lc = M.SelFornecedor();

            gdvFornecedor.DataSource = Lc;
            gdvFornecedor.DataBind();
        }
Пример #3
0
 public void ListaFornecedor()
 {
     mFornecedor M = new mFornecedor();
     List<pFornecedor> Lc = M.SelFornecedor();
     ddlFornecedor.DataTextField = "Razao_Social";
     ddlFornecedor.DataValueField = "Cod_Fornecedor";
     ddlFornecedor.DataSource = Lc;
     ddlFornecedor.DataBind();
 }
Пример #4
0
 protected void btnExcluir_Click(object sender, EventArgs e)
 {
     Msg("Excluido com sucesso!");
     string Cnpj = txtBuscaCnpj.Text;
     mFornecedor M = new mFornecedor();
     M.ExcFornecedor(Cnpj);
     LimparContatos();
     Codigo();
 }
Пример #5
0
        public void ListaFornecedor()
        {
            mFornecedor        M  = new mFornecedor();
            List <pFornecedor> Lc = M.SelFornecedor();

            ddlFornecedor.DataTextField  = "Razao_Social";
            ddlFornecedor.DataValueField = "Cod_Fornecedor";
            ddlFornecedor.DataSource     = Lc;
            ddlFornecedor.DataBind();
        }
Пример #6
0
        protected void btnExcluir_Click(object sender, EventArgs e)
        {
            Msg("Excluido com sucesso!");
            string      Cnpj = txtBuscaCnpj.Text;
            mFornecedor M    = new mFornecedor();

            M.ExcFornecedor(Cnpj);
            LimparContatos();
            Codigo();
        }
Пример #7
0
 protected void btnAlterar_Click(object sender, EventArgs e)
 {
     Msg("Alterado com sucesso!");
     string Cnpj = txtBuscaCnpj.Text;
     pFornecedor P = new pFornecedor();
     P.Razao_Social = txtRazaoSocial.Text;
     P.Cnpj = txtCnpj.Text;
     P.Telefone = txtTelefone.Text;
     P.Email = txtEmail.Text;
     P.Tipo_Peca = txtTipoPeca.Text;
     P.Estado = txtEstado.Text;
     P.Uf = txtUf.Text;
     P.Lougradouro = txtLougradouro.Text;
     P.Complemento = txtComplemento.Text;
     P.Bairro = txtBairro.Text;
     P.Cep = txtCep.Text;
     mFornecedor M = new mFornecedor();
     M.AtuFornecedor(P);
     LimparContatos();
 }
Пример #8
0
        protected void btnAlterar_Click(object sender, EventArgs e)
        {
            Msg("Alterado com sucesso!");
            string      Cnpj = txtBuscaCnpj.Text;
            pFornecedor P    = new pFornecedor();

            P.Razao_Social = txtRazaoSocial.Text;
            P.Cnpj         = txtCnpj.Text;
            P.Telefone     = txtTelefone.Text;
            P.Email        = txtEmail.Text;
            P.Tipo_Peca    = txtTipoPeca.Text;
            P.Estado       = txtEstado.Text;
            P.Uf           = txtUf.Text;
            P.Lougradouro  = txtLougradouro.Text;
            P.Complemento  = txtComplemento.Text;
            P.Bairro       = txtBairro.Text;
            P.Cep          = txtCep.Text;
            mFornecedor M = new mFornecedor();

            M.AtuFornecedor(P);
            LimparContatos();
        }
Пример #9
0
        protected void btnBuscar_Click(object sender, EventArgs e)
        {
            Codigo();
            string Cnpj = txtBuscaCnpj.Text;
            mFornecedor M = new mFornecedor();
            List<pFornecedor> Lc = M.SelFornecedor(Cnpj);
            if (Lc.Count == 0) { Msg("Fornecedor Inexistente !"); return; } else {
            txtRazaoSocial.Text = Lc[0].Razao_Social;
            txtCnpj.Text = Lc[0].Cnpj;
            txtTelefone.Text = Lc[0].Telefone;
            txtEmail.Text = Lc[0].Email;
            txtTipoPeca.Text = Lc[0].Tipo_Peca;
            txtEstado.Text = Lc[0].Estado;
            txtUf.Text = Lc[0].Uf;
            txtLougradouro.Text = Lc[0].Lougradouro;
            txtComplemento.Text = Lc[0].Complemento;
            txtBairro.Text = Lc[0].Bairro;
            txtCep.Text = Lc[0].Cep;
            lblCodFornecedor.Text = Lc[0].Cod_Fornecedor.ToString();

            }
        }
Пример #10
0
 protected void btnEnviar_Click(object sender, EventArgs e)
 {
     if (txtRazaoSocial.Text == string.Empty)
     {
         Msg("Campo obrigatório em branco!");
         txtRazaoSocial.Focus();
         return;
     }
     else if (txtCnpj.Text == string.Empty)
     {
         Msg("Campo obrigatório em branco!");
         txtCnpj.Focus();
         return;
     }
     else if (txtTelefone.Text == string.Empty)
     {
         Msg("Campo obrigatório em branco!");
         txtTelefone.Focus();
         return;
     }
     else if (txtEmail.Text == string.Empty)
     {
         Msg("Campo obrigatório em branco!");
         txtEmail.Focus();
         return;
     }
     else if (txtTipoPeca.Text == string.Empty)
     {
         Msg("Campo obrigatório em branco!");
         txtTipoPeca.Focus();
         return;
     }
     else if (txtEstado.Text == string.Empty)
     {
         Msg("Campo obrigatório em branco!");
         txtEstado.Focus();
         return;
     }
     else if (txtUf.Text == string.Empty)
     {
         Msg("Campo obrigatório em branco!");
         txtUf.Focus();
         return;
     }
     else if (txtLougradouro.Text == string.Empty)
     {
         Msg("Campo obrigatório em branco!");
         txtLougradouro.Focus();
         return;
     }
     else if (txtComplemento.Text == string.Empty)
     {
         Msg("Campo obrigatório em branco!");
         txtComplemento.Focus();
         return;
     }
     else if (txtBairro.Text == string.Empty)
     {
         Msg("Campo obrigatório em branco!");
         txtBairro.Focus();
         return;
     }
     else if (txtCep.Text == string.Empty)
     {
         Msg("Campo obrigatório em branco!");
         txtCep.Focus();
         return;
     }
     else if (ValidaCNPJ.IsCnpj(txtCnpj.Text))
     {
         Msg("Cadastrado Com Sucesso!");
         pFornecedor P = new pFornecedor();
         P.Razao_Social = txtRazaoSocial.Text;
         P.Cnpj         = txtCnpj.Text;
         P.Telefone     = txtTelefone.Text;
         P.Email        = txtEmail.Text;
         P.Tipo_Peca    = txtTipoPeca.Text;
         P.Estado       = txtEstado.Text;
         P.Uf           = txtUf.Text;
         P.Lougradouro  = txtLougradouro.Text;
         P.Complemento  = txtComplemento.Text;
         P.Bairro       = txtBairro.Text;
         P.Cep          = txtCep.Text;
         mFornecedor M = new mFornecedor();
         M.InsFornecedor(P);
         LimparContato();
     }
     else
     {
         Msg("O número é um CNPJ Inválido !");
     }
 }
Пример #11
0
        protected void btnEnviar_Click(object sender, EventArgs e)
        {
            if (txtRazaoSocial.Text == string.Empty)
            {
                Msg("Campo obrigatório em branco!");
                txtRazaoSocial.Focus();
                return;
            }
            else if (txtCnpj.Text == string.Empty)
            {
                Msg("Campo obrigatório em branco!");
                txtCnpj.Focus();
                return;
            }
            else if (txtTelefone.Text == string.Empty)
            {
                Msg("Campo obrigatório em branco!");
                txtTelefone.Focus();
                return;
            }
            else if (txtEmail.Text == string.Empty)
            {
                Msg("Campo obrigatório em branco!");
                txtEmail.Focus();
                return;
            }
            else if (txtTipoPeca.Text == string.Empty)
            {
                Msg("Campo obrigatório em branco!");
                txtTipoPeca.Focus();
                return;
            }
            else if (txtEstado.Text == string.Empty)
            {
                Msg("Campo obrigatório em branco!");
                txtEstado.Focus();
                return;
            }
            else if (txtUf.Text == string.Empty)
            {
                Msg("Campo obrigatório em branco!");
                txtUf.Focus();
                return;
            }
            else if (txtLougradouro.Text == string.Empty)
            {
                Msg("Campo obrigatório em branco!");
                txtLougradouro.Focus();
                return;
            }
            else if (txtComplemento.Text == string.Empty)
            {
                Msg("Campo obrigatório em branco!");
                txtComplemento.Focus();
                return;
            }
            else if (txtBairro.Text == string.Empty)
            {
                Msg("Campo obrigatório em branco!");
                txtBairro.Focus();
                return;
            }
            else if (txtCep.Text == string.Empty)
            {
                Msg("Campo obrigatório em branco!");
                txtCep.Focus();
                return;
            }
            else if (ValidaCNPJ.IsCnpj(txtCnpj.Text))
            {
                Msg("Cadastrado Com Sucesso!");
                pFornecedor P = new pFornecedor();
                P.Razao_Social = txtRazaoSocial.Text;
                P.Cnpj = txtCnpj.Text;
                P.Telefone = txtTelefone.Text;
                P.Email = txtEmail.Text;
                P.Tipo_Peca = txtTipoPeca.Text;
                P.Estado = txtEstado.Text;
                P.Uf = txtUf.Text;
                P.Lougradouro = txtLougradouro.Text;
                P.Complemento = txtComplemento.Text;
                P.Bairro = txtBairro.Text;
                P.Cep = txtCep.Text;
                mFornecedor M = new mFornecedor();
                M.InsFornecedor(P);
                LimparContato();
            }
            else
            {
                Msg("O número é um CNPJ Inválido !");

            }
        }
Пример #12
0
 private void ListarGrid()
 {
     mFornecedor M = new mFornecedor();
     List<pFornecedor> Lc = M.SelFornecedor();
     gdvFornecedor.DataSource = Lc;
     gdvFornecedor.DataBind();
 }