mirror of
https://github.com/OCA/bank-payment.git
synced 2025-02-02 10:37:31 +02:00
18 lines
563 B
XML
18 lines
563 B
XML
<odoo>
|
|
|
|
<record id="action_deposit_method" model="ir.actions.act_window">
|
|
<field name="name">Deposit Method</field>
|
|
<field name="type">ir.actions.act_window</field>
|
|
<field name="res_model">deposit.method</field>
|
|
<field name="view_type">form</field>
|
|
<field name="view_mode">tree,form</field>
|
|
</record>
|
|
|
|
<menuitem id="menu_deposit_methods"
|
|
name="Deposit Methods"
|
|
parent="account.account_account_menu"
|
|
action="action_deposit_method"
|
|
sequence="8" />
|
|
|
|
</odoo>
|