2020-03-19 20:30:34 +01:00
|
|
|
# Copyright 2020 Alexandre Díaz
|
|
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
|
|
|
|
|
|
from odoo import api, models, tools
|
|
|
|
|
|
|
|
|
|
|
|
class MailAlias(models.Model):
|
|
|
|
_inherit = "mail.alias"
|
|
|
|
|
|
|
|
@api.model
|
|
|
|
@tools.ormcache()
|
|
|
|
def get_aliases(self):
|
2020-04-16 19:36:32 +02:00
|
|
|
aliases = {
|
2020-03-19 20:30:34 +01:00
|
|
|
x["display_name"]
|
|
|
|
for x in self.search_read([("alias_name", "!=", False)], ["display_name"])
|
|
|
|
}
|
2020-04-16 19:36:32 +02:00
|
|
|
IrConfigParamObj = self.env["ir.config_parameter"].sudo()
|
|
|
|
catchall = "{}@{}".format(
|
|
|
|
IrConfigParamObj.get_param("mail.catchall.alias"),
|
|
|
|
IrConfigParamObj.get_param("mail.catchall.domain"),
|
|
|
|
)
|
|
|
|
aliases.add(catchall)
|
|
|
|
return aliases
|
2020-03-19 20:30:34 +01:00
|
|
|
|
|
|
|
@api.model_create_multi
|
|
|
|
def create(self, vals_list):
|
|
|
|
res = super().create(vals_list)
|
|
|
|
self.clear_caches()
|
|
|
|
return res
|
|
|
|
|
|
|
|
def write(self, vals):
|
|
|
|
res = super().write(vals)
|
|
|
|
if "alias_name" in vals:
|
|
|
|
self.clear_caches()
|
|
|
|
return res
|
|
|
|
|
|
|
|
def unlink(self):
|
|
|
|
res = super().unlink()
|
|
|
|
self.clear_caches()
|
|
|
|
return res
|