Skip to content

Commit

Permalink
wip: Try to fix Heizkostenabrechnung
Browse files Browse the repository at this point in the history
  • Loading branch information
klawr committed May 30, 2024
1 parent 9e96b46 commit 7aaf877
Showing 1 changed file with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@ public VerbrauchAnteil(Umlage umlage, Wohnung wohnung, Zeitraum zeitraum, List<N
continue;
}
// Done because the first entry should not be in the last month.
if (zaehler.Ende < zeitraum.Abrechnungsbeginn)
{
continue;
}
var daysToFirstZaehler = zaehler.Staende
.OrderBy(stand => stand.Stand)
.FirstOrDefault()?
Expand All @@ -60,7 +64,11 @@ public VerbrauchAnteil(Umlage umlage, Wohnung wohnung, Zeitraum zeitraum, List<N
{
continue;
}
var verbrauch = new Verbrauch(zaehler, zeitraum.Abrechnungsbeginn, zeitraum.Abrechnungsende, notes);
var verbrauch = new Verbrauch(
zaehler,
zeitraum.Abrechnungsbeginn,
zeitraum.Abrechnungsende,
notes);
AlleZaehler[unit].Add(verbrauch);
AlleVerbrauch[unit] += verbrauch.Delta;

Expand Down

0 comments on commit 7aaf877

Please sign in to comment.