Fehlkontakte BeWoAmrath/ServicesOverviewReport.cs

This commit is contained in:
2023-05-10 16:11:59 +02:00
parent a545bf352d
commit 89b1b95ab6
3 changed files with 781 additions and 663 deletions

View File

@@ -0,0 +1 @@
DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v17.1, Version=17.1.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a

File diff suppressed because it is too large Load Diff

View File

@@ -18,7 +18,15 @@ namespace BeWo.BeWoAmrath
{
var servicesBillable = pRO.Services.Where(s => s.IsBillable).ToList();
pRO.Services = servicesBillable;
foreach (var sd in servicesBillable)
{
if(sd.ServiceDescription.ToLower().Contains("fehlkontakt"))
{
sd.Notice5 = "F";
}
}
pRO.Services = servicesBillable;
}
bindingSource1.DataSource = pRO;