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