2016-09-15 16:28:27 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!--
|
2017-05-01 23:20:04 +02:00
|
|
|
Copyright 2017 Fabien Bourgeois <fabien@yaltik.com>
|
2016-09-15 16:28:27 +02:00
|
|
|
|
|
|
|
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/>.
|
|
|
|
-->
|
2017-04-29 09:16:41 +02:00
|
|
|
<odoo>
|
2016-09-15 16:28:27 +02:00
|
|
|
<data>
|
|
|
|
|
|
|
|
<!-- Form -->
|
2017-05-01 23:20:04 +02:00
|
|
|
<record id="golem_member_form_inherit_golem_activity_registration"
|
|
|
|
model="ir.ui.view">
|
2016-10-10 17:51:42 +02:00
|
|
|
<field name="name">Add activities registrations to member form</field>
|
2016-09-15 16:28:27 +02:00
|
|
|
<field name="model">golem.member</field>
|
2017-05-01 23:20:04 +02:00
|
|
|
<field name="inherit_id" ref="golem_member.golem_member_form" />
|
2016-09-15 16:28:27 +02:00
|
|
|
<field name="arch" type="xml">
|
2018-07-20 11:19:08 +02:00
|
|
|
<page name="membership" position="before">
|
2016-10-10 17:51:42 +02:00
|
|
|
<page name="activities" string="Activities">
|
2016-10-09 12:37:09 +02:00
|
|
|
<field name="id" invisible="1" />
|
|
|
|
<group>
|
2016-10-10 17:51:42 +02:00
|
|
|
<field name="activity_registration_ids"
|
2016-10-09 12:37:09 +02:00
|
|
|
attrs="{'readonly': [('id', '=', False)]}"
|
2018-08-01 16:16:02 +02:00
|
|
|
context="{'default_member_id': active_id, 'member_show': 0}" />
|
|
|
|
<field name="activity_registration_all_ids" readonly="1"
|
|
|
|
context="{'member_show': 0}" />
|
2016-10-09 12:37:09 +02:00
|
|
|
</group>
|
2016-09-15 16:28:27 +02:00
|
|
|
</page>
|
|
|
|
</page>
|
|
|
|
</field>
|
|
|
|
</record>
|
|
|
|
|
2018-01-09 17:15:48 +01:00
|
|
|
<!-- Searches -->
|
|
|
|
<record id="golem_member_searches_inherit_golem_activity_registration"
|
|
|
|
model="ir.ui.view">
|
|
|
|
<field name="name">Add activities registrations to member searches</field>
|
|
|
|
<field name="model">golem.member</field>
|
|
|
|
<field name="inherit_id" ref="golem_member.golem_member_search" />
|
|
|
|
<field name="arch" type="xml">
|
2018-08-09 16:39:17 +02:00
|
|
|
<field name="season_ids" position="after">
|
|
|
|
<field name="activity_registration_all_ids" widget="many2one"
|
|
|
|
string="Practiced activities" />
|
2018-01-09 17:15:48 +01:00
|
|
|
</field>
|
|
|
|
</field>
|
|
|
|
</record>
|
2016-09-15 16:28:27 +02:00
|
|
|
</data>
|
2017-04-29 09:16:41 +02:00
|
|
|
</odoo>
|