37 lines
816 B
C#
37 lines
816 B
C#
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using BeWo.Report.ReportObjects;
|
|
using BeWo.Report;
|
|
using DevExpress.XtraReports.UI;
|
|
using System.Data;
|
|
using BS.Shared.Core;
|
|
using BS.Shared.DataContracts;
|
|
|
|
namespace VkmAachenSbd
|
|
{
|
|
public partial class Leistungsnachweis : DevExpress.XtraReports.UI.XtraReport, IBeWoReport<QueryRO>
|
|
{
|
|
public Leistungsnachweis()
|
|
{
|
|
InitializeComponent();
|
|
|
|
}
|
|
|
|
public void SetReportDataSource(QueryRO pRO)
|
|
{
|
|
|
|
var subReport = new VkmAachenSbd.LeistungsnachweisAbrechnung();
|
|
|
|
//ServiceInvoiceRO ro = ServiceInvoiceRO.Create();
|
|
|
|
//subReport.SetReportDataSource(pRO);
|
|
|
|
this.xrSubreport1.ReportSource = subReport;
|
|
|
|
this.bindingSource1.DataSource = pRO;
|
|
}
|
|
|
|
}
|
|
}
|