Exemplo n.º 1
0
    protected void Page_Load(object sender, EventArgs e)
    {
        ScriptManager sm = ScriptManager.GetCurrent(this);

        if (sm != null)
        {
            sm.Scripts.Add(new ScriptReference(ArquivoJS.MsgConfirmExclusao));
        }

        if (!IsPostBack)
        {
            string message = __SessionWEB.PostMessages;
            if (!String.IsNullOrEmpty(message))
            {
                _lblMessage.Text = message;
            }
            _dgvGrupo.PageSize = ApplicationWEB._Paginacao;

            UCComboSistemas1.Inicialize("Sistema *");
            UCComboSistemas1._ShowSelectMessage = true;
            UCComboSistemas1._Load();
            UCComboSistemas1._ValidationGroup = "Pesquisa";

            VerificaBusca();

            Page.Form.DefaultButton = _btnPesquisa.UniqueID;
            Page.Form.DefaultFocus  = UCComboSistemas1._Combo.ClientID;

            divPesquisa.Visible  = __SessionWEB.__UsuarioWEB.GrupoPermissao.grp_consultar;
            _btnPesquisa.Visible = __SessionWEB.__UsuarioWEB.GrupoPermissao.grp_consultar;
            _btnNovo.Visible     = __SessionWEB.__UsuarioWEB.GrupoPermissao.grp_inserir;
        }
    }
Exemplo n.º 2
0
    protected void Page_Load(object sender, EventArgs e)
    {
        ScriptManager sm = ScriptManager.GetCurrent(this);

        if (sm != null)
        {
            sm.Scripts.Add(new ScriptReference(ArquivoJS.CamposData));
            sm.Scripts.Add(new ScriptReference(ArquivoJS.UiAriaTabs));
            sm.Scripts.Add(new ScriptReference(ArquivoJS.Tabs));
            sm.Scripts.Add(new ScriptReference(ArquivoJS.PastaScriptRaiz + "Telas/jsModuloSeguranca.js"));
        }

        if (!IsPostBack)
        {
            _txtDtInicio.Text = DateTime.Now.ToString("dd/MM/yyyy");
            _txtDtFinal.Text  = DateTime.Now.ToString("dd/MM/yyyy");

            _dgvLog.PageSize = ApplicationWEB._Paginacao;

            UCComboSistemas1.Inicialize("Sistema");
            UCComboSistemas1._ShowSelectMessage = true;
            UCComboSistemas1._EnableValidator   = false;
            UCComboSistemas1._Load();

            _LoadTipoLog();

            VerificaBusca();

            Page.Form.DefaultButton = _btnPesquisa.UniqueID;
        }
    }
Exemplo n.º 3
0
    protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack)
        {
            try
            {
                UCComboSistemas1._ShowSelectMessage = true;
                UCComboSistemas1.Inicialize("Sistema *");
                UCComboSistemas1._Load();
                UCComboVisao1._ShowSelectMessage = true;
                UCComboVisao1.Inicialize("Visão *");

                UCComboGrupo1._ShowSelectMessage = true;
                UCComboGrupo1.Inicialize("Copiar permissões de outro grupo?");
                UCComboGrupo1._EnableValidator     = false;
                UCComboGrupo1._SelecionaAutomatico = false;
                UCComboGrupo1._Load(-1, -1);

                UCComboGrupo2._ShowSelectMessage = true;
                UCComboGrupo2.Inicialize("Associar usuários de outro grupo?");
                UCComboGrupo2._EnableValidator     = false;
                UCComboGrupo2._SelecionaAutomatico = false;
                UCComboGrupo2._Load(-1, -1);

                UCComboGrupo1._Combo.Enabled = false;
                UCComboGrupo2._Combo.Enabled = false;
            }
            catch (Exception ex)
            {
                ApplicationWEB._GravaErro(ex);
                _lblMessage.Text = UtilBO.GetErroMessage("Erro ao tentar carregar o sistema.", UtilBO.TipoMensagem.Erro);
            }

            if ((PreviousPage != null) && (PreviousPage.IsCrossPagePostBack))
            {
                _LoadFromEntity(PreviousPage.EditItem);
                _chkBloqueado.Visible = true;
            }
            else
            {
                _chkBloqueado.Visible   = false;
                _chkBloqueado.Checked   = false;
                this._btnSalvar.Visible = __SessionWEB.__UsuarioWEB.GrupoPermissao.grp_inserir;
            }

            Page.Form.DefaultButton = _btnSalvar.UniqueID;
            Page.Form.DefaultFocus  = UCComboSistemas1._Combo.ClientID;
        }

        UCComboSistemas1.OnSelectedIndexChange = UCComboSistemas1__IndexChanged;
        UCComboVisao1.OnSelectedIndexChange    = UCComboVisao1__IndexChanged;
    }
Exemplo n.º 4
0
    /// <summary>
    /// Verifica se tem busca salva na sessão e realiza automaticamente, caso positivo.
    /// </summary>
    private void VerificaBusca()
    {
        if (__SessionWEB.BuscaRealizada.PaginaBusca == Pagina.AreaAdm_Log)
        {
            // Recuperar busca realizada e pesquisar automaticamente
            string valor;

            __SessionWEB.BuscaRealizada.Filtros.TryGetValue("sistema", out valor);
            if (!string.IsNullOrEmpty(valor) && valor != (-1).ToString())
            {
                UCComboSistemas1.SetaEventoSource();
                UCComboSistemas1._Combo.DataBind();
                UCComboSistemas1._Combo.SelectedValue = valor;
            }

            __SessionWEB.BuscaRealizada.Filtros.TryGetValue("acao", out valor);
            _ddlTipoLog.SelectedValue = valor;

            __SessionWEB.BuscaRealizada.Filtros.TryGetValue("login", out valor);
            _txtLogin.Text = valor;

            __SessionWEB.BuscaRealizada.Filtros.TryGetValue("DataInicio", out valor);
            if (!string.IsNullOrEmpty(valor))
            {
                _txtDtInicio.Text = Convert.ToDateTime(valor).ToString("dd/MM/yyyy");
            }

            __SessionWEB.BuscaRealizada.Filtros.TryGetValue("DataTermino", out valor);
            if (!string.IsNullOrEmpty(valor))
            {
                _txtDtFinal.Text = Convert.ToDateTime(valor).ToString("dd/MM/yyyy");
            }

            _Pesquisar();
        }
        else
        {
            fdsResultado.Visible = false;
        }
    }
Exemplo n.º 5
0
    /// <summary>
    /// Verifica se tem busca salva na sessão e realiza automaticamente, caso positivo.
    /// </summary>
    private void VerificaBusca()
    {
        if (__SessionWEB.BuscaRealizada.PaginaBusca == Pagina.AreaAdm_Grupo)
        {
            // Recuperar busca realizada e pesquisar automaticamente
            string valor;

            __SessionWEB.BuscaRealizada.Filtros.TryGetValue("sis_id", out valor);

            if (!string.IsNullOrEmpty(valor) && Convert.ToInt32(valor) > 0)
            {
                UCComboSistemas1.SetaEventoSource();
                UCComboSistemas1._Combo.DataBind();
                UCComboSistemas1._Combo.SelectedValue = valor;
            }

            _Pesquisar();
        }
        else
        {
            fdsResultados.Visible = false;
        }
    }