33 lines
932 B
C#
33 lines
932 B
C#
|
|
using System.Collections.Generic;
|
||
|
|
using BeWo.Report;
|
||
|
|
using BeWo.Report.ReportObjects;
|
||
|
|
|
||
|
|
namespace BeWo.BeWoBiallas
|
||
|
|
{
|
||
|
|
public partial class Stundenzettel : DevExpress.XtraReports.UI.XtraReport, IBeWoReport<ServicesOverviewRO>
|
||
|
|
{
|
||
|
|
public Stundenzettel()
|
||
|
|
{
|
||
|
|
InitializeComponent();
|
||
|
|
}
|
||
|
|
|
||
|
|
public void SetReportDataSource(ServicesOverviewRO pRO)
|
||
|
|
{
|
||
|
|
if (pRO.Services != null)
|
||
|
|
{
|
||
|
|
List<ServicesOverviewRO.ServiceDetail> servicesBillable = new List<ServicesOverviewRO.ServiceDetail>();
|
||
|
|
|
||
|
|
foreach (ServicesOverviewRO.ServiceDetail s in pRO.Services)
|
||
|
|
{
|
||
|
|
if (s.IsBillable)
|
||
|
|
servicesBillable.Add(s);
|
||
|
|
}
|
||
|
|
|
||
|
|
pRO.Services = servicesBillable;
|
||
|
|
}
|
||
|
|
this.bindingSource1.DataSource = pRO;
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|