MH: AdikKleve Spitzabrechung Faktor von GesamtFLS runter

This commit is contained in:
2026-08-11 12:16:14 +02:00
parent 0e1821cf1e
commit ae58e498c5
2 changed files with 3 additions and 3 deletions

View File

@@ -58,7 +58,7 @@ namespace AdikKleve.Alt
{
foreach (var ii in pRO.InvoiceItems)
{
summeFLS += ii.UnitCount.Value * ii.RateFactor.Value;
summeFLS += ii.UnitCount.Value;
}
}
}
@@ -73,7 +73,7 @@ namespace AdikKleve.Alt
ii.UnitCount, ii.RateFactor == 0 ? "" : "x " + pRO.RateFactorText2 + " ",
ii.AmountPerUnit);
summeFLS += ii.UnitCount.Value * ii.RateFactor.Value;
summeFLS += ii.UnitCount.Value;
}
}

View File

@@ -42,7 +42,7 @@ namespace AdikKleve
{
rateFactor = (100 + ii.RateFactor.Value) / 100;
}
summeFLS += ii.UnitCount.Value * rateFactor;
summeFLS += ii.UnitCount.Value;
}
pRO.RateFactor = (double)rateFactor;