mirror of
https://github.com/OCA/account-reconcile.git
synced 2025-01-20 12:27:39 +02:00
Put the field transaction_id in the group 'sale_pay'
Add the field inside the group instead of after a field. In another module, I add a button right after 'payment_term' and it must be right after it. Adding the field in the group prevent it to be placed between the payment_term field and the button.
This commit is contained in:
@@ -6,9 +6,9 @@
|
|||||||
<field name="model">sale.order</field>
|
<field name="model">sale.order</field>
|
||||||
<field name="inherit_id" ref="sale.view_order_form"/>
|
<field name="inherit_id" ref="sale.view_order_form"/>
|
||||||
<field name="arch" type="xml">
|
<field name="arch" type="xml">
|
||||||
<field name="payment_term" position="after">
|
<group name="sale_pay" position="inside">
|
||||||
<field name="transaction_id"/>
|
<field name="transaction_id"/>
|
||||||
</field>
|
</group>
|
||||||
</field>
|
</field>
|
||||||
</record>
|
</record>
|
||||||
</data>
|
</data>
|
||||||
|
|||||||
Reference in New Issue
Block a user