45 lines
1.4 KiB
C#
45 lines
1.4 KiB
C#
using BeWo.Data.Access;
|
|
using BeWo.Data.Entities;
|
|
using BeWo.Service.Invoicing;
|
|
using BS.Shared.DataContracts;
|
|
using BS.Shared.DataContracts.Compact;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace VereinZurIntegrationChemnitz
|
|
{
|
|
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)
|
|
{
|
|
var sd = sr.ServiceDescription.Category;
|
|
var ic = GetInvoiceCreatorForCategory(sd);
|
|
if (ic != null)
|
|
return ic;
|
|
}
|
|
}
|
|
|
|
return new InvoiceCreation();
|
|
}
|
|
private InvoiceCreation GetInvoiceCreatorForCategory(ServiceCategoryDC sd)
|
|
{
|
|
if (sd != null && !String.IsNullOrEmpty(sd.Name))
|
|
{
|
|
String cat = sd.Name.ToLower().Trim();
|
|
if (cat.IndexOf("einfache pauschale") >= 0 || cat.IndexOf("doppelte pauschale") >= 0)
|
|
{
|
|
return new WBWInvoiceCreation();
|
|
}
|
|
}
|
|
return null;
|
|
}
|
|
}
|
|
}
|