Skip to Content
Menu
This question has been flagged
1 Reply
4257 Views

i have one form view where i want to inherit another form views through

<field name="inherit_id" ref="sale.view_order_form"/>

but i want 2 more form view to be ref ,is it possible or not ...

Avatar
Discard
Best Answer

why you need it ? If you need to use all the defines of 2 forms, you can use the priority instead of.


Form 1:

<field name="priority">17</field>


Form 2:

<field name="priority">18</field>


your inherit form

<field name="priority">19</field>

<field name="inherit_id" ref="form 2"/>

Avatar
Discard
Author

thanks Tuan, i have created 2 form views in two separate modules and i need to be inherit these 2 views in website quote->website_quotation_backend.xml->name=sale.order.form.payment

the issue is <field name="inherit_id" ref="sale.view_order_form"/> is allready present and i want to attach two more ref of my own created forms view without removing the present ref .

Related Posts Replies Views Activity
2
Nov 24
477
4
Feb 24
10164
1
Jan 24
369
0
May 23
831
4
Apr 23
38318