18 lines
563 B
Python
18 lines
563 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||
|
|
||
|
from odoo import fields, models, _
|
||
|
|
||
|
|
||
|
class Alias(models.Model):
|
||
|
_inherit = 'mail.alias'
|
||
|
|
||
|
alias_contact = fields.Selection(selection_add=[
|
||
|
('employees', 'Authenticated Employees'),
|
||
|
], ondelete={'employees': 'cascade'})
|
||
|
|
||
|
def _get_alias_contact_description(self):
|
||
|
if self.alias_contact == 'employees':
|
||
|
return _('addresses linked to registered employees')
|
||
|
return super(Alias, self)._get_alias_contact_description()
|