a05dd4fda2
* [ADD] Module that insert activities board. * [FIX] Author error in __manifest__ file and style changes. * [FIX] Fix replace in view, rename files and style changes. * [FIX] Enumerated list ends without a blank line; unexpected unindent. * [FIX] Name fail. * [FIX] Bug in view. * [FIX] Add button Activities in mail.thread and readme folder. Others improvements in style of code. * [FIX] Type 'tree' not found in registry: problem solved. * [FIX] Dependence change: 'mail' for 'calendar'. * [FIX] Eliminated unnecessary imports. * [FIX] Bugs about js and if/else. * [FIX] Improvements following guide lines and eliminating unnecessary attributes in views. * [ADD] Added counter in the 'Activities List' button. * [FIX] Bugs in javascript with 'Activities' button. * [ADD] Tests folder. * [FIX] Deleted references to modules not installed. * [FIX] Formatting javascript. * [FIX] Bug: added a soft line before a class. * [FIX] Bug: https://github.com/OCA/social/pull/283#discussion_r204302325 * [FIX] Escaping 'lt' in xml file. Bug: https://github.com/OCA/social/pull/283#discussion_r204302325 * [FIX] The meeting attendees are shown in kanban mode on the meeting board. * [FIX] Hide in form view of the activity board the assistant field if the activity is not a meeting type or if there are no assistants. * [FIX] Change to default kanban view for partners.
46 lines
1.4 KiB
Python
46 lines
1.4 KiB
Python
# Copyright 2018 David Juaneda - <djuaneda@sdi.es>
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
from odoo import api, models, fields
|
|
|
|
|
|
class MailActivity(models.Model):
|
|
_inherit = "mail.activity"
|
|
|
|
res_model_id_name = fields.Char(
|
|
related='res_model_id.name', string="Origin",
|
|
readonly=True)
|
|
duration = fields.Float(
|
|
related='calendar_event_id.duration', readonly=True)
|
|
calendar_event_id_start = fields.Datetime(
|
|
related='calendar_event_id.start', readonly=True)
|
|
calendar_event_id_partner_ids = fields.Many2many(
|
|
related='calendar_event_id.partner_ids',
|
|
readonly=True)
|
|
|
|
@api.multi
|
|
def open_origin(self):
|
|
self.ensure_one()
|
|
vid = self.env[self.res_model].browse(self.res_id).get_formview_id()
|
|
response = {
|
|
'type': 'ir.actions.act_window',
|
|
'res_model': self.res_model,
|
|
'view_mode': 'form',
|
|
'res_id': self.res_id,
|
|
'target': 'current',
|
|
'flags': {
|
|
'form': {
|
|
'action_buttons': False
|
|
}
|
|
},
|
|
'views': [
|
|
(vid, "form")
|
|
]
|
|
}
|
|
return response
|
|
|
|
@api.model
|
|
def action_activities_board(self):
|
|
action = self.env.ref(
|
|
'mail_activity_board.open_boards_activities').read()[0]
|
|
return action
|