models de equipment done
This commit is contained in:
parent
6021cc5a33
commit
3c93b0fa23
5 changed files with 84 additions and 9 deletions
5
equipment/apps.py
Normal file
5
equipment/apps.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from django.apps import AppConfig
|
||||||
|
|
||||||
|
|
||||||
|
class EquipmentConfig(AppConfig):
|
||||||
|
name = 'equipment'
|
0
equipment/migrations/__init__.py
Normal file
0
equipment/migrations/__init__.py
Normal file
77
equipment/models.py
Normal file
77
equipment/models.py
Normal file
|
@ -0,0 +1,77 @@
|
||||||
|
from django.db import models
|
||||||
|
from django.utils.translation import ugettext_lazy as _
|
||||||
|
from event.models import Event, Activity
|
||||||
|
|
||||||
|
|
||||||
|
class AbstractEquipment(models.Model):
|
||||||
|
name = models.CharField(
|
||||||
|
_("Nom du matériel"),
|
||||||
|
max_length=200,
|
||||||
|
)
|
||||||
|
stock = models.PositiveSmallIntegerField(_("Quantité disponible"))
|
||||||
|
description = models.TextField(_("Description"))
|
||||||
|
activities = models.ManyToManyField(
|
||||||
|
Activity,
|
||||||
|
related_name="equipment",
|
||||||
|
through="EquipmentAttribution",
|
||||||
|
)
|
||||||
|
|
||||||
|
class Meta:
|
||||||
|
verbose_name = _("matériel abstrait")
|
||||||
|
verbose_name_plural = _("matériels abstraits")
|
||||||
|
|
||||||
|
def __str__(self):
|
||||||
|
return self.name
|
||||||
|
|
||||||
|
|
||||||
|
class Equipment(AbstractEquipment):
|
||||||
|
class Meta:
|
||||||
|
verbose_name = _("matériel permanent")
|
||||||
|
verbose_name_plural = _("matériels permanents")
|
||||||
|
|
||||||
|
|
||||||
|
class TemporaryEquipment(AbstractEquipment):
|
||||||
|
event = models.ForeignKey(
|
||||||
|
Event,
|
||||||
|
related_name="specific_equipment",
|
||||||
|
help_text=_("Évènement pour lequel le matériel "
|
||||||
|
"a été loué ou empreinté ou apporté"),
|
||||||
|
)
|
||||||
|
|
||||||
|
class Meta:
|
||||||
|
verbose_name = _("matériel temporaire")
|
||||||
|
verbose_name_plural = _("matériels temporaires")
|
||||||
|
|
||||||
|
|
||||||
|
class EquipmentAttribution(models.Model):
|
||||||
|
equipment = models.ForeignKey(AbstractEquipment)
|
||||||
|
activity = models.ForeignKey(Activity)
|
||||||
|
amount = models.PositiveSmallIntegerField(_("Quantité attribuée"))
|
||||||
|
remarks = models.TextField("Remarques concernant l'attribution")
|
||||||
|
|
||||||
|
class Meta:
|
||||||
|
verbose_name = _("attribution de matériel")
|
||||||
|
verbose_name_plural = _("attributions de matériel")
|
||||||
|
|
||||||
|
def __str__(self):
|
||||||
|
return self.equipment.name +\
|
||||||
|
" (" + self.amout + ") " +\
|
||||||
|
" -> " + self.activity.get_herited('title')
|
||||||
|
|
||||||
|
|
||||||
|
class EquipmentRemark(models.Model):
|
||||||
|
remark = models.TextField("Remarque sur le matériel")
|
||||||
|
equipment = models.ForeignKey(
|
||||||
|
AbstractEquipment,
|
||||||
|
related_name="remarks",
|
||||||
|
help_text=_("Matériel concerné par la remarque"),
|
||||||
|
)
|
||||||
|
is_broken = models.BooleanField()
|
||||||
|
is_lost = models.BooleanField()
|
||||||
|
|
||||||
|
class Meta:
|
||||||
|
verbose_name = _("remarque sur matériel")
|
||||||
|
verbose_name_plural = _("remarques sur le matériel")
|
||||||
|
|
||||||
|
def __str__(self):
|
||||||
|
return self.equipment.name + " : " + self.remark
|
0
event/migrations/__init__.py
Normal file
0
event/migrations/__init__.py
Normal file
|
@ -4,8 +4,6 @@ from django.core import exceptions
|
||||||
from django.db import models
|
from django.db import models
|
||||||
from re import search as re_search
|
from re import search as re_search
|
||||||
|
|
||||||
from equipement.models import AbstractEquipement
|
|
||||||
|
|
||||||
|
|
||||||
def validate_color(value):
|
def validate_color(value):
|
||||||
def is_hex_color(s):
|
def is_hex_color(s):
|
||||||
|
@ -159,17 +157,12 @@ class Activity(ActivityTemplate):
|
||||||
related_name="in_perm_activities",
|
related_name="in_perm_activities",
|
||||||
blank=True,
|
blank=True,
|
||||||
)
|
)
|
||||||
equipement = models.ManyToManyField(
|
|
||||||
AbstractEquipement,
|
|
||||||
related_name="activities",
|
|
||||||
through="EquipementAttribution",
|
|
||||||
)
|
|
||||||
|
|
||||||
def get_herited(self, attrname):
|
def get_herited(self, attrname):
|
||||||
attr = super(Activity, self).__getattribute__(attrname)
|
attr = super(Activity, self).__getattribute__(attrname)
|
||||||
if (attrname == 'parent'
|
if (attrname == 'parent'
|
||||||
or attrname == 'staff'
|
or attrname == 'staff'
|
||||||
or attrname == 'equipement'):
|
or attrname == 'equipment'):
|
||||||
return attr
|
return attr
|
||||||
elif (attrname == 'place' or attrname == 'tags'):
|
elif (attrname == 'place' or attrname == 'tags'):
|
||||||
if attr.exists():
|
if attr.exists():
|
||||||
|
@ -194,7 +187,7 @@ class Activity(ActivityTemplate):
|
||||||
# attr = super(Activity, self).__getattribute__(attrname)
|
# attr = super(Activity, self).__getattribute__(attrname)
|
||||||
# if (attrname == 'parent'
|
# if (attrname == 'parent'
|
||||||
# or attrname == 'staff'
|
# or attrname == 'staff'
|
||||||
# or attrname == 'equipement'):
|
# or attrname == 'equipment'):
|
||||||
# return attr
|
# return attr
|
||||||
# elif attr is None:
|
# elif attr is None:
|
||||||
# return self.parent.__getattribute__(attrname)
|
# return self.parent.__getattribute__(attrname)
|
||||||
|
|
Loading…
Reference in a new issue