تخطي للذهاب إلى المحتوى
القائمة
لقد تم الإبلاغ عن هذا السؤال
1 الرد
1457 أدوات العرض
"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()

الصورة الرمزية
إهمال