2016-06-26 06:31:15 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
# Copyright 2016 Fabien Bourgeois <fabien@yaltik.com>
|
|
|
|
#
|
|
|
|
# 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 <http://www.gnu.org/licenses/>.
|
|
|
|
|
2017-05-01 16:27:16 +02:00
|
|
|
""" GOLEM Season management """
|
2016-06-26 06:31:15 +02:00
|
|
|
|
2017-05-01 16:27:16 +02:00
|
|
|
from odoo import models, fields, api, _
|
2016-06-26 06:31:15 +02:00
|
|
|
|
|
|
|
class GolemSeason(models.Model):
|
|
|
|
""" GOLEM Season """
|
|
|
|
_name = 'golem.season'
|
|
|
|
_description = 'GOLEM Season'
|
|
|
|
_order = 'date_start desc'
|
2016-07-13 17:48:34 +02:00
|
|
|
_sql_constraints = [('golem_season_name_uniq', 'UNIQUE (name)',
|
|
|
|
_('This season name has already been used.'))]
|
2016-06-26 06:31:15 +02:00
|
|
|
|
2017-05-01 16:27:16 +02:00
|
|
|
name = fields.Char('Season name', copy=False)
|
2016-07-08 16:12:12 +02:00
|
|
|
member_counter = fields.Integer('Counter for member number generation',
|
2017-06-05 15:55:50 +02:00
|
|
|
readonly=True, default=1)
|
2016-06-26 06:31:15 +02:00
|
|
|
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([])
|
2017-05-01 16:27:16 +02:00
|
|
|
for eachs in seasons:
|
|
|
|
if eachs.date_start < season.date_start < eachs.date_end:
|
2016-07-11 20:14:53 +02:00
|
|
|
msg = _(u'Start of the period is in range of an '
|
|
|
|
'existing period.')
|
2016-06-26 06:31:15 +02:00
|
|
|
raise models.ValidationError(msg)
|
2017-05-01 16:27:16 +02:00
|
|
|
if eachs.date_start < season.date_end < eachs.date_end:
|
2016-07-11 20:14:53 +02:00
|
|
|
msg = _(u'End of the period is in range of an '
|
|
|
|
'existing period.')
|
2016-06-26 06:31:15 +02:00
|
|
|
raise models.ValidationError(msg)
|
2017-05-01 16:27:16 +02:00
|
|
|
if season.date_start < eachs.date_start < season.date_end:
|
2016-07-11 20:14:53 +02:00
|
|
|
msg = _(u'Current period cannot be included into '
|
|
|
|
'another existing period.')
|
2016-06-26 06:31:15 +02:00
|
|
|
raise models.ValidationError(msg)
|
2016-07-07 17:16:43 +02:00
|
|
|
|
2016-07-11 07:11:27 +02:00
|
|
|
is_default = fields.Boolean('Default season for views?', readonly=True)
|
|
|
|
|
2017-05-01 16:27:16 +02:00
|
|
|
@api.multi
|
2016-07-11 07:11:27 +02:00
|
|
|
def do_default_season(self):
|
2016-07-13 17:37:44 +02:00
|
|
|
""" is_default on and ensure that only one is_default is active. Also
|
|
|
|
recomputes is_current for members and activities. For simplicity use a
|
|
|
|
magic trick around registry rather than double inheritance """
|
2017-05-01 16:27:16 +02:00
|
|
|
self.ensure_one()
|
2016-07-07 17:16:43 +02:00
|
|
|
old_default_season = self.search([('is_default', '=', True)])
|
2016-07-11 20:14:53 +02:00
|
|
|
if old_default_season:
|
|
|
|
old_default_season.is_default = False
|
2016-07-11 07:11:27 +02:00
|
|
|
self.is_default = True
|
2016-07-13 17:37:44 +02:00
|
|
|
if 'golem.member' in self.env.registry:
|
|
|
|
all_members = self.env['golem.member'].search([])
|
2017-05-02 01:31:45 +02:00
|
|
|
all_members.compute_is_current()
|
|
|
|
all_members.generate_number()
|
2016-07-13 17:37:44 +02:00
|
|
|
if 'golem.activity' in self.env.registry:
|
2017-05-02 01:31:45 +02:00
|
|
|
self.env['golem.activity'].search([]).compute_is_current()
|
2016-07-11 07:11:27 +02:00
|
|
|
|
2016-07-13 17:43:35 +02:00
|
|
|
@api.model
|
|
|
|
@api.returns('self', lambda rec: rec.id)
|
|
|
|
def create(self, values):
|
|
|
|
""" If the season if the first one created, it must be by default """
|
|
|
|
if self.search_count([]) == 0:
|
|
|
|
values['is_default'] = True
|
|
|
|
return super(GolemSeason, self).create(values)
|
|
|
|
|
2016-07-11 07:23:58 +02:00
|
|
|
@api.multi
|
|
|
|
def unlink(self):
|
2016-07-13 17:43:35 +02:00
|
|
|
""" Forbids default season removal """
|
2017-05-01 16:27:16 +02:00
|
|
|
for season in self:
|
|
|
|
if season.is_default:
|
2016-07-11 07:23:58 +02:00
|
|
|
emsg = _('You can\'t delete the default season')
|
|
|
|
raise models.ValidationError(emsg)
|
|
|
|
else:
|
|
|
|
return super(GolemSeason, self).unlink()
|