forked from Mapan/odoo17e
24 lines
884 B
Python
24 lines
884 B
Python
# -*- coding:utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import _, api, models
|
|
|
|
from odoo.exceptions import UserError
|
|
|
|
|
|
class UtmMedium(models.Model):
|
|
_inherit = 'utm.medium'
|
|
|
|
@api.ondelete(at_uninstall=False)
|
|
def _unlink_except_linked_social_accounts(self):
|
|
""" Already handled by ondelete='restrict', but let's show a nice error message """
|
|
linked_social_accounts = self.env['social.account'].sudo().search([
|
|
('utm_medium_id', 'in', self.ids)
|
|
])
|
|
|
|
if linked_social_accounts:
|
|
raise UserError(_(
|
|
"You cannot delete these UTM Mediums as they are linked to the following social accounts in "
|
|
"Social:\n%(social_accounts)s",
|
|
social_accounts=', '.join(['"%s"' % name for name in linked_social_accounts.mapped('name')])))
|