Hello every one
I try to remove one option from selection field by redefine filed without unwanted option, but it is still visible
stander code :
gender = fields.Selection([
('male', 'Male'),
('female', 'Female'),
('other', 'Other')], groups="hr.group_hr_user", tracking=True)
custom code :
gender = fields.Selection([
('male', 'Male'),
('female', 'Female'),
], tracking=True)
Thank you
it works by your solution