VerbandEvKirchengemeindenDorsten/Invoicing/CustomSettlementInvoiceCreation - kein CheckMaxApprovedHours

This commit is contained in:
2025-08-01 15:59:48 +02:00
parent 48fd4a1cab
commit 89839a4372
2 changed files with 29 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
using BeWo.Data.Entities;
using BeWo.Service.DCEntityMapper;
using BeWo.Service.Invoicing;
using BeWo.Service.Plugins;
using BS.Shared;
using BS.Shared.Core;
using BS.Shared.DataContracts;
using BS.Shared.Extensions;
using BS.Shared.Services;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace VerbandEvKirchengemeindenDorsten.Invoicing
{
[IDSpecificClass(Identifier = "LWLBeWo67")]
[IgnoreAutoPlugin]
public class CustomSettlementInvoiceCreation : LWLBeWo67SettlementInvoiceCreation
{
public override bool CheckMaxApprovedHours()
{
return false;
}
}
}

View File

@@ -62,6 +62,7 @@
<DependentUpon>Budgetnachweis.cs</DependentUpon>
</Compile>
<Compile Include="CustomReportCreator.cs" />
<Compile Include="Invoicing\CustomSettlementInvoiceCreation.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="QuittierungsbelegEGH.cs">
<SubType>Component</SubType>
@@ -149,5 +150,6 @@
<ItemGroup>
<None Include="app.config" />
</ItemGroup>
<ItemGroup />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>