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
b0737275
Commit
b0737275
authored
6 years ago
by
Jonathan Weth
Browse files
Options
Downloads
Patches
Plain Diff
Repair parsing of rooms
parent
b2487e6f
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
biscuit/apps/untis/parse.py
+21
-10
21 additions, 10 deletions
biscuit/apps/untis/parse.py
with
21 additions
and
10 deletions
biscuit/apps/untis/parse.py
+
21
−
10
View file @
b0737275
...
...
@@ -132,10 +132,10 @@ def parse():
# print(rld2)
for
el
in
rld2
:
for
i
,
el
in
enumerate
(
rld2
)
:
teacher_id
=
int
(
el
[
0
])
subject_id
=
int
(
el
[
2
])
room_ids
=
untis_split
(
el
[
4
],
int
)
#
room_ids = untis_split(el[4], int)
class_ids
=
untis_split
(
el
[
17
],
conv
=
int
)
# print("TEACHER – ", teacher_id, "; SUBJECT – ", subject_id, "; ROOMS – ", room_ids, "; CLASSES – ",
# class_ids)
...
...
@@ -151,9 +151,9 @@ def parse():
subject
=
None
rooms
=
[]
for
room_id
in
room_ids
:
r
=
drive
[
"
rooms
"
][
room_id
]
rooms
.
append
(
r
)
#
for room_id in room_ids:
#
r = drive["rooms"][room_id
s[i]
]
#
rooms.append(r)
classes
=
[]
for
class_id
in
class_ids
:
...
...
@@ -223,6 +223,7 @@ def get_plan(type, id):
# Fill plan with lessons
for
lesson
in
lessons
:
for
i
,
element
in
enumerate
(
lesson
.
elements
):
# Check if the lesson element is important for that plan (look by type and id)
found
=
False
if
type
==
TYPE_CLASS
:
...
...
@@ -236,15 +237,21 @@ def get_plan(type, id):
found
=
True
elif
type
==
TYPE_ROOM
:
for
lroom
in
element
.
rooms
:
if
lroom
.
id
==
id
:
found
=
True
for
time
in
lesson
.
times
:
for
j
,
lroom
in
enumerate
(
time
.
rooms
):
if
lroom
.
id
==
id
:
print
(
lroom
.
name
)
found
=
True
# If the lesson element is important then add it to plan array
if
found
:
for
time
in
lesson
.
times
:
# Go for every time the lesson is thought
# print(time.hour, " ", time.day)
# print(element.subject.shortcode)
room_index
=
None
for
j
,
lroom
in
enumerate
(
time
.
rooms
):
if
lroom
.
id
==
id
:
room_index
=
j
# Add the time object to the matching LessonContainer on the right position in the plan array
plan
[
time
.
hour
-
1
][
time
.
day
-
1
].
set_time
(
time
)
...
...
@@ -255,11 +262,15 @@ def get_plan(type, id):
except
IndexError
:
room
=
None
# print(element)
# print(room.name)
# Create a LessonElementContainer with room and lesson element
element_container
=
LessonElementContainer
(
element
,
room
)
# Add this container object to the LessonContainer object in the plan array
plan
[
time
.
hour
-
1
][
time
.
day
-
1
].
append
(
element_container
)
if
type
!=
TYPE_ROOM
or
i
==
room_index
:
# Add this container object to the LessonContainer object in the plan array
plan
[
time
.
hour
-
1
][
time
.
day
-
1
].
append
(
element_container
)
# print(plan)
#
...
...
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