Améliorations syntaxiques

This commit is contained in:
eloyoussef 2018-02-08 12:22:52 +01:00
parent 3a42ea0a54
commit 15a23e460f
1 changed files with 3 additions and 3 deletions

View File

@ -17,7 +17,7 @@
from odoo import models, fields, api
from odoo import models, fields, api, exceptions
#modèle de base : ressources
class GolemResources(models.Model):
""" GOLEM Resources """
@ -98,8 +98,8 @@ class GolemTimetable(models.Model):
start_time = fields.Float(required=True)
end_time = fields.Float(required=True)
@api.constraint('start_time','end_time')
@api.constrains('start_time', 'end_time')
def _check_time_consistency(self):
for r in self:
if r.end_time < r.start_time:
raise ValidationError("End time should be higher than start time")
raise exceptions.ValidationError('End time should be higher than start time')