2018-01-16 06:58:15 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
2018-01-16 11:34:37 +01:00
|
|
|
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
|
2018-01-16 06:58:15 +01:00
|
|
|
|
2018-01-16 11:34:37 +01:00
|
|
|
from flectra import api, fields, models
|
2018-01-16 06:58:15 +01:00
|
|
|
|
|
|
|
|
|
|
|
class MailMessage(models.Model):
|
|
|
|
_inherit = 'mail.message'
|
|
|
|
|
|
|
|
rating_ids = fields.One2many('rating.rating', 'message_id', string='Related ratings')
|
|
|
|
rating_value = fields.Float("Rating Value", compute='_compute_rating_value', store=True)
|
|
|
|
|
|
|
|
@api.multi
|
|
|
|
@api.depends('rating_ids', 'rating_ids.rating')
|
|
|
|
def _compute_rating_value(self):
|
|
|
|
ratings = self.env['rating.rating'].search([('message_id', 'in', self.ids), ('consumed', '=', True)], order='create_date DESC')
|
|
|
|
mapping = dict((r.message_id.id, r.rating) for r in ratings)
|
|
|
|
for message in self:
|
|
|
|
message.rating_value = mapping.get(message.id, 0.0)
|