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.

15 lines
592 B

  1. <odoo>
  2. <record id="view_account_form" model="ir.ui.view">
  3. <field name="model">account.account</field>
  4. <field name="name">account.account.form</field>
  5. <field name="inherit_id" ref="account.view_account_form" />
  6. <field name="arch" type="xml">
  7. <field name="deprecated" position="after">
  8. <field
  9. name="hide_in_cash_flow"
  10. attrs="{'invisible': [('internal_type', 'not in', ['receivable', 'payable', 'liquidity'])]}"
  11. />
  12. </field>
  13. </field>
  14. </record>
  15. </odoo>