36 lines
872 B
C#
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;
|
|
}
|
|
}
|
|
}
|