How i can delete a field from an inheritance class

Hi , i have a class B inherit from class A and i want that some fields in class A don’t be exit in class B . How i can do that ?

First the Pool registration does not create inheritance but extension. So by definition you can not remove field from the model extended.

1 Like

Does that mean that i will have the same records in the menu “A” and in the menu"B" that represent respectively the window of the class A and the class B?

if yes is their any other solution?

Tryton is not working with classical classes but with reconstructed classes which has the same __name__ attribute.

I do not know what you try to achieve.