87329aebb7
Display CC according to notification_type
12 lines
288 B
Python
12 lines
288 B
Python
from odoo import fields, models
|
|
|
|
|
|
class ResConfigSettings(models.TransientModel):
|
|
_inherit = 'res.config.settings'
|
|
|
|
show_internal_users_cc = fields.Boolean(
|
|
string='Show Internal Users CC',
|
|
related='company_id.show_internal_users_cc',
|
|
readonly=False
|
|
)
|