Web M&M
https://mam.matfyz.cz
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
440 B
16 lines
440 B
import datetime
|
|
|
|
from django.utils.encoding import force_str
|
|
|
|
from aesop.ovvpfile import OvvpFile
|
|
|
|
|
|
def default_ovvpfile(event, rocnik):
|
|
of = OvvpFile()
|
|
of.headers['version'] = '1'
|
|
of.headers['event'] = event
|
|
of.headers['year'] = force_str(rocnik.prvni_rok)
|
|
of.headers['date'] = datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S")
|
|
of.headers['id-scope'] = 'mam'
|
|
of.headers['id-generation'] = '1'
|
|
return of
|
|
|