콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
1 회신
1450 화면
"openeducat_core.menu_op_course_sub"
Is there any way to inherit a model and disable all the fields and add new custom fields in odoo 1


아바타
취소
베스트 답변

May be You could use this code to Disable, You can try this if this works for you

class TestModel(models.Model):
_inherit = 'test.model'

# Disable all fields inherited from the existing model
_fields_blacklist = _inherit.fields_get().keys()

아바타
취소