Save calculated duration to database

This commit is contained in:
2023-01-04 17:25:19 +01:00
parent bf61326c18
commit b3842504af
2 changed files with 6 additions and 0 deletions

View File

@ -52,3 +52,8 @@ class Session(models.Model):
if self.duration_manual == None
else self.duration_manual + self.calculated_duration()
)
def save(self, *args, **kwargs):
if self.timestamp_start != None and self.timestamp_end != None:
self.duration_calculated = self.timestamp_end - self.timestamp_start
super(Session, self).save(*args, **kwargs)