Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
AlekSIS-App-Alsijil
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-Alsijil
Commits
38a57f20
Verified
Commit
38a57f20
authored
5 years ago
by
Nik | Klampfradler
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' of edugit.org:Teckids/BiscuIT/BiscuIT-App-Alsijil
parents
1421e2b6
02ab2418
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
biscuit/apps/alsijil/forms.py
+1
-1
1 addition, 1 deletion
biscuit/apps/alsijil/forms.py
biscuit/apps/alsijil/model_extensions.py
+59
-0
59 additions, 0 deletions
biscuit/apps/alsijil/model_extensions.py
biscuit/apps/alsijil/views.py
+13
-22
13 additions, 22 deletions
biscuit/apps/alsijil/views.py
with
73 additions
and
23 deletions
biscuit/apps/alsijil/forms.py
+
1
−
1
View file @
38a57f20
...
...
@@ -36,7 +36,7 @@ class SelectForm(forms.Form):
label
=
_
(
'
Group
'
),
required
=
False
)
teacher
=
forms
.
ModelChoiceField
(
queryset
=
Person
.
objects
.
annotate
(
lessons_count
=
Count
(
'
lessons
'
)).
filter
(
lessons_count__gt
=
0
),
'
lessons
_as_teacher
'
)).
filter
(
lessons_count__gt
=
0
),
label
=
_
(
'
Teacher
'
),
required
=
False
)
room
=
forms
.
ModelChoiceField
(
queryset
=
Room
.
objects
.
annotate
(
lessons_count
=
Count
(
...
...
This diff is collapsed.
Click to expand it.
biscuit/apps/alsijil/model_extensions.py
0 → 100644
+
59
−
0
View file @
38a57f20
from
datetime
import
date
from
typing
import
Optional
from
django.db.models
import
Exists
,
OuterRef
from
biscuit.apps.chronos.models
import
LessonPeriod
from
biscuit.apps.chronos.util
import
CalendarWeek
from
biscuit.core.models
import
Group
,
Person
from
.models
import
PersonalNote
@Person.method
def
mark_absent
(
self
,
day
:
date
,
starting_period
:
Optional
[
int
]
=
0
,
absent
=
True
,
excused
=
False
):
wanted_week
=
CalendarWeek
.
from_date
(
day
)
# Get all lessons of this person on the specified day
lesson_periods
=
self
.
lesson_periods_as_participant
.
on_day
(
day
).
filter
(
period__period__gte
=
starting_period
)
# Create and update all personal notes for the discovered lesson periods
for
lesson_period
in
lesson_periods
:
PersonalNote
.
objects
.
update_or_create
(
person
=
self
,
lesson_period
=
lesson_period
,
week
=
wanted_week
.
week
,
defaults
=
{
'
absent
'
:
absent
,
'
excused
'
:
excused
}
)
@LessonPeriod.method
def
get_personal_notes
(
self
,
wanted_week
:
CalendarWeek
):
# Find all persons in the associated groups that do not yet have a personal note for this lesson
missing_persons
=
Person
.
objects
.
annotate
(
no_personal_notes
=~
Exists
(
PersonalNote
.
objects
.
filter
(
week
=
wanted_week
.
week
,
lesson_period
=
self
,
person__pk
=
OuterRef
(
'
pk
'
)
))
).
filter
(
member_of__in
=
Group
.
objects
.
filter
(
pk__in
=
self
.
lesson
.
groups
.
all
()),
is_active
=
True
,
no_personal_notes
=
True
)
# Create all missing personal notes
PersonalNote
.
objects
.
bulk_create
([
PersonalNote
(
person
=
person
,
lesson_period
=
self
,
week
=
wanted_week
.
week
)
for
person
in
missing_persons
])
return
PersonalNote
.
objects
.
select_related
(
'
person
'
).
filter
(
lesson_period
=
self
,
week
=
wanted_week
.
week
)
This diff is collapsed.
Click to expand it.
biscuit/apps/alsijil/views.py
+
13
−
22
View file @
38a57f20
...
...
@@ -14,7 +14,7 @@ from biscuit.apps.chronos.util import CalendarWeek
from
biscuit.core.models
import
Group
,
Person
from
.forms
import
LessonDocumentationForm
,
PersonalNoteFormSet
,
SelectForm
from
.models
import
LessonDocumentation
,
PersonalNote
from
.models
import
LessonDocumentation
@login_required
...
...
@@ -48,36 +48,27 @@ def lesson(request: HttpRequest, year: Optional[int] = None, week: Optional[int]
lesson_documentation_form
=
LessonDocumentationForm
(
request
.
POST
or
None
,
instance
=
lesson_documentation
,
prefix
=
'
leson_documentation
'
)
# Find all persons in the associated groups that do not yet have a personal note for this lesson
missing_persons
=
Person
.
objects
.
annotate
(
no_personal_notes
=~
Exists
(
PersonalNote
.
objects
.
filter
(
week
=
wanted_week
.
week
,
lesson_period
=
lesson_period
,
person__pk
=
OuterRef
(
'
pk
'
)
))
).
filter
(
member_of__in
=
Group
.
objects
.
filter
(
pk__in
=
lesson_period
.
lesson
.
groups
.
all
()),
is_active
=
True
,
no_personal_notes
=
True
)
# Create all missing personal notes
PersonalNote
.
objects
.
bulk_create
([
PersonalNote
(
person
=
person
,
lesson_period
=
lesson_period
,
week
=
wanted_week
.
week
)
for
person
in
missing_persons
# FIXME Respect year as well
])
# Create a formset that holds all personal notes for all persons in this lesson
persons_qs
=
PersonalNote
.
objects
.
select_related
(
'
person
'
).
filter
(
lesson_period
=
lesson_period
,
week
=
wanted_week
.
week
)
# FIXME Respect year as well
persons_qs
=
lesson_period
.
get_personal_notes
(
wanted_week
)
personal_note_formset
=
PersonalNoteFormSet
(
request
.
POST
or
None
,
queryset
=
persons_qs
,
prefix
=
'
personal_notes
'
)
if
request
.
method
==
'
POST
'
:
if
lesson_documentation_form
.
is_valid
():
lesson_documentation_form
.
save
()
if
personal_note_formset
.
is_valid
():
personal_note_formset
.
save
()
instances
=
personal_note_formset
.
save
()
# Iterate over personal notes and carry changed absences to following lessons
for
instance
in
instances
:
instance
.
person
.
mark_absent
(
wanted_week
[
lesson_period
.
period
.
weekday
-
1
],
lesson_period
.
period
.
period
+
1
,
instance
.
absent
,
instance
.
excused
)
context
[
'
lesson_documentation
'
]
=
lesson_documentation
context
[
'
lesson_documentation_form
'
]
=
lesson_documentation_form
...
...
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