"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
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
"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()
Cree una cuenta para poder utilizar funciones exclusivas e interactuar con la comunidad.
Inscribirse
1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.