Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
AKPlanning
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Dominik Weitz
AKPlanning
Commits
8b5ffde8
Commit
8b5ffde8
authored
2 years ago
by
Benjamin Hättasch
Committed by
Nadja Geisler
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Update/delete constraint violations when corresponding slot is deleted
This fixes #131
parent
c9e4be83
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
AKScheduling/models.py
+14
-1
14 additions, 1 deletion
AKScheduling/models.py
with
14 additions
and
1 deletion
AKScheduling/models.py
+
14
−
1
View file @
8b5ffde8
from
django.db.models.signals
import
post_save
,
m2m_changed
from
django.db.models.signals
import
post_save
,
m2m_changed
,
pre_delete
from
django.dispatch
import
receiver
from
django.dispatch
import
receiver
from
django.utils.translation
import
gettext_lazy
as
_
from
django.utils.translation
import
gettext_lazy
as
_
...
@@ -551,6 +551,19 @@ def akslot_changed_handler(sender, instance: AKSlot, **kwargs):
...
@@ -551,6 +551,19 @@ def akslot_changed_handler(sender, instance: AKSlot, **kwargs):
update_constraint_violations
(
new_violations
,
existing_violations_to_check
)
update_constraint_violations
(
new_violations
,
existing_violations_to_check
)
@receiver
(
pre_delete
,
sender
=
AKSlot
)
def
akslot_deleted_handler
(
sender
,
instance
:
AKSlot
,
**
kwargs
):
# Manually clean up or remove constraint violations that belong to this slot since there is no cascade deletion
# for many2many relationships. Explicitly listening for AK deletion signals is not necessary since they will
# transitively trigger this signal and we always set both AK and AKSlot references in a constraint violation
print
(
f
"
{
instance
}
deleted
"
)
for
cv
in
instance
.
constraintviolation_set
.
all
():
# Make sure not delete CVs that e.g., show three parallel slots in a single room
if
cv
.
ak_slots
.
count
()
<=
2
:
cv
.
delete
()
@receiver
(
post_save
,
sender
=
Room
)
@receiver
(
post_save
,
sender
=
Room
)
def
room_changed_handler
(
sender
,
instance
:
Room
,
**
kwargs
):
def
room_changed_handler
(
sender
,
instance
:
Room
,
**
kwargs
):
# Changes might affect: Room size
# Changes might affect: Room size
...
...
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