Hi,
If you create a module with name A, and you inherit its form view by
<field name=”inherit_id” ref=”mrp.mrp_production_form_view”/>
after inheriting it you change the form view as you like, Mr. Amal already provide a perfect code.
<record id="mrp_production_form_view_inherits" model="ir.ui.view">
<field name="name">mrp.production.form</field>
<field name="model">mrp.production</field>
<field name=”inherit_id” ref=”mrp.mrp_production_form_view”/>
<field name="arch" type="xml">
.........................................................................
.........................................................................
</field>
After that you want it create a new module with name B. and you want Inherit the same form and view, then
<field name=”inherit_id” ref=”A.mrp_production_form_view_inherts”/>
Don't forget to add the dependancy in manifest file
'depends': ['mrp', 'A',],
thanks
Inheritance in model and views: https://goo.gl/4Zyc9d