68 lines
2.7 KiB
XML
68 lines
2.7 KiB
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<!--
|
|
Copyright 2021 Akretion France (http://www.akretion.com/)
|
|
@author: Alexis de Lattre <alexis.delattre@akretion.com>
|
|
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
-->
|
|
<odoo>
|
|
<record id="res_config_settings_donation" model="ir.ui.view">
|
|
<field name="name">donation.res.config.settings.form</field>
|
|
<field name="model">res.config.settings</field>
|
|
<field name="priority" eval="50" />
|
|
<field name="inherit_id" ref="base.res_config_settings_view_form" />
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//form" position="inside">
|
|
<app
|
|
data-string="Donation"
|
|
string="Donation"
|
|
name="donation_management"
|
|
groups="donation.group_donation_manager"
|
|
>
|
|
<block title="Donation" name="donation_settings">
|
|
<setting
|
|
id="donation_settings_credit_transfer"
|
|
string="Credit transfer"
|
|
help=""
|
|
>
|
|
<field name="donation_credit_transfer_product_id" />
|
|
</setting>
|
|
<setting
|
|
id="donation_settings_account_id"
|
|
string="Account"
|
|
help=""
|
|
>
|
|
<field
|
|
name="donation_account_id"
|
|
context="{'default_reconcile': True, 'default_account_type': 'asset_current'}"
|
|
/>
|
|
</setting>
|
|
<setting
|
|
id="donation_settings_groups_chekc_total"
|
|
string="Check total"
|
|
help=""
|
|
>
|
|
<field name="group_donation_check_total" />
|
|
</setting>
|
|
</block>
|
|
</app>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
|
|
<record id="donation_settings_action" model="ir.actions.act_window">
|
|
<field name="name">Settings</field>
|
|
<field name="res_model">res.config.settings</field>
|
|
<field name="view_mode">form</field>
|
|
<field name="target">inline</field>
|
|
<field name="context">{'module' : 'donation', 'bin_size': False}</field>
|
|
</record>
|
|
|
|
<menuitem
|
|
id="donation_settings_menu"
|
|
parent="donation_config_menu"
|
|
sequence="10"
|
|
action="donation_settings_action"
|
|
groups="base.group_system"
|
|
/>
|
|
</odoo>
|