This commit is contained in:
michel 2017-11-10 17:09:59 +01:00
parent 4c687fb6a5
commit d183b8b344
1 changed files with 2 additions and 0 deletions

View File

@ -31,7 +31,9 @@ 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)