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