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 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import api, fields, models
from odoo.exceptions import UserError
from odoo.osv.expression import OR
bypass_token = object()
DOMAINS = {
'account.move': lambda operator, value: [('company_id.check_account_audit_trail', operator, value)],
'account.account': lambda operator, value: [('company_ids.check_account_audit_trail', operator, value)],
'account.tax': lambda operator, value: [('company_id.check_account_audit_trail', operator, value)],
'res.partner': lambda operator, value: [
'|', ('company_id', '=', False), ('company_id.check_account_audit_trail', operator, value),
'|', ('customer_rank', '>', 0), ('supplier_rank', '>', 0),
],
'res.company': lambda operator, value: [('check_account_audit_trail', operator, value)],
}
class Message(models.Model):
_inherit = 'mail.message'
account_audit_log_preview = fields.Text(string="Description", compute="_compute_account_audit_log_preview")
account_audit_log_move_id = fields.Many2one(
comodel_name='account.move',
string="Journal Entry",
compute="_compute_account_audit_log_move_id",
search="_search_account_audit_log_move_id",
)
account_audit_log_partner_id = fields.Many2one(
comodel_name='res.partner',
string="Partner",
compute="_compute_account_audit_log_partner_id",
search="_search_account_audit_log_partner_id",
)
account_audit_log_account_id = fields.Many2one(
comodel_name='account.account',
string="Account",
compute="_compute_account_audit_log_account_id",
search="_search_account_audit_log_account_id",
)
account_audit_log_tax_id = fields.Many2one(
comodel_name='account.tax',
string="Tax",
compute="_compute_account_audit_log_tax_id",
search="_search_account_audit_log_tax_id",
)
account_audit_log_company_id = fields.Many2one(
comodel_name='res.company',
string="Company ",
compute="_compute_account_audit_log_company_id",
search="_search_account_audit_log_company_id",
)
account_audit_log_activated = fields.Boolean(
string="Audit Log Activated",
compute="_compute_account_audit_log_activated",
search="_search_account_audit_log_activated",
)
@api.depends('tracking_value_ids')
def _compute_account_audit_log_preview(self):
audit_messages = self.filtered('account_audit_log_activated')
(self - audit_messages).account_audit_log_preview = False
for message in audit_messages:
title = message.subject or message.preview
tracking_value_ids = message.sudo().tracking_value_ids._filter_has_field_access(self.env)
if not title and tracking_value_ids:
title = self.env._("Updated")
if not title and message.subtype_id and not message.subtype_id.internal:
title = message.subtype_id.display_name
audit_log_preview = (title or '') + '\n'
audit_log_preview += "\n".join(
"%(old_value)s ⇨ %(new_value)s (%(field)s)" % {
'old_value': fmt_vals['oldValue']['value'],
'new_value': fmt_vals['newValue']['value'],
'field': fmt_vals['changedField'],
}
for fmt_vals in tracking_value_ids._tracking_value_format()
)
message.account_audit_log_preview = audit_log_preview
def _compute_account_audit_log_move_id(self):
self._compute_audit_log_related_record_id('account.move', 'account_audit_log_move_id')
def _search_account_audit_log_move_id(self, operator, value):
return self._search_audit_log_related_record_id('account.move', operator, value)
def _compute_account_audit_log_account_id(self):
self._compute_audit_log_related_record_id('account.account', 'account_audit_log_account_id')
def _search_account_audit_log_account_id(self, operator, value):
return self._search_audit_log_related_record_id('account.account', operator, value)
def _compute_account_audit_log_tax_id(self):
self._compute_audit_log_related_record_id('account.tax', 'account_audit_log_tax_id')
def _search_account_audit_log_tax_id(self, operator, value):
return self._search_audit_log_related_record_id('account.tax', operator, value)
def _compute_account_audit_log_company_id(self):
self._compute_audit_log_related_record_id('res.company', 'account_audit_log_company_id')
def _search_account_audit_log_company_id(self, operator, value):
return self._search_audit_log_related_record_id('res.company', operator, value)
def _compute_account_audit_log_partner_id(self):
self._compute_audit_log_related_record_id('res.partner', 'account_audit_log_partner_id')
def _search_account_audit_log_partner_id(self, operator, value):
return self._search_audit_log_related_record_id('res.partner', operator, value)
def _compute_account_audit_log_activated(self):
for message in self:
message.account_audit_log_activated = message.message_type == 'notification' and (
message.account_audit_log_move_id
or message.account_audit_log_account_id
or message.account_audit_log_tax_id
or message.account_audit_log_partner_id
or message.account_audit_log_company_id
)
def _search_account_audit_log_activated(self, operator, value):
if operator not in ['=', '!='] or not isinstance(value, bool):
raise UserError(self.env._('Operation not supported'))
return [('message_type', '=', 'notification')] + OR([
[('model', '=', model), ('res_id', 'in', self.env[model]._search(DOMAINS[model](operator, value)))]
for model in DOMAINS
])
def _compute_audit_log_related_record_id(self, model, fname):
messages_of_related = self.filtered(lambda m: m.model == model and m.res_id)
(self - messages_of_related)[fname] = False
if messages_of_related:
domain = DOMAINS[model](operator='=', value=True)
related_recs = self.env[model].sudo().search([('id', 'in', messages_of_related.mapped('res_id'))] + domain)
recs_by_id = {record.id: record for record in related_recs}
for message in messages_of_related:
message[fname] = recs_by_id.get(message.res_id, False)
def _search_audit_log_related_record_id(self, model, operator, value):
if operator in ['=', 'like', 'ilike', '!=', 'not ilike', 'not like'] and isinstance(value, str):
res_id_domain = [('res_id', 'in', self.env[model]._search([('display_name', operator, value)]))]
elif operator in ['=', 'in', '!=', 'not in']:
res_id_domain = [('res_id', operator, value)]
else:
raise UserError(self.env._('Operation not supported'))
return [('model', '=', model)] + res_id_domain
@api.ondelete(at_uninstall=True)
def _except_audit_log(self):
if self.env.context.get('bypass_audit') is bypass_token:
return
for message in self:
if message.account_audit_log_activated and not (
message.account_audit_log_move_id
and not message.account_audit_log_move_id.posted_before
):
raise UserError(self.env._("You cannot remove parts of the audit trail. Archive the record instead."))
def write(self, vals):
if (
vals.keys() & {'res_id', 'res_model', 'message_type', 'subtype_id'}
or ('subject' in vals and any(self.mapped('subject')))
or ('body' in vals and any(self.mapped('body')))
):
self._except_audit_log()
return super().write(vals)
|