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
346638e3
Commit
346638e3
authored
5 years ago
by
Jonathan Weth
Browse files
Options
Downloads
Patches
Plain Diff
- Add holidays
- Check "show_plan" permission in dashboard
parent
439b33ae
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
biscuit/apps/untis/plan.py
+5
-5
5 additions, 5 deletions
biscuit/apps/untis/plan.py
biscuit/apps/untis/utils.py
+3
-1
3 additions, 1 deletion
biscuit/apps/untis/utils.py
with
8 additions
and
6 deletions
biscuit/apps/untis/plan.py
+
5
−
5
View file @
346638e3
...
...
@@ -70,7 +70,7 @@ def get_plan(type, id, smart=False, monday_of_week=None):
lessons
=
parse
()
times_parsed
=
parse_lesson_times
()
hols_for_weekday
=
[]
hols_for_weekday
s
=
[]
if
smart
:
week_days
=
[
monday_of_week
+
datetime
.
timedelta
(
days
=
i
)
for
i
in
range
(
5
)]
...
...
@@ -80,7 +80,7 @@ def get_plan(type, id, smart=False, monday_of_week=None):
subs_for_weekday
.
append
(
subs
)
hols
=
get_today_holidays
(
week_day
)
hols_for_weekday
.
append
(
hols
)
hols_for_weekday
s
.
append
(
hols
)
# print(subs)
# print(len(subs))
...
...
@@ -168,9 +168,9 @@ def get_plan(type, id, smart=False, monday_of_week=None):
element_container
.
is_old
=
True
# Check for holidays
if
smart
and
hols_for_weekday
[
time
.
day
-
1
]:
if
smart
and
hols_for_weekday
s
[
time
.
day
-
1
]:
element_container
.
is_hol
=
True
element_container
.
element
.
holiday_reason
=
hols_for_weekday
[
time
.
day
-
1
][
0
].
name
element_container
.
element
.
holiday_reason
=
hols_for_weekday
s
[
time
.
day
-
1
][
0
].
name
if
type
!=
TYPE_ROOM
or
i
==
room_index
:
# Add this container object to the LessonContainer object in the plan array
...
...
@@ -236,4 +236,4 @@ def get_plan(type, id, smart=False, monday_of_week=None):
for
j
in
range
(
event
.
event
.
from_lesson
-
1
,
event
.
event
.
to_lesson
):
plan
[
j
][
0
][
i
].
append
(
element_container
)
return
plan
,
hols_for_weekday
return
plan
,
hols_for_weekday
s
This diff is collapsed.
Click to expand it.
biscuit/apps/untis/utils.py
+
3
−
1
View file @
346638e3
...
...
@@ -42,4 +42,6 @@ def get_plan_for_day(_type, plan_id, date):
# Get plan
plan
,
holidays
=
get_plan
(
_type
,
plan_id
,
smart
=
True
,
monday_of_week
=
monday_of_week
)
lessons
=
[(
row
[
week_day
],
time
)
for
row
,
time
in
plan
]
return
lessons
holidays_for_date
=
holidays
[
week_day
]
return
lessons
,
holidays_for_date
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