2017-05-01 16:26:51 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
|
|
|
<!--
|
|
|
|
Copyright 2017 Fabien Bourgeois <fabien@yaltik.com>
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Affero General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU Affero General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
-->
|
|
|
|
|
|
|
|
<odoo>
|
|
|
|
<data noupdate="0">
|
|
|
|
|
|
|
|
<!-- Membership products only for managers -->
|
|
|
|
<menuitem name="Configuration"
|
|
|
|
id="membership.menu_marketing_config_association"
|
|
|
|
parent="membership.menu_association" sequence="100" />
|
|
|
|
<menuitem id="membership_products_menu"
|
|
|
|
action="membership.action_membership_products"
|
|
|
|
parent="membership.menu_marketing_config_association" sequence="20"
|
|
|
|
groups="golem_base.group_golem_manager" />
|
2020-05-21 17:55:37 +02:00
|
|
|
<menuitem name="Invoicing"
|
|
|
|
id="account.menu_finance"
|
|
|
|
groups="account.group_account_user,account.group_account_manager,account.group_account_invoice,group_golem_auditor"
|
|
|
|
web_icon="account,static/description/icon.png"
|
|
|
|
sequence="40"/>
|
|
|
|
<menuitem id="account.menu_finance_configuration"
|
|
|
|
name="Configuration"
|
|
|
|
parent="account.menu_finance" sequence="15" groups="account.group_account_invoice,group_golem_auditor"/>
|
|
|
|
|
|
|
|
<menuitem id="account.account_account_menu"
|
|
|
|
name="Accounting"
|
|
|
|
parent="account.menu_finance_configuration"
|
|
|
|
sequence="2"
|
|
|
|
groups="account.group_account_invoice,group_golem_auditor"/>
|
2017-05-01 16:26:51 +02:00
|
|
|
<!-- Members Analysis for managers only -->
|
|
|
|
<record id="membership.menu_report_membership" model="ir.ui.menu">
|
|
|
|
<field name="groups_id"
|
|
|
|
eval="[(6, 0, [ref('golem_base.group_golem_manager')])]" />
|
|
|
|
</record>
|
|
|
|
|
|
|
|
</data>
|
|
|
|
</odoo>
|