Invoice Widgets completed

This commit is contained in:
2026-02-11 19:38:06 +01:00
parent 87531237c7
commit 882752472e
16 changed files with 240 additions and 18 deletions

View File

@@ -36,4 +36,8 @@ class Amount {
|> trim(...)
|> function (string $value) : string { return str_replace('.', ',', $value); };
}
public function addAmount(Amount $amount) : void {
$this->amount += $amount->getAmount();
}
}