summaryrefslogtreecommitdiff
path: root/addons/rating/models/mail_thread.py
diff options
context:
space:
mode:
authorstephanchrst <stephanchrst@gmail.com>2022-05-10 21:51:50 +0700
committerstephanchrst <stephanchrst@gmail.com>2022-05-10 21:51:50 +0700
commit3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch)
treea44932296ef4a9b71d5f010906253d8c53727726 /addons/rating/models/mail_thread.py
parent0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff)
initial commit 2
Diffstat (limited to 'addons/rating/models/mail_thread.py')
-rw-r--r--addons/rating/models/mail_thread.py29
1 files changed, 29 insertions, 0 deletions
diff --git a/addons/rating/models/mail_thread.py b/addons/rating/models/mail_thread.py
new file mode 100644
index 00000000..e2182ea9
--- /dev/null
+++ b/addons/rating/models/mail_thread.py
@@ -0,0 +1,29 @@
+# -*- coding: utf-8 -*-
+# Part of Odoo. See LICENSE file for full copyright and licensing details.
+
+from odoo import api, models
+
+
+class MailThread(models.AbstractModel):
+ _inherit = 'mail.thread'
+
+ @api.returns('mail.message', lambda value: value.id)
+ def message_post(self, **kwargs):
+ rating_value = kwargs.pop('rating_value', False)
+ rating_feedback = kwargs.pop('rating_feedback', False)
+ message = super(MailThread, self).message_post(**kwargs)
+
+ # create rating.rating record linked to given rating_value. Using sudo as portal users may have
+ # rights to create messages and therefore ratings (security should be checked beforehand)
+ if rating_value:
+ ir_model = self.env['ir.model'].sudo().search([('model', '=', self._name)])
+ self.env['rating.rating'].sudo().create({
+ 'rating': float(rating_value) if rating_value is not None else False,
+ 'feedback': rating_feedback,
+ 'res_model_id': ir_model.id,
+ 'res_id': self.id,
+ 'message_id': message.id,
+ 'consumed': True,
+ 'partner_id': self.env.user.partner_id.id,
+ })
+ return message