87329aebb7
Display CC according to notification_type
11 lines
209 B
Python
11 lines
209 B
Python
from odoo import models, fields
|
|
|
|
|
|
class ResCompany(models.Model):
|
|
_inherit = "res.company"
|
|
|
|
show_internal_users_cc = fields.Boolean(
|
|
string='Show Internal Users CC',
|
|
default=True
|
|
)
|