mirror of
https://github.com/OCA/bank-payment.git
synced 2025-02-02 10:37:31 +02:00
24 lines
623 B
XML
24 lines
623 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<openerp>
|
|
<data>
|
|
|
|
<!-- Deposit Method -->
|
|
|
|
<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.menu_configuration_misc"
|
|
action="action_deposit_method"
|
|
sequence="8" />
|
|
|
|
</data>
|
|
</openerp>
|