Hello,
I try to inherit the existing model, define some new fields and redefine the state of the default model also, but i do not want this new fields affect the default model (keeping the behaviour of the default model).
Is it possible to achieve that (besides copy the default model)?
---------------------------------------------
Problem solved:
Use 'ir.action.act_window.view' in the action view definition and utilize a method named 'fields_view_get', you can override this method to modify the view that inherit another view without change/affect the default view.
Thanks
Hi yopi, I just encounter a similar problem. Can you explain in details on how to do it? especially the method you mentioned. Thanks a lot!