Files
BeWoPlaner/ReportImp/Club74/InvoiceCustomerReport.cs
Christian cf90774667 bugfixing
2017-06-11 15:50:31 +02:00

36 lines
872 B
C#

using System;
using System.Runtime.InteropServices;
using System.Text;
using BeWo.Report;
using BeWo.Report.ReportObjects;
namespace BeWo.Club74
{
public partial class InvoiceCustomerReport : DevExpress.XtraReports.UI.XtraReport, IBeWoReport<InvoiceCustomerRO>
{
public InvoiceCustomerReport()
{
InitializeComponent();
}
public void SetReportDataSource(InvoiceCustomerRO pRO)
{
// [RecipientSalutationAddressField]
//[RecipientFirstName]
//[RecipientLastName]
//[RecipientStreet]
//[RecipientPostCode]
//[RecipientTown]
if (String.IsNullOrEmpty(pRO.Notice))
{
lblBemerkung.Visible = false;
}
this.bindingSource1.DataSource = pRO;
}
}
}