当您使用Navigation->时,如何将数据源传递给本地报告?去报道?

时间:2014-06-27 16:16:02

标签: c# reporting-services sql-server-2012 reporting

我们正在从Reporting Services远程转移到本地,因为我已经成功地将rdl文件转换为rdlc并将报告查看器更改为本地处理并通过以下代码传递数据源:

  ReportDataSource data = new ReportDataSource("PARAGAINSA", new InventarioRptCs().Selecciona_Saldos_Articulo(locid,
            BodId,depid,FamId,NBid,imId,desde,hasta));
  ReportViewer1.LocalReport.DataSources.Clear();
  ReportViewer1.LocalReport.DataSources.Add(data);
  ReportViewer1.LocalReport.Refresh();

效果很好,我还遇到了一些报告,这些报告有一些子报告将数据源传递给子报告,我一直在这样做:

ReportViewer1.LocalReport.SubreportProcessing += new SubreportProcessingEventHandler(SubReporteHandler);

 private void SubReporteHandler(object sender, SubreportProcessingEventArgs e)
{
    int im_id =  Convert.ToInt32(e.Parameters[1].Values[0].ToString());
    int loc_id = Convert.ToInt32(e.Parameters[0].Values[0]);
    e.DataSources.Add(new ReportDataSource("PARAGAINSA", new InventarioRptCs().Selecciona_Saldos_Articulo_Det(loc_id,im_id)));
}

它也很有用,所以我很高兴继续,直到我找到一个包含子报表的报告,并且子报告在其中一个字段中有这个:enter image description here

当我点击作为其他报告的导航链接的字段时,我得到了这个 尚未为数据源'datasource'提供数据源实例。

所以我的问题是:无论如何我可以将数据源传递到通过导航调用的子报告中的报告 - >去报道?如果是这样的话?

我正在使用VS 2013,使用SQL Server 2012

感谢您的阅读,请原谅我的英语而不是我的第一句话

1 个答案:

答案 0 :(得分:0)

由于我无法找到另一种方法来解决这个问题,我做了以下工作,尝试模拟报告之间的导航(据我所知)处理模式远程,

首先在rdlc文件中添加了' Ver masincion'在作为其他报表的链接的列的title属性中,并将Color设置为蓝色以为其指定链接样式

step

我不得不添加工具提示(rendes to title属性)因为我无法找到另一种方法来选择我想要的那些特定单元格

然后用css样式将Cursor设置为指针

 [title="Ver mas informacion"] {
        cursor:pointer;
    }

然后使用jquery来处理click事件的脚本,该事件将我需要的值作为参数传递到另一个报告,导航到另一个报告并通过URL传递参数

 $(window).load(function () {
        $(document).on('click', '[title="Ver mas informacion"]', function () {
            var locId = $('[id$="ddLocal"]').val();
            var Fecha = $(this).parent().parent()[0].childNodes[2].childNodes[0].innerHTML;
            var TT_Id = $(this).parent().parent()[0].childNodes[9].childNodes[0].innerHTML;
            var Ap_Id = $(this).parent().parent()[0].childNodes[10].childNodes[0].innerHTML;
            window.open(window.location.origin + config.base + '/Reportes/RptSubViewer.aspx?Sub=Doc&Loc=' + locId + '&Fecha=' + Fecha + '&AP=' + Ap_Id + '&TT_Id=' + TT_Id);
        });

    });

然后在其他webform上我只添加了一个reportviewer和后面的代码

  protected void Page_Load(object sender, EventArgs e)
{
    if (!Page.IsPostBack)
    {
        if (Request.QueryString["Sub"] == "Doc")
        {
            string _loc = Request.QueryString["Loc"];
            string _fecha = Request.QueryString["Fecha"];
            string _Ap_Id = Request.QueryString["AP"];
            string _TT_Id = Request.QueryString["TT_Id"];
            int loc_id = 0, TT_id = 0, Ap_Id = 0;
            CultureInfo provider = new CultureInfo("en-US");
            DateTime Fecha = DateTime.Now;
            if (!string.IsNullOrEmpty(_loc))
                loc_id = Convert.ToInt32(_loc);
            if (!string.IsNullOrEmpty(_fecha))
                Fecha = DateTime.ParseExact(_fecha,"dd/MMM/yyyy",provider);
            if (!string.IsNullOrEmpty(_Ap_Id))
                Ap_Id = Convert.ToInt32(_Ap_Id);
            if (!string.IsNullOrEmpty(_TT_Id))
                TT_id = Convert.ToInt32(_TT_Id);

            if (TT_id == 14 || TT_id == 15 || TT_id == 21)
            {

                List<ReportParameter> paramList = new List<ReportParameter>();
                paramList.Add(new ReportParameter("LocId", _loc));
                paramList.Add(new ReportParameter("Fecha", Fecha.ToShortDateString()));
                paramList.Add(new ReportParameter("TT_Id", _TT_Id));
                paramList.Add(new ReportParameter("TT_Doc", _Ap_Id));
                ReportDataSource data = new ReportDataSource("ARACLDS", new InventarioRptCs().Selecciona_Saldos_Articulo_Doc(loc_id, Fecha, TT_id, Ap_Id).ToList());
                RVSubNav.LocalReport.ReportPath = "Rdlcs\\ReporteKardexDoc.rdlc";
                RVSubNav.Visible = true;
                RVSubNav.LocalReport.SetParameters(paramList);
                RVSubNav.LocalReport.DataSources.Clear();
                RVSubNav.LocalReport.DataSources.Add(data);
                RVSubNav.LocalReport.Refresh();
            }
        }

    }
}

不确定最好的方法,但它完成了工作