Merge branch 'master' of ssh://float.ownsoft.de/git/beyondSoft/BeWo

This commit is contained in:
2025-12-22 13:14:32 +01:00
3 changed files with 7 additions and 24 deletions

View File

@@ -28,7 +28,10 @@ namespace Humanitas
{
var list = base.GetFeiertage(year);
list.Add(new DateTime(year, 12, 31));
if (year <= 2024)
{
list.Add(new DateTime(year, 12, 31));
}
var osterSonntag = GetOsterSonntag(year);
list.Add(osterSonntag.AddDays(-48)); // "Rosenmontag"

View File

@@ -65,7 +65,6 @@
<Compile Include="Finanzauswertung.designer.cs">
<DependentUpon>Finanzauswertung.cs</DependentUpon>
</Compile>
<Compile Include="Import\AbschlagszahlungImport.cs" />
<Compile Include="Mitarbeiterauslastung.cs">
<SubType>Component</SubType>
</Compile>
@@ -156,6 +155,8 @@
<ItemGroup>
<None Include="app.config" />
</ItemGroup>
<ItemGroup />
<ItemGroup>
<Folder Include="Import\" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>

View File

@@ -1,21 +0,0 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using BeWo.Data.Access;
using BeWo.Data.Entities;
using BeWo.Service.MessageContracts;
using BeWo.Service.Plugins;
using DevExpress.XtraPrinting.Native;
namespace Humanitas.Import
{
public class AbschlagszahlungImport : DataImporter
{
public override UploadImportFileResult ImportData(string filename, byte[] daten)
{
return ImportLvrAvise(filename, daten);
}
}
}