Skip to content
Snippets Groups Projects
Commit 842a9936 authored by std-odoo's avatar std-odoo
Browse files

[REF] survey: split computed editable fields

Purpose
=======
Some computed stored editable fields are computed in the same method.

In that case, when one of the value is provided in a create / write call,
the computed method is not called and other fields computed in the same
method do not have the right value.

Task 2377119
COM odoo/odoo/pull/65772
ENT odoo/enterprise/pull/16221
parent d7e55926
No related branches found
No related tags found
No related merge requests found
......@@ -28,8 +28,8 @@ class SurveyInvite(models.TransientModel):
return self.env.user.partner_id
# composer content
subject = fields.Char('Subject', compute='_compute_template_values', readonly=False, store=True)
body = fields.Html('Contents', sanitize_style=True, compute='_compute_template_values', readonly=False, store=True)
subject = fields.Char('Subject', compute='_compute_subject', readonly=False, store=True)
body = fields.Html('Contents', sanitize_style=True, compute='_compute_body', readonly=False, store=True)
attachment_ids = fields.Many2many(
'ir.attachment', 'survey_mail_compose_message_ir_attachments_rel', 'wizard_id', 'attachment_id',
string='Attachments')
......@@ -139,15 +139,20 @@ class SurveyInvite(models.TransientModel):
))
@api.depends('template_id')
def _compute_template_values(self):
def _compute_subject(self):
for invite in self:
if not invite.subject:
invite.subject = ''
if not invite.body:
invite.body = ''
if invite.template_id:
invite.subject = invite.template_id.subject
elif not invite.subject:
invite.subject = False
@api.depends('template_id')
def _compute_body(self):
for invite in self:
if invite.template_id:
invite.body = invite.template_id.body_html
elif not invite.body:
invite.body = False
@api.model
def create(self, values):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment