Ejemplo n.º 1
0
        private bool ValidarCampos()
        {
            Boolean Valido    = true;
            String  MSG_ERROR = String.Empty;

            EmpresaModel        oModel     = new EmpresaModel();
            List <EmpresaModel> oListModel = new List <EmpresaModel>();
            EmpresaNegocios     oNegocios  = new EmpresaNegocios();

            if (!UTIL.UTIL.ValidarEmail(txtEmail.Text.Trim()))
            {
                MSG_ERROR += "- Email não preenchido ou inválido. <br />";
            }
            else if (string.IsNullOrEmpty(Empresa_Id.Value))
            {
                //Valida se email já cadastrado
                oModel.CNPJ  = null;
                oModel.Email = txtEmail.Text.Trim();
                oListModel   = oNegocios.Listar(oModel);
                if (oListModel.Count > 0)
                {
                    MSG_ERROR += "- Email já cadastrado. <br />";
                }
            }

            if (MSG_ERROR.Length > 0)
            {
                ScriptManager.RegisterStartupScript(this.Page, this.GetType(), "CamposObrigatorios", "$(document).MensagemModal(3,'<strong>Informações obrigatórias:</strong><br/>" + MSG_ERROR + "');", true);
                Valido = false;
            }

            return(Valido);
        }
Ejemplo n.º 2
0
        private void DetalharObj()
        {
            EmpresaModel        oModel     = new EmpresaModel();
            List <EmpresaModel> oListModel = new List <EmpresaModel>();
            EmpresaNegocios     oNegocios  = new EmpresaNegocios();

            oModel.CNPJ = System.Configuration.ConfigurationManager.AppSettings["CNPJ_EMPRESA"].ToString();
            oListModel  = oNegocios.Listar(oModel);
            if (oListModel.Count > 0)
            {
                oModel = oListModel[0];

                Empresa_Id.Value    = oModel.Codigo.ToString();
                txtRazaoSocial.Text = oModel.RazaoSocial;

                if (oModel.NomeFantasia != null)
                {
                    txtNomeFantasia.Text = oModel.NomeFantasia;
                }

                txtCNPJ.Text           = oModel.CNPJ;
                txtUF.Text             = oModel.UF;
                txtCidade.Text         = oModel.Municipio;
                txtBairro.Text         = oModel.Bairro;
                txtEndereco.Text       = oModel.Endereco;
                txtNumEndereco.Text    = oModel.Numero;
                txtComplemento.Text    = oModel.Complemento;
                txtTelefone.Text       = oModel.Telefone;
                txtCelular.Text        = oModel.Celular;
                txtEmail.Text          = oModel.Email;
                txtEmail_Original.Text = oModel.Email;
            }
        }
Ejemplo n.º 3
0
        protected void Page_Load(object sender, EventArgs e)
        {
            if (!IsPostBack)
            {
                try
                {
                    EmpresaNegocios oNegocios = new EmpresaNegocios();

                    List <EmpresaModel> oList = new List <EmpresaModel>();
                    oList = oNegocios.Listar(new EmpresaModel());
                    if (oList.Count > 0)
                    {
                        btnNovo.Visible = false;
                        Rpt.DataSource  = oList;
                        Rpt.DataBind();
                    }
                }
                catch (Exception ex)
                {
                    ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "EROOR", "$(document).MensagemModal(3,'Ocorreu um erro inesperado! Mensagem = " + new JavaScriptSerializer().Serialize(ex.Message.ToString()) + "');", true);
                }
            }
        }