27 lines
520 B
C#
27 lines
520 B
C#
using BeWo.Report;
|
|
using BeWo.Report.ReportObjects;
|
|
|
|
using DevExpress.XtraReports.UI;
|
|
|
|
namespace AbwIlseFretz
|
|
{
|
|
public partial class KassenbelegReport : XtraReport, IBeWoReport<KassenbelegRO>
|
|
{
|
|
public KassenbelegReport()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
public void SetReportDataSource(KassenbelegRO pRO)
|
|
{
|
|
bindingSource1.DataSource = pRO;
|
|
|
|
if(pRO.Beguenstigter is null)
|
|
{
|
|
beguenstigterLabel.Visible = false;
|
|
beguenstigterValueLabel.Visible = false;
|
|
}
|
|
}
|
|
}
|
|
}
|