mpeltriaux
d9cf9669f0
* adds unit test for creating report * fixes bug where new (>2018) eco accounts have not been fetched correctly from the db * adds enhancements in the frontend * improves test data setup
17 lines
397 B
Python
17 lines
397 B
Python
"""
|
|
Author: Michel Peltriaux
|
|
Organization: Struktur- und Genehmigungsdirektion Nord, Rhineland-Palatinate, Germany
|
|
Contact: michel.peltriaux@sgdnord.rlp.de
|
|
Created on: 19.10.21
|
|
|
|
"""
|
|
|
|
# Defines the date of the legal publishing of the LKompVzVo
|
|
from django.utils import timezone
|
|
|
|
LKOMPVZVO_PUBLISH_DATE = timezone.make_aware(
|
|
timezone.datetime.fromisoformat(
|
|
"2018-06-16"
|
|
)
|
|
).date()
|