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
|
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import api, fields, models
class ProjectTask(models.Model):
_name = "project.task"
_inherit = ["project.task", 'pad.common']
_description = 'Task'
description_pad = fields.Char('Pad URL', pad_content_field='description', copy=False)
use_pad = fields.Boolean(related="project_id.use_pads", string="Use collaborative pad", readonly=True)
pad_availability = fields.Selection(
related="project_id.pad_availability",
string="Availability of collaborative pads",
readonly=True)
@api.onchange('use_pad')
def _onchange_use_pads(self):
""" Copy the content in the pad when the user change the project of the task to the one with no pads enabled.
This case is when the use_pad becomes False and we have already generated the url pad,
that is the description_pad field contains the url of the pad.
"""
if not self.use_pad and self.description_pad:
vals = {'description_pad': self.description_pad}
self._set_pad_to_field(vals)
self.description = vals['description']
@api.model
def create(self, vals):
# When using quick create, the project_id is in the context, not in the vals
project_id = vals.get('project_id', False) or self.default_get(['project_id']).get('project_id', False)
if not self.env['project.project'].browse(project_id).use_pads:
self = self.with_context(pad_no_create=True)
return super(ProjectTask, self).create(vals)
def _use_portal_pad(self):
"""
Indicates if the task configuration requires to provide
an access to a portal pad.
"""
self.ensure_one()
return self.use_pad and self.pad_availability == 'portal'
def _get_pad_content(self):
"""
Gets the content of the pad used to edit the task description
and returns it.
"""
self.ensure_one()
return self.pad_get_content(self.description_pad)
class ProjectProject(models.Model):
_name = "project.project"
_inherit = ["project.project", 'pad.common']
_description = 'Project'
description_pad = fields.Char('Pad URL', pad_content_field='description', copy=False)
use_pads = fields.Boolean("Use collaborative pads", default=True,
help="Use collaborative pad for the tasks on this project.")
pad_availability = fields.Selection([
('internal', 'Internal Users'),
('portal', 'Internal Users & Portal Users')
], compute='_compute_pad_availability', store=True, readonly=False,
string='Availability of collaborative pads', required=True, default='internal')
@api.depends('use_pads', 'privacy_visibility')
def _compute_pad_availability(self):
for project in self:
if project.privacy_visibility != 'portal' or not project.use_pads:
project.pad_availability = 'internal'
|