Inherit form view from a predefined module

旧时模样 提交于 2019-12-06 05:55:16

If you inherit the view and add some fields using 'xpath' , than it will change the original view by installing your new module. This is the application of view inheritance. If you want to keep the original form view as it is after the installation of your module and want to define another which have some extra fields only for your customized module, you have to make a different form view without inheriting the original one. May be in future , there will be a facility of extending an existing form view, but right now you can't do that.

I think you need to check view_id in your code may be a view_id is common so you are updating a default view of sale order.

When you are inherit one view of sale order a functionality will be added in a form not whole view will be generated.

Still this is not solution send me your code i will review it.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!