This commit is contained in:
michel 2017-11-10 17:28:46 +01:00
parent d183b8b344
commit 05f69c4aec
1 changed files with 2 additions and 4 deletions

View File

@ -31,9 +31,7 @@ class Event(models.Model):
def _compute_duration(self):
for event in self:
if event.duration is True:
fmt = '%Y-%m-%d'
t1 = fields.Datetime.from_string(event.date_end)
t2 = fields.Datetime.from_string(event.date_start)
d1 = datetime.strptime(t1, fmt)
d2 = datetime.strptime(t2, fmt)
daysDiff = str((d2-d1).day)
delta = t1 - t2
hours = delta.days * 24.0 + round(float(delta.seconds) / 3600.0)