RatPlusTat/CustomBudgetnachweisAnhangRO - Assistenz rausgefiltert

This commit is contained in:
2026-03-25 10:08:35 +01:00
parent 06f21ce9ed
commit 3ec98601ec
2 changed files with 25 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
using System;
using System.Collections.Generic;
using System.Linq;
using BeWo.Data.Access;
using BeWo.Data.Entities;
using BeWo.Report.ReportObjects;
using BeWo.Service.DCEntityMapper;
using BS.Shared;
using BS.Shared.Core;
using BS.Shared.DataContracts;
using BS.Shared.Extensions;
namespace RatPlusTat
{
public class CustomBudgetnachweisAnhangRO : BudgetnachweisAnhangRO
{
public override IList<ServiceRecord> GetServiceRecords(CostBearer2SupportConcept cb2sc)
{
var list = base.GetServiceRecords(cb2sc);
return list.Where(s => !s.ServiceDescription.ServiceCategory.Name.Contains("Assistenzleistung")).ToList();
}
}
}

View File

@@ -61,6 +61,7 @@
<Compile Include="BudgetnachweisAnhang.Designer.cs">
<DependentUpon>BudgetnachweisAnhang.cs</DependentUpon>
</Compile>
<Compile Include="CustomBudgetnachweisAnhangRO.cs" />
<Compile Include="CustomMitarbeiterstundenkontoBerechnung.cs" />
<Compile Include="CustomMitarbeiterstundenkontoBerechnungMonate.cs" />
<Compile Include="Finanzauswertung.cs">