24 lines
490 B
C#
24 lines
490 B
C#
using System.Linq;
|
|
using BeWo.Report.ReportObjects;
|
|
|
|
namespace BeWo.Report.DefaultReports
|
|
{
|
|
public partial class NotizenReport : DevExpress.XtraReports.UI.XtraReport, IBeWoReport<NotizenRO>
|
|
{
|
|
public NotizenReport()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
public void SetReportDataSource(NotizenRO pRO)
|
|
{
|
|
//if (pRO.Transaktionen != null)
|
|
//{
|
|
// pRO.Transaktionen = pRO.Transaktionen.OrderBy(o => o.Belegdatum).ToList();
|
|
//}
|
|
|
|
bindingSource1.DataSource = pRO;
|
|
}
|
|
}
|
|
}
|