# -*- coding: utf-8 -*- # Copyright 2016 Fabien Bourgeois # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . from openerp import models, fields, api, _ class GolemSeason(models.Model): """ GOLEM Season """ _name = 'golem.season' _description = 'GOLEM Season' _order = 'date_start desc' name = fields.Char('Season name') date_start = fields.Date('Period start') date_end = fields.Date('Period end') @api.constrains('date_start', 'date_end') def _check_period(self): """ Check if end date if after start date and if there is no conflict with existing periods """ for season in self: if season.date_start > season.date_end: raise models.ValidationError(_('Start of the period cannot be ' 'after end of the period.')) else: seasons = self.env['golem.season'].search([]) for s in seasons: print s.name if s.date_start < season.date_start < s.date_end: msg = _('Start of the period is in range of an ' 'existing period {}'.format(s.name)) raise models.ValidationError(msg) if s.date_start < season.date_end < s.date_end: msg = _('End of the period is in range of an ' 'existing period {}'.format(s.name)) raise models.ValidationError(msg) if season.date_start < s.date_start < season.date_end: msg = _('Period {} cannot be included into current ' 'period'.format(s.name)) raise models.ValidationError(msg)