46 lines
1.6 KiB
C#
46 lines
1.6 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using BeWo.Service.Invoicing;
|
|
using BS.Shared.DataContracts;
|
|
using BS.Shared.DataContracts.Compact;
|
|
|
|
namespace BbcTerwort.Invoicing
|
|
{
|
|
public class CustomInvoiceFactory : InvoiceFactory
|
|
{
|
|
public override InvoiceCreation CreateInvoiceCreator(string specificId, string tenant, Dictionary<CompactSupportConceptDC, List<ServiceRecordDC>> supportConcepts2ServiceRecords)
|
|
{
|
|
foreach (var list in supportConcepts2ServiceRecords.Values)
|
|
{
|
|
foreach (var sr in list)
|
|
{
|
|
if (sr.CostBearer != null)
|
|
{
|
|
if (sr.CostBearer.Name.StartsWith("Selbstzahler"))
|
|
{
|
|
return new SelbstzahlerInvoiceCreation();
|
|
}
|
|
}
|
|
var sd = sr.ServiceDescription.Category;
|
|
var ic = GetInvoiceCreatorForCategory(sd);
|
|
if (ic != null)
|
|
return ic;
|
|
}
|
|
}
|
|
return base.CreateInvoiceCreator(specificId, tenant, supportConcepts2ServiceRecords);
|
|
}
|
|
|
|
private InvoiceCreation GetInvoiceCreatorForCategory(ServiceCategoryDC sd)
|
|
{
|
|
if (sd != null && !String.IsNullOrEmpty(sd.Name))
|
|
{
|
|
String cat = sd.Name.ToLower().Trim();
|
|
|
|
// if (cat.IndexOf("unterstützend") >= 0)
|
|
// return new CustomAssistenzInvoiceCreation();
|
|
}
|
|
return null;
|
|
}
|
|
}
|
|
}
|