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">
|
|
|
|
<page name="other_page" 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)]}"
|
|
|
|
context="{'default_member_id': active_id}">
|
2016-10-10 11:09:57 +02:00
|
|
|
<tree editable="top">
|
2016-10-10 17:51:42 +02:00
|
|
|
<field name="activity_id"
|
2016-10-09 12:37:09 +02:00
|
|
|
domain="[('is_current', '=', True)]" />
|
|
|
|
<field name="season_id" readonly="1" />
|
2017-06-07 16:44:32 +02:00
|
|
|
<field name="member_id" readonly="1" invisible="1" />
|
2017-06-14 23:47:55 +02:00
|
|
|
<field name="activity_price" string="Base price" sum="Total" />
|
2017-06-07 16:44:32 +02:00
|
|
|
</tree>
|
|
|
|
</field>
|
|
|
|
<field name="activity_registration_all_ids" readonly="1">
|
|
|
|
<tree>
|
|
|
|
<field name="activity_id" />
|
|
|
|
<field name="season_id" />
|
2016-10-09 12:37:09 +02:00
|
|
|
</tree>
|
|
|
|
</field>
|
|
|
|
</group>
|
2016-09-15 16:28:27 +02:00
|
|
|
</page>
|
|
|
|
</page>
|
|
|
|
</field>
|
|
|
|
</record>
|
|
|
|
|
|
|
|
</data>
|
2017-04-29 09:16:41 +02:00
|
|
|
</odoo>
|