8 lines
158 B
Python
8 lines
158 B
Python
from odoo import fields, models
|
|
|
|
|
|
class ResUser(models.Model):
|
|
_inherit = "res.users"
|
|
|
|
show_in_cc = fields.Boolean(string="Show in CC", default=True)
|