From 178cb9e53f52f026764daacba77bef69c70c2b4e Mon Sep 17 00:00:00 2001 From: Patrick Mayr Date: Wed, 15 Nov 2023 18:14:35 +0000 Subject: [PATCH] add representation to affiliation --- fet2020/finance/models.py | 1 + 1 file changed, 1 insertion(+) diff --git a/fet2020/finance/models.py b/fet2020/finance/models.py index 289dc87d..16ad3f05 100644 --- a/fet2020/finance/models.py +++ b/fet2020/finance/models.py @@ -131,6 +131,7 @@ class Bill(models.Model): class Affiliation(models.TextChoices): VEREIN = "V", "Vereinsbudget" OFFICIAL = "B", "Offizielles Budget" + REPRESENTATION = "R", "Bundesvertretung" affiliation = models.CharField( max_length=1, choices=Affiliation.choices, verbose_name="Abrechnungsbudget"