CHANGE: added team view, with submitted bookings for team members and send form for own bookings

This commit is contained in:
2025-02-25 15:08:34 +01:00
parent 478fd53d4f
commit d68a19790e
14 changed files with 846 additions and 1766 deletions

View File

@@ -61,13 +61,13 @@ EXECUTE FUNCTION update_zuletzt_geandert();
-- audittabelle für arbeitsstunden bestätigung
-- DROP TABLE IF EXISTS "buchung_wochen";
-- CREATE TABLE "buchung_wochen" (
-- "personal_nummer" int4,
-- "woche_start" date,
-- "buchungen" []bigserial,
-- "bestaetigt" bool DEFAULT FALSE,
-- );
DROP TABLE IF EXISTS "buchung_wochen";
CREATE TABLE "buchung_wochen" (
"id" serial PRIMARY KEY,
"personal_nummer" int4,
"woche_start" date,
"bestaetigt" bool DEFAULT FALSE
);
-- Adds crypto extension