[#40] Billing: Add Rebelzuschlag
This commit is contained in:
@ -88,7 +88,9 @@ namespace Elwig.Helpers {
|
||||
input.Text = text;
|
||||
input.CaretIndex = pos;
|
||||
|
||||
if (text.Length == 0) {
|
||||
if (text == "-") {
|
||||
return new(false, "Ungültige Kommazahl");
|
||||
} else if (text.Length == 0) {
|
||||
return required ? new(false, "Wert ist nicht optional") : new(true, null);
|
||||
} else if (v2 == 0) {
|
||||
return new(false, "Ungültige Kommazahl");
|
||||
|
Reference in New Issue
Block a user