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