33 lines
1.3 KiB
XML
33 lines
1.3 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<odoo>
|
|
<data>
|
|
|
|
<!-- Hide Create button in line view -->
|
|
|
|
<record id="account_bank_statement_line_tree_inherit_hide_create" model="ir.ui.view">
|
|
<field name="name">account.bank.statement.line.tree.inherit.hide.create</field>
|
|
<field name="model">account.bank.statement.line</field>
|
|
<field name="inherit_id" ref="account_statement_base.account_bank_statement_line_tree"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//tree" position="attributes">
|
|
<attribute name="create">false</attribute>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
|
|
<!-- Hide Create button in kanban view -->
|
|
|
|
<record id="account_bank_statement_line_kanban_inherit_hide_create" model="ir.ui.view">
|
|
<field name="name">account.bank.statement.line.kanban.inherit.hide.create</field>
|
|
<field name="model">account.bank.statement.line</field>
|
|
<field name="inherit_id" ref="account_reconcile_oca.bank_statement_line_reconcile_view"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//kanban" position="attributes">
|
|
<attribute name="create">false</attribute>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
|
|
</data>
|
|
</odoo>
|