コード例 #1
0
        protected void btnConsultar_Click(object sender, EventArgs e)
        {
            using (RelatorioSolucaoEducacionalOferta relSO = new RelatorioSolucaoEducacionalOferta())
            {
                int IdTipoOferta         = string.IsNullOrWhiteSpace(cbxTipoOferta.SelectedValue) ? 0 : int.Parse(cbxTipoOferta.SelectedValue);
                int IdFormaAquisicao     = string.IsNullOrWhiteSpace(cbxFormaAquisicao.SelectedValue) ? 0 : int.Parse(cbxFormaAquisicao.SelectedValue);
                int IdSolucaoEducacional = string.IsNullOrWhiteSpace(cbxSolucaoEducacional.SelectedValue) ? 0 : int.Parse(cbxSolucaoEducacional.SelectedValue);

                IList <DTOSolucaoEducacionalOferta> lstRelatorio = relSO.ConsultarSolucaoEducacionalOferta(IdFormaAquisicao, IdTipoOferta, IdSolucaoEducacional);

                Session.Add("dsRelatorio", lstRelatorio);

                if (lstRelatorio != null && lstRelatorio.Count > 0)
                {
                    componenteGeracaoRelatorio.Visible = true;
                    ucFormatoSaidaRelatorio.Visible    = true;
                    btnConsultar.CssClass = "btn btn-default mostrarload";
                    Filtros.CssClass      = "panel-collapse collapse";
                }
                else
                {
                    componenteGeracaoRelatorio.Visible = false;
                    ucFormatoSaidaRelatorio.Visible    = false;
                }


                dgRelatorio.DataSource = lstRelatorio;

                WebFormHelper.ValidarVisibilidadeCamposGrid(dgRelatorio, chkListaCamposVisiveis.Items);
            }
        }
コード例 #2
0
        protected void cbxFormaAquisicao_SelectedIndexChanged(object sender, EventArgs e)
        {
            using (var relSeo = new RelatorioSolucaoEducacionalOferta())
            {
                var idForma = string.IsNullOrWhiteSpace(cbxFormaAquisicao.SelectedValue)
                    ? 0
                    : int.Parse(cbxFormaAquisicao.SelectedValue);

                var lista = relSeo.ObterSolucaoEducacionalPorFormaAquisicao(null, idForma);

                ViewState["_SE"] = Helpers.Util.ObterListaAutocomplete(lista);
            }
        }
コード例 #3
0
        protected void Page_Load(object sender, EventArgs e)
        {
            if (IsPostBack)
            {
                return;
            }

            using (RelatorioSolucaoEducacionalOferta relSEO = new RelatorioSolucaoEducacionalOferta())
            {
                WebFormHelper.PreencherLista(relSEO.ObterTipoOfertaTodos(), cbxTipoOferta, true, false);
                WebFormHelper.PreencherLista(relSEO.ObterFormaAquisicaoTodos(), cbxFormaAquisicao, true, false);
            }
        }
コード例 #4
0
        protected void cbxFormaAquisicao_SelectedIndexChanged(object sender, EventArgs e)
        {
            using (RelatorioSolucaoEducacionalOferta relSEO = new RelatorioSolucaoEducacionalOferta())
            {
                int idForma     = string.IsNullOrWhiteSpace(cbxFormaAquisicao.SelectedValue) ? 0 : int.Parse(cbxFormaAquisicao.SelectedValue);
                int ufPermitida = new BMUsuario().ObterUFLogadoSeGestor();
                var lista       = relSEO.ObterSolucaoEducacionalPorFormaAquisicao(idForma);
                if (ufPermitida > 0)
                {
                    lista = lista.Where(x => x.ListaPermissao.Any(p => p.Uf != null || p.Uf.ID == ufPermitida)).ToList();
                }

                WebFormHelper.PreencherLista(lista, cbxSolucaoEducacional, true, false);
            }
        }
コード例 #5
0
        protected void Page_Load(object sender, EventArgs e)
        {
            if (IsPostBack)
            {
                return;
            }

            using (var relSeo = new RelatorioSolucaoEducacionalOferta())
            {
                WebFormHelper.PreencherLista(relSeo.ObterTipoOfertaTodos(), cbxTipoOferta, true);
                WebFormHelper.PreencherLista(relSeo.ObterFormaAquisicaoTodos(), cbxFormaAquisicao, true);

                var lista = relSeo.ObterSolucaoEducacionalPorFormaAquisicao();

                ListBoxesUFResponsavel.PreencherItens(relSeo.ObterUFTodos(), "ID", "Nome");

                ViewState["_SE"] = Helpers.Util.ObterListaAutocomplete(lista);
            }

            //Task #416 - revisão de regras de visualização das UFs
            var ufs = new ManterUf().ObterTodosUf();

            WebFormHelper.PreencherLista(ufs, cbxUF);
        }
コード例 #6
0
        protected void btnConsultar_Click(object sender, EventArgs e)
        {
            using (var relSo = new RelatorioSolucaoEducacionalOferta())
            {
                var idTipoOferta = string.IsNullOrWhiteSpace(cbxTipoOferta.SelectedValue)
                    ? null
                    : (int.Parse(cbxTipoOferta.SelectedValue) == 0
                        ? null
                        : (int?)int.Parse(cbxTipoOferta.SelectedValue));

                var idFormaAquisicao = string.IsNullOrWhiteSpace(cbxFormaAquisicao.SelectedValue)
                    ? null
                    : (int.Parse(cbxFormaAquisicao.SelectedValue) == 0
                        ? null
                        : (int?)int.Parse(cbxFormaAquisicao.SelectedValue));

                var ufsResponsavel = ListBoxesUFResponsavel.RecuperarIdsSelecionados <int>();

                var idSolucaoEducacional = string.IsNullOrWhiteSpace(txtSolucaoEducacional.Text)
                    ? null
                    : (int.Parse(txtSolucaoEducacional.Text) == 0 ? null : (int?)int.Parse(txtSolucaoEducacional.Text));

                //Task #416 - revisão de regras de visualização das UFs
                var pUf = string.IsNullOrWhiteSpace(cbxUF.SelectedValue) ? null : (int.Parse(cbxUF.SelectedValue) == 0 ? null : (int?)int.Parse(cbxUF.SelectedValue));

                var lstRelatorio = relSo.ConsultarSolucaoEducacionalOferta(idFormaAquisicao, idTipoOferta,
                                                                           idSolucaoEducacional, pUf, ufsResponsavel);

                Session.Add("dsRelatorio", lstRelatorio);

                if (lstRelatorio != null && lstRelatorio.Count > 0)
                {
                    // Converter os resultados em dados totalizadores.
                    var totalizadores = new List <DTOTotalizador>
                    {
                        TotalizadorUtil.GetTotalizador(lstRelatorio, "Total de registros (soluções educacionais)",
                                                       "ID_SolucaoEducacional", enumTotalizacaoRelatorio.ContarDistintos, false),
                        TotalizadorUtil.GetTotalizador(lstRelatorio,
                                                       "Total da quantidade de ofertas separadas por tipo de oferta", "TipoOferta",
                                                       enumTotalizacaoRelatorio.Contar)
                    };

                    ucTotalizadorRelatorio.PreencherTabela(totalizadores);

                    componenteGeracaoRelatorio.Visible = true;
                    ucFormatoSaidaRelatorio.Visible    = true;
                    btnConsultar.CssClass = "btn btn-default mostrarload";
                    Filtros.CssClass      = "panel-collapse collapse";
                }
                else
                {
                    ucTotalizadorRelatorio.LimparTotalizadores();
                    componenteGeracaoRelatorio.Visible = false;
                    ucFormatoSaidaRelatorio.Visible    = false;
                }


                dgRelatorio.DataSource = lstRelatorio;

                WebFormHelper.ValidarVisibilidadeCamposGrid(dgRelatorio, chkListaCamposVisiveis.Items);
            }
        }