Skip to content

Commit

Permalink
[IMP] payment: group payment_ref and amount in payment_link wizard
Browse files Browse the repository at this point in the history
payment_ref and amount are small fields that does not render well in large fields.

closes #38287

Taskid: 2059972
Signed-off-by: Damien Bouvy (dbo) <dbo@odoo.com>
  • Loading branch information
arj-odoo committed Oct 11, 2019
1 parent 92c26df commit 8578518
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions addons/payment/wizards/payment_link_wizard_views.xml
Expand Up @@ -6,14 +6,16 @@
<field name="arch" type="xml">
<form string="Generate Payment Link">
<group>
<field name="res_id" invisible="1"/>
<field name="res_model" invisible="1"/>
<field name="partner_id" invisible="1"/>
<field name="amount_max" invisible="1"/>
<field name="description"/>
<field name="amount"/>
<field name="currency_id" invisible="1"/>
<field name="access_token" invisible="1"/>
<group>
<field name="res_id" invisible="1"/>
<field name="res_model" invisible="1"/>
<field name="partner_id" invisible="1"/>
<field name="amount_max" invisible="1"/>
<field name="description"/>
<field name="amount"/>
<field name="currency_id" invisible="1"/>
<field name="access_token" invisible="1"/>
</group>
</group>
<group>
<field name="link" readonly="1" widget="CopyClipboardChar"/>
Expand Down

0 comments on commit 8578518

Please sign in to comment.