Files
BeWoPlaner/ReportImp/BeWoPyramide/SupportConceptReport.cs

33 lines
952 B
C#

using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using DevExpress.XtraReports.UI;
using BS.Shared.Extensions;
using BeWo.Report.ReportObjects;
using BeWo.Report;
using System.Linq;
namespace BeWoPyramide
{
public partial class Hilfeplanuebersicht : DevExpress.XtraReports.UI.XtraReport, IBeWoReport<SupportConceptListRO>
{
public Hilfeplanuebersicht()
{
InitializeComponent();
}
public void SetReportDataSource(SupportConceptListRO pRO)
{
if (pRO.AppointedDate.HasValue && pRO.AppointedDate.Value.Date < DateTime.Now.Date)
{
xrLabel1.Text = String.Format("Hilfeplanübersicht Stand {0:dd.MM.yyyy}", pRO.AppointedDate);
}
pRO.SupportConceptDetailList = pRO.SupportConceptDetailList.OrderBy(s => s.EndDate).ToList();
this.bindingSource1.DataSource = pRO;
}
}
}