mpeltriaux
2fa2876090
* adds support for POST of new compensations * adds shared_users property to BaseObject and Compensation to simplify fetching of shared users (Compensation inherits from intervention) * extends compensation admin index * modifies compensation manager which led to invisibility of deleted entries in the admin backend * fixes bug in sanitize_db.py where CREATED useractions would be removed if they are not found on any log but still are used on the .created attribute of the objects
73 lines
1.8 KiB
Python
73 lines
1.8 KiB
Python
"""
|
|
Author: Michel Peltriaux
|
|
Organization: Struktur- und Genehmigungsdirektion Nord, Rhineland-Palatinate, Germany
|
|
Contact: michel.peltriaux@sgdnord.rlp.de
|
|
Created on: 14.10.21
|
|
|
|
"""
|
|
from django.db import models
|
|
|
|
|
|
class CompensationActionManager(models.Manager):
|
|
""" Holds default db fetch setting for this model type
|
|
|
|
"""
|
|
def get_queryset(self):
|
|
return super().get_queryset().select_related(
|
|
"action_type",
|
|
"action_type__parent"
|
|
)
|
|
|
|
|
|
class CompensationStateManager(models.Manager):
|
|
""" Holds default db fetch setting for this model type
|
|
|
|
"""
|
|
def get_queryset(self):
|
|
return super().get_queryset().select_related(
|
|
"biotope_type",
|
|
"biotope_type__parent"
|
|
)
|
|
|
|
|
|
class CompensationManager(models.Manager):
|
|
""" Holds default db fetch setting for this model type
|
|
|
|
"""
|
|
def get_queryset(self):
|
|
return super().get_queryset().select_related(
|
|
"modified",
|
|
"intervention",
|
|
"intervention__recorded",
|
|
"intervention__recorded__user",
|
|
"intervention__modified",
|
|
"intervention__checked",
|
|
"intervention__checked__user",
|
|
)
|
|
|
|
|
|
class EcoAccountManager(models.Manager):
|
|
""" Holds default db fetch setting for this model type
|
|
|
|
"""
|
|
def get_queryset(self):
|
|
return super().get_queryset().select_related(
|
|
"recorded",
|
|
"recorded__user",
|
|
"modified",
|
|
"modified__user",
|
|
).prefetch_related(
|
|
"users",
|
|
)
|
|
|
|
|
|
class EcoAccountDeductionManager(models.Manager):
|
|
""" Holds default db fetch setting for this model type
|
|
|
|
"""
|
|
def get_queryset(self):
|
|
return super().get_queryset().select_related(
|
|
"intervention",
|
|
"intervention__recorded",
|
|
"created",
|
|
) |