Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
AlekSIS-App-Untis
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
AlekSIS®
Official
AlekSIS-App-Untis
Commits
9ad6370b
Commit
9ad6370b
authored
6 years ago
by
Jonathan Weth
Browse files
Options
Downloads
Patches
Plain Diff
Add cancellation detection
parent
26a83291
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
biscuit/apps/untis/sub.py
+15
-1
15 additions, 1 deletion
biscuit/apps/untis/sub.py
with
15 additions
and
1 deletion
biscuit/apps/untis/sub.py
+
15
−
1
View file @
9ad6370b
...
@@ -17,6 +17,20 @@ def date_to_untis_date(date):
...
@@ -17,6 +17,20 @@ def date_to_untis_date(date):
return
date
.
strftime
(
DATE_FORMAT
)
return
date
.
strftime
(
DATE_FORMAT
)
TYPE_SUBSTITUTION
=
0
TYPE_CANCELLATION
=
1
TYPE_TEACHER_CANCELLATION
=
2
def
parse_type_of_untis_flags
(
flags
):
type_
=
TYPE_SUBSTITUTION
if
"
E
"
in
flags
:
type_
=
TYPE_CANCELLATION
elif
"
F
"
in
flags
:
type_
=
TYPE_TEACHER_CANCELLATION
return
type_
class
Substitution
(
object
):
class
Substitution
(
object
):
def
__init__
(
self
):
def
__init__
(
self
):
self
.
filled
=
False
self
.
filled
=
False
...
@@ -48,7 +62,7 @@ class Substitution(object):
...
@@ -48,7 +62,7 @@ class Substitution(object):
self
.
lesson_id
=
db_obj
.
lesson_idsubst
self
.
lesson_id
=
db_obj
.
lesson_idsubst
self
.
date
=
untis_date_to_date
(
db_obj
.
date
)
self
.
date
=
untis_date_to_date
(
db_obj
.
date
)
self
.
lesson
=
db_obj
.
lesson
self
.
lesson
=
db_obj
.
lesson
self
.
type
=
list
(
db_obj
.
flags
)
self
.
type
=
parse_type_of_untis_flags
(
db_obj
.
flags
)
self
.
text
=
db_obj
.
text
self
.
text
=
db_obj
.
text
# Lesson
# Lesson
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment