golem/golem_member_season/views/golem_member_season_view.xml

68 lines
2.3 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright 2016 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/>.
-->
<openerp>
<data>
<!-- Forms -->
<record model="ir.ui.view" id="member_season_form">
<field name="name">Add season at top of GOLEM member form</field>
<field name="model">golem.member</field>
<field name="inherit_id" ref="golem_member.view_form" />
<field name="arch" type="xml">
<div class="oe_title" position="after">
<field name="is_volunteer" />
<group>
<field name="season_ids" widget="many2many_tags" />
</group>
</div>
</field>
</record>
<!-- Searches -->
<record model="ir.ui.view" id="member_season_search">
<field name="name">Add Seasons Search and Filter</field>
<field name="model">golem.member</field>
<field name="inherit_id" ref="golem_member.view_filter" />
<field name="arch" type="xml">
<field name="name" position="after">
<field name="season_ids" widget="many2one" />
</field>
<field name="category_id" position="after">
<filter name="season_default" string="Default season"
domain="[('is_current', '=', True)]" />
</field>
</field>
</record>
<!-- Actions -->
<act_window id="action"
name="GOLEM Members"
res_model="golem.member"
view_mode="kanban,tree,form,graph"
context="{'search_default_season_default': True}" />
<!-- Menu items -->
<menuitem id="golem_member.golem_members_menu" name="GOLEM Members"
parent="membership.menu_membership" sequence="5"
action="action" />
</data>
</openerp>