Merge branch 'master' of ssh://float.ownsoft.de/git/beyondSoft/BeWo
This commit is contained in:
@@ -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"
|
||||
|
||||
@@ -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>
|
||||
@@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user