26 lines
668 B
C#
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;
|
|
}
|
|
}
|
|
}
|