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.
 
 

65 lines
2.2 KiB

<odoo>
<data>
<record model="ir.ui.view" id="opendons.accounting_deposit_list">
<field name="name">opendons_accounting_deposit list</field>
<field name="model">opendons.accountingdeposit</field>
<field name="arch" type="xml">
<tree>
<field name="create_date"/>
<field name="create_uid"/>
<field name="donation_ids"/>
</tree>
</field>
</record>
<record model="ir.ui.view" id="opendons.accounting_deposit_form">
<field name="name">opendons_payment_batch_accounting Form</field>
<field name="model">opendons.accountingdeposit</field>
<field name="arch" type="xml">
<form string="accounting_deposit_form">
<group name="accounting_deposit">
<field name="create_date"/>
<field name="create_uid"/>
<field name="donation_ids"/>
</group>
</form>
</field>
</record>
<record model="ir.actions.act_window" id="accounting_deposit_action">
<field name="name">accounting deposits</field>
<field name="res_model">opendons.accountingdeposit</field>
<field name="view_mode">tree,form</field>
</record>
<record id="action_create_new_accounting_deposit" model="ir.actions.act_window">
<field name="name">Create an accounting deposit</field>
<field name="res_model">opendons.createaccountingdeposit</field>
<field name="view_mode">form</field>
<field name="binding_model_id" ref="donation.model_donation_donation"/>
</record>
<menuitem id="accounting_deposit_donation_menu" name="Accounting deposits"
parent="donation.donation_top_menu" sequence="30"/>
<menuitem id="accounting_deposit_donation_action_menu" action="accounting_deposit_action"
parent="accounting_deposit_donation_menu" sequence="10"/>
<menuitem id="create_accounting_deposit_donation_menu" action="action_create_new_accounting_deposit"
parent="accounting_deposit_donation_menu" sequence="20"/>
</data>
</odoo>