From b2081c31f24cb87207943ebc5fbf89f8742d8bb9 Mon Sep 17 00:00:00 2001 From: Sebastian Gutzeit Date: Wed, 30 Aug 2023 14:24:16 +0200 Subject: [PATCH] App BEMAS: neuer Bearbeitungsstatus --- bemas/migrations/0002_data.py | 5 +++++ bemas/tests/tests_codelist.py | 12 ++++++------ toolbox/constants_vars.py | 2 +- 3 files changed, 12 insertions(+), 7 deletions(-) diff --git a/bemas/migrations/0002_data.py b/bemas/migrations/0002_data.py index e95a3f06..b2113da1 100644 --- a/bemas/migrations/0002_data.py +++ b/bemas/migrations/0002_data.py @@ -13,6 +13,11 @@ def load_initial_data(apps, schema_editor): title='abgeschlossen', icon='check' ) + status.objects.create( + ordinal=3, + title='nicht zuständig', + icon='thumbs-down' + ) sector = apps.get_model('bemas', 'Sector') sector.objects.create( title='Anlage an Wohnhaus', diff --git a/bemas/tests/tests_codelist.py b/bemas/tests/tests_codelist.py index 0b7e6bd5..e153a5fc 100644 --- a/bemas/tests/tests_codelist.py +++ b/bemas/tests/tests_codelist.py @@ -13,29 +13,29 @@ class StatusModelTest(DefaultCodelistTestCase): """ model = Status - count = 2 + count = 3 attributes_values_db_initial = { - 'ordinal': 3, + 'ordinal': 4, 'title': 'I0JBAMtz', 'icon': '3jw5UCfJ' } attributes_values_db_updated = { - 'ordinal': 4, + 'ordinal': 5, 'title': '4Ke2ZalC', 'icon': '3ZtNGShd' } attributes_values_view_initial = { - 'ordinal': 5, + 'ordinal': 6, 'title': 'C1wePTPw', 'icon': 'wacsjIgS' } attributes_values_view_updated = { - 'ordinal': 6, + 'ordinal': 7, 'title': 'Ye5nXUid', 'icon': 'ABys0FRo' } attributes_values_view_invalid = { - 'ordinal': 6, + 'ordinal': 7, 'title': INVALID_STRING, 'icon': INVALID_STRING } diff --git a/toolbox/constants_vars.py b/toolbox/constants_vars.py index 795f3808..f46b3f69 100644 --- a/toolbox/constants_vars.py +++ b/toolbox/constants_vars.py @@ -37,7 +37,7 @@ 'muss der typographisch korrekte Apostroph (’) verwendet werden.' hausnummer_regex = r'^[1-9][0-9]{0,2}[a-z]?$' hausnummer_message = 'Die Hausnummer muss eine Zahl ' \ - 'zwischen 1 und 999 sein, optional gefolgt von einem Kleinbuchstaben.' + 'zwischen 1 und 999 sein, optional direkt gefolgt von einem Kleinbuchstaben.' hausnummer_zusatz_regex = r'^[a-z]$' hausnummer_zusatz_message = 'Der Hausnummernzusatz' \ ' muss aus genau einem ' \