VA On-Screen Checks

This commit is contained in:
Carl Mahnke
2024-02-28 14:02:31 +01:00
parent 438163217f
commit f955aa24fb
10 changed files with 233 additions and 5 deletions

View File

@@ -0,0 +1,11 @@
import { GebaeudeAufnahmeClient } from "#components/Ausweis/types";
export function auditLeerStand(gebaeude: GebaeudeAufnahmeClient ): boolean {
if (gebaeude.leerstand ) {
return (
(gebaeude.leerstand > 30)
);
}
return false
}