You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
599 B

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <odoo>
  3. <record id="view_account_journal_form" model="ir.ui.view">
  4. <field name="model">account.journal</field>
  5. <field name="inherit_id" ref="point_of_sale.view_account_journal_pos_user_form"/>
  6. <field name="arch" type="xml">
  7. <group name="amount_authorized" position="after">
  8. <group name="payment_mode_group" attrs="{'invisible': [('type', '!=', 'bank')]}">
  9. <field name="pos_terminal_payment_mode"/>
  10. </group>
  11. </group>
  12. </field>
  13. </record>
  14. </odoo>