Invoices can be uploaded

This commit is contained in:
2026-02-11 15:40:06 +01:00
parent bccfc11687
commit ee7fc637f1
47 changed files with 1751 additions and 67 deletions

View File

@@ -22,6 +22,10 @@ class Amount {
return $this->amount;
}
public function getRoundedAmount() : int {
return round($this->amount);
}
public function getCurrency() : string {
return $this->currency;
}

View File

@@ -0,0 +1,9 @@
<?php
namespace App\ValueObjects;
class InvoiceFile {
public string $filename;
public string $fullPath;
}