У меня есть следующая модель:
class Step(models.Model):
order = models.IntegerField()
latitude = models.FloatField()
longitude = models.FloatField()
date = DateField(blank=True, null=True)
class Journey(models.Model):
boat = models.ForeignKey(Boat)
route = models.ManyToManyField(Step)
departure = models.ForeignKey(Step, related_name="departure_of", null=True)
arrival = models.ForeignKey(Step, related_name="arrival_of", null=True)
Я бы хотел выполнить следующую проверку:
# If a there is less than one step, raises ValidationError.
routes = tuple(self.route.order_by("date"))
if len(routes) <= 1:
raise ValidationError("There must be at least two setps in the route")
# save the first and the last step as departure and arrival
self.departure = routes[0]
self.arrival = routes[-1]
# departure and arrival must at least have a date
if not (self.departure.date or self.arrival.date):
raise ValidationError("There must be an departure and an arrival date. "
"Please set the date field for the first and last Step of the Journey")
# departure must occurs before arrival
if not (self.departure.date > self.arrival.date):
raise ValidationError("Departure must take place the same day or any date before arrival. "
"Please set accordingly the date field for the first and last Step of the Journey")
Я пытался сделать это, перегрузив save()
. К сожалению, Journey.route
пуст в save()
. Более того, Journey.id
еще не существует. Я не пробовал django.db.models.signals.post_save
, но предположил, что он не удастся, потому что Journey.route
также пуст (когда это все равно заполняется?) Я вижу решение в django.db.models.signals.m2m_changed
, но есть много шагов (тысяч), и я хочу избежать выполнения операции для каждого из них.