- Bugfix Leistungsnachweis Bad Kreuznach FUD

This commit is contained in:
Christian
2025-05-23 09:57:27 +02:00
parent ecb387c20e
commit 68cbc2d48c
5 changed files with 8 additions and 6 deletions

View File

@@ -64,7 +64,7 @@ namespace FreundeskreisSuchthilfe.Service
}
}
public override bool AllowCustomerAnalysis(Customer customer, FLSAnalysisConfigDC config, IList<ServiceRecord> serviceRecords)
public override bool AllowCustomerAnalysis(Customer customer, FLSAnalysisConfigDC config, IList<IServiceRecord> serviceRecords)
{
if (config.EmployeeOid != null)
{

View File

@@ -163,7 +163,7 @@ namespace LebenshilfeBadKreuznachFUD.Invoicing
}
}
private object CreateHausbesuchspauschale(List<ServiceRecordDC> serviceRecordsInPeriod, DateTimeSpan invoicePeriod, SupportConceptApprovalPeriod scap)
private IList<InvoiceItem> CreateHausbesuchspauschale(List<ServiceRecordDC> serviceRecordsInPeriod, DateTimeSpan invoicePeriod, SupportConceptApprovalPeriod scap)
{
IList<InvoiceItem> items = new List<InvoiceItem>();
decimal wegepauschale = 7.45m;

View File

@@ -27,7 +27,7 @@ namespace LebenshilfeBadKreuznachFUD.Reporting.Reports
var sonderFerienDict = GetOrganisationFeiertage(org);
pRO.CreateDummyEntries(true);
pRO.CreateDummyEntries(false);
@@ -37,7 +37,8 @@ namespace LebenshilfeBadKreuznachFUD.Reporting.Reports
if (vs.IstFeiertag(item.StartDate))
{
//item.Notice = vs.GetFeiertage()
item.Notice = vs.GetFeiertag(item.StartDate).Name;
item.Notice = vs.GetFeiertag(item.StartDate.Date)?.Name;
}
else
{

View File

@@ -19,7 +19,7 @@ namespace PflegedienstWessel.Service
{
public class CustomStundenuebersichtAuswertung : StundenuebersichtAuswertung
{
protected override ServiceRecordFLSOverviewDC CreateServiceRecordFLSOverviewDC(ServiceRecord sr, bool useGroupInfo, bool useRoundedDuration, bool showGroupMinutes)
protected override ServiceRecordFLSOverviewDC CreateServiceRecordFLSOverviewDC(IServiceRecord sr, bool useGroupInfo, bool useRoundedDuration, bool showGroupMinutes)
{
var dc = base.CreateServiceRecordFLSOverviewDC(sr, useGroupInfo, useRoundedDuration, showGroupMinutes);

View File

@@ -64,7 +64,8 @@ namespace SPZLeverkusen.Service
}
}
public override bool AllowCustomerAnalysis(Customer customer, FLSAnalysisConfigDC config, IList<ServiceRecord> serviceRecords)
public override bool AllowCustomerAnalysis(Customer customer, FLSAnalysisConfigDC config, IList<IServiceRecord> serviceRecords)
{
if (config.EmployeeOid != null)
{