예제 #1
0
        protected void Page_Load(object sender, EventArgs e)
        {
            if (clienteSelecionado == null)
            {
                clienteSelecionado = Master.getClienteSelecionado();
            }
            if (clienteSelecionado != null)
            {
                labDadosCliente.Text = "<b>Nome: </b>" + clienteSelecionado.getNome() + " <b> Documento: </b>" + clienteSelecionado.getCPFCNPJ();
            }

            if (aparelho == null)
            {
                aparelho = Master.getAparelhoAtual();
            }

            if (aparelho != null)
            {
                labDadosCAparelho.Text = aparelho.ToStringWeb();
            }
        }
예제 #2
0
        protected void Page_Load(object sender, EventArgs e)
        {
            //CheckBox1.CheckedChanged += new System.EventHandler(CheckBox1_CheckedChanged);

            if (clienteSelecionado == null)
            {
                clienteSelecionado = Master.getClienteSelecionado();
            }
            if (clienteSelecionado != null)
            {
                labDadosCliente.Text = "<b>Nome: </b>" + clienteSelecionado.getNome() + " <b> Documento: </b>" + clienteSelecionado.getCPFCNPJ();
            }
            //Informações para os combos
            if (!IsPostBack)
            {
                montaCombVoltagem();
            }

            if (CombTipo.Items.Count == 0)
            {
                montaCombs(CombTipo, tipoAparelhos.getListaTiposAparelho());
            }

            if (CombMarca.Items.Count == 0)
            {
                montaCombs(CombMarca, marcas.getListaTiposMarcas());
            }

            if (CombAtendimento.Items.Count == 0)
            {
                montaCombs(CombAtendimento, atendiemnto.getListaAtendimento());
                CombAtendimento.Items.FindByValue("1");
            }
            if (combLojas.Items.Count == 0)
            {
                montaCombs(combLojas, lojas.getListaLojas());
            }

            if (combEstoque.Items.Count == 0)
            {
                montaCombs(combEstoque, estoque.getListaEstoque());
                combEstoque.Items.FindByValue("1"); // Como padrão deve ser balcão
                if (Master.getClienteSelecionado() != null)
                {
                    if (Master.getClienteSelecionado().getPessoaJuridica() == false)
                    {
                        combEstoque.Enabled = false;
                    }
                    else
                    {
                        combEstoque.Enabled = true;
                    }
                }
            }
            //Preenchendo os dados de aparelho caso seja uma OS já aberta.

            if (Master.getAparelhoAtual() != null)
            {
                aparelho = Master.getAparelhoAtual();
                if (txtDefeito.Text.Equals(""))
                {
                    preencherdados();
                }
            }
        }
예제 #3
0
        private void preencheDados()
        {
            LabCod0.Text     = Convert.ToString(clienteSelecionado.getCod());
            txtNome.Text     = clienteSelecionado.getNome();
            txtEndereco.Text = clienteSelecionado.getEnd();

            String doc = clienteSelecionado.getCPFCNPJ();

            doc = doc.Replace(".", "");
            doc = doc.Replace("-", "");
            doc = doc.Replace("/", "");

            txtCNPJ.Text = doc;

            TxtInsc.Text   = clienteSelecionado.getIE();
            TxtBairro.Text = clienteSelecionado.getBairro();
            TxtCEP.Text    = clienteSelecionado.getCEP();
            //Tratamento para não encontrar UF na lista
            String UF = clienteSelecionado.getUF().ToUpper().Trim();

            if (TxtUF.Items.Contains(new ListItem()
            {
                Text = UF
            }))
            {
                TxtUF.Text = clienteSelecionado.getUF().ToUpper().Trim();
                new Uteis().listaCidades(TxtUF.Text, TxtCidade);
                if (TxtCidade.Items.Contains(new ListItem()
                {
                    Value = clienteSelecionado.getCidade(), Text = clienteSelecionado.getCidade()
                }))
                {
                    TxtCidade.Text = clienteSelecionado.getCidade();
                }
                Limite         = Convert.ToString(clienteSelecionado.getLimite());
                labLimite.Text = "Limite: R$ " + Limite;
            }
            else
            {
                TxtUF.Text     = "";
                TxtCidade.Text = "";
            }

            TxtNascimento.Text = Convert.ToString(clienteSelecionado.getDataNascimento(), culture).Replace("00:00:00", "");
            TxtCadastro.Text   = Convert.ToString(clienteSelecionado.getDataCadastro(), culture).Replace("00:00:00", "");
            TxtReferencia.Text = clienteSelecionado.getReferencia();
            TxtTelefone.Text   = clienteSelecionado.getTelefone();
            String opCliente = clienteSelecionado.getOperadora().ToUpper();

            if (opCliente == "OI" || opCliente == "TIM" || opCliente == "CLARO" || opCliente == "VIVO")
            {
                CobOperadora.Text = clienteSelecionado.getOperadora().ToUpper();
            }
            txtEmail.Text   = clienteSelecionado.getEmail();
            txtPai.Text     = clienteSelecionado.getPai();
            TxtMae.Text     = clienteSelecionado.getMae();
            TxtEndPais.Text = clienteSelecionado.getEndPais();
            ativaFiliacao(!clienteSelecionado.getPessoaJuridica()); // Deve-se colocar invertido pois o mesmo metódo é que verifica qual status anterior.
            ativaMascara();
            this.labCapital.Text = new UteisWeb().montaTab(clienteSelecionado.getInformacoesdeCredito(), "Informações financeira", System.Drawing.Color.AliceBlue);
        }