1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
# -*- coding: utf-8 -*-
##############################################################################
#
# Purchase - Computed Purchase Order Module for Odoo
# Copyright (C) 2016-Today: La Louve (<http://www.lalouve.net/>)
# @author Julien WESTE
# @author Sylvain LE GAL (https://twitter.com/legalsylvain)
#
# 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/>.
#
##############################################################################
from openerp import models, fields, api, _
from openerp.exceptions import ValidationError
class ShiftTemplateRegistration(models.Model):
_inherit = 'event.registration'
_name = 'shift.template.registration'
_description = 'Attendee'
_order = 'shift_ticket_id,name'
event_id = fields.Many2one(required=False)
shift_template_id = fields.Many2one(
'shift.template', string='Template', required=True, ondelete='cascade')
email = fields.Char(readonly=True, related='partner_id.email')
phone = fields.Char(readonly=True, related='partner_id.phone')
name = fields.Char(readonly=True, related='partner_id.name', store=True)
partner_id = fields.Many2one(required=True)
user_ids = fields.Many2many(related="shift_template_id.user_ids")
shift_ticket_id = fields.Many2one(
'shift.template.ticket', 'Shift Ticket', required=True,
default=lambda rec: rec._get_default_ticket(), copy=True)
shift_ticket_product_id = fields.Many2one(
'product.product', 'Ticket Product',
related='shift_ticket_id.product_id', store=True)
line_ids = fields.One2many(
'shift.template.registration.line', 'registration_id', string='Lines',
default=lambda rec: rec._default_lines(), copy=True)
state = fields.Selection()
template_start_date = fields.Date(
string="Template Start Date", related='shift_template_id.start_date',
readonly=True)
template_start_time = fields.Float(
string="Template Start Time", related='shift_template_id.start_time',
readonly=True)
is_current = fields.Boolean(compute="_compute_current", multi="current")
is_future = fields.Boolean(compute="_compute_current", multi="current")
is_past = fields.Boolean(compute="_compute_current", multi="current")
_sql_constraints = [(
'template_registration_uniq',
'unique (shift_template_id, partner_id)',
'This partner is already registered on this Shift Template !'),
]
@api.one
@api.constrains(
'shift_template_id.shift_type_id', 'shift_ticket_product_id')
def _check_registration_type(self):
if self.shift_template_id.shift_type_id == self.env.ref(
'coop_shift.shift_type') and\
self.shift_ticket_product_id != self.env.ref(
'coop_shift.product_product_shift_standard'):
raise ValidationError(_(
'Inscriptions on ABCD Templates must be Standard type!'))
if self.shift_template_id.shift_type_id == self.env.ref(
'coop_shift.shift_type_ftop') and\
self.shift_ticket_product_id != self.env.ref(
'coop_shift.product_product_shift_ftop'):
raise ValidationError(_(
'Inscriptions on FTOP Templates must be FTOP type!'))
@api.multi
@api.model
def _compute_current(self):
for reg in self:
reg.is_current = any(line.is_current for line in reg.line_ids)
if reg.is_current:
reg.is_future = False
reg.is_past = False
else:
reg.is_future = any(line.is_future for line in reg.line_ids)
if reg.is_future:
reg.is_past = False
else:
reg.is_past = any(line.is_past for line in reg.line_ids)
@api.model
def _get_default_ticket(self):
if self.env.context.get('active_model', False) != "shift.template":
return False
active_id = self.env.context.get('active_id', False)
if active_id:
template = self.env['shift.template'].browse(
active_id)
if template.shift_type_id ==\
self.env.ref('coop_shift.shift_type'):
return template.shift_ticket_ids.filtered(
lambda t, s=self: t.product_id == s.env.ref(
'coop_shift.product_product_shift_standard'))[0] or\
False
else:
return template.shift_ticket_ids.filtered(
lambda t, s=self: t.product_id == s.env.ref(
'coop_shift.product_product_shift_ftop'))[0] or\
False
else:
return False
@api.model
def _default_lines(self):
if self.env.context.get('no_default_line', False):
return None
return [
{
'state': 'open',
'date_begin': fields.Datetime.now(),
}]
@api.model
def _get_state(self, date_check):
for line in self.line_ids:
if (not line.date_begin or date_check >= line.date_begin) and\
(not line.date_end or date_check <= line.date_end):
return line.state, line.id
return False, False
@api.multi
@api.constrains('line_ids')
def _check_dates(self):
for reg in self:
ok = True
for line in reg.line_ids:
if line.date_begin and line.date_end and\
line.date_begin > line.date_end:
raise ValidationError(_(
"""Begin date is greater than End date:"""
""" \n begin: %s end: %s state: %s;""" % (
line.date_begin, line.date_end, line.state)))
for line2 in reg.line_ids:
if line2 == line:
continue
b1 = line.date_begin or min(
line.date_end, line2.date_begin, line2.date_end)
b2 = line2.date_begin or min(
line.date_begin, line.date_end, line2.date_end)
e1 = line.date_end or max(
line.date_begin, line2.date_begin, line2.date_end)
e2 = line2.date_end or max(
line.date_begin, line.date_end, line2.date_begin)
if b1 <= e2 and b2 <= e1:
ok = False
break
if not ok:
break
if not ok:
raise ValidationError(_(
"""These dates overlap:"""
""" \n - Line1: begin: %s end: %s state: %s;"""
""" \n - Line2: begin: %s end: %s state: %s;""" % (
line.date_begin, line.date_end, line.state,
line2.date_begin, line2.date_end, line2.state)))
@api.multi
@api.onchange("shift_template_id")
def onchange_shift_id(self):
standard_product = self.env.ref(
"coop_shift.product_product_shift_standard")
for reg in self:
reg.shift_ticket_id = reg.shift_template_id.shift_ticket_ids.\
filtered(lambda t: t.product_id == standard_product)