Files
BeWoPlaner/ReportImp/Club74/SpitzabrechnungAnhang.cs
2017-06-11 16:01:01 +02:00

26 lines
668 B
C#

using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using BeWo.Report;
using DevExpress.XtraReports.UI;
using BeWo.Report.ReportObjects;
namespace Club74
{
public partial class SpitzabrechnungAnhang : DevExpress.XtraReports.UI.XtraReport
{
public SpitzabrechnungAnhang()
{
InitializeComponent();
}
public void SetReportDataSource(SettlementRO pRO)
{
lblDifferenz.Text = String.Format("{0:0.00}",
pRO.SettlementDC.ApprovedFLS - pRO.SettlementDC.RecordedBillableFLSNetto);
this.bindingSource1.DataSource = pRO;
}
}
}