- Bugfix Leistungsnachweis Bad Kreuznach FUD
This commit is contained in:
@@ -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)
|
||||
{
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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
|
||||
{
|
||||
|
||||
@@ -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);
|
||||
|
||||
|
||||
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user