2016-10-10 11:28:28 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!--
|
2018-07-31 19:59:56 +02:00
|
|
|
Copyright 2016-2018 Fabien Bourgeois <fabien@yaltik.com>
|
2016-10-10 11:28:28 +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-10-10 11:28:28 +02:00
|
|
|
<data>
|
|
|
|
|
2018-08-01 16:16:02 +02:00
|
|
|
<!-- Form -->
|
|
|
|
<record id="golem_activity_registration_form_inherit_state"
|
|
|
|
model="ir.ui.view">
|
|
|
|
<field name="name">Activity Registration form adaptations</field>
|
|
|
|
<field name="model">golem.activity.registration</field>
|
|
|
|
<field name="inherit_id"
|
|
|
|
ref="golem_activity_registration.golem_activity_registration_form" />
|
|
|
|
<field name="arch" type="xml">
|
|
|
|
<header position="inside">
|
|
|
|
<field name="state" widget="statusbar" readonly="1" />
|
|
|
|
</header>
|
|
|
|
</field>
|
|
|
|
</record>
|
|
|
|
|
2016-10-10 11:28:28 +02:00
|
|
|
<!-- Tree -->
|
2017-05-01 23:43:59 +02:00
|
|
|
<record id="golem_activity_registration_tree_inherit_state"
|
|
|
|
model="ir.ui.view">
|
2016-10-10 11:28:28 +02:00
|
|
|
<field name="name">Session registration list</field>
|
2016-10-16 11:09:29 +02:00
|
|
|
<field name="model">golem.activity.registration</field>
|
2016-10-10 11:28:28 +02:00
|
|
|
<field name="inherit_id"
|
2017-05-01 23:43:59 +02:00
|
|
|
ref="golem_activity_registration.golem_activity_registration_tree" />
|
2016-10-10 11:28:28 +02:00
|
|
|
<field name="arch" type="xml">
|
|
|
|
<tree position="attributes">
|
2018-08-01 16:16:02 +02:00
|
|
|
<attribute name="colors">darkgrey: state == 'canceled';blue: state == 'confirmed';</attribute>
|
|
|
|
<attribute name="delete">0</attribute>
|
2016-10-10 11:28:28 +02:00
|
|
|
</tree>
|
|
|
|
<tree position="inside">
|
2018-09-26 11:44:24 +02:00
|
|
|
<field name="id" invisible="1" />
|
2018-08-01 16:16:02 +02:00
|
|
|
<field name="state" readonly="1" />
|
|
|
|
<button type="object" name="state_draft" string="Reset to draft"
|
2018-09-26 11:44:24 +02:00
|
|
|
icon="fa-arrow-up" attrs="{'invisible': ['|', ('id', '=', False), ('state', '=', 'draft')]}"
|
2018-08-01 16:16:02 +02:00
|
|
|
invisible="not context.get('action_show', 1)" />
|
|
|
|
<button type="object" name="state_confirm" string="Confirm"
|
2018-09-26 11:44:24 +02:00
|
|
|
icon="fa-check" attrs="{'invisible': ['|', ('id', '=', False), ('state', '!=', 'draft')]}"
|
2018-08-01 16:16:02 +02:00
|
|
|
invisible="not context.get('action_show', 1)" />
|
|
|
|
<button type="object" name="state_cancel" string="Cancel"
|
2018-09-26 11:44:24 +02:00
|
|
|
icon="fa-ban" attrs="{'invisible': ['|', ('id', '=', False), ('state', '=', 'canceled')]}"
|
2018-08-01 16:16:02 +02:00
|
|
|
invisible="not context.get('action_show', 1)" />
|
|
|
|
<button type="object" name="state_remove" string="Remove"
|
|
|
|
icon="fa-trash"
|
|
|
|
confirm="Are you sure you want to remove this subscription ?"
|
2018-09-26 11:44:24 +02:00
|
|
|
attrs="{'invisible': ['|', ('id', '=', False), ('state', '!=', 'canceled')]}"
|
2018-08-01 16:16:02 +02:00
|
|
|
invisible="not context.get('action_show', 1)" />
|
2016-10-10 11:28:28 +02:00
|
|
|
</tree>
|
|
|
|
</field>
|
|
|
|
</record>
|
|
|
|
|
2018-08-01 16:16:02 +02:00
|
|
|
<!-- Search -->
|
|
|
|
<record id="golem_activity_registration_search_inherit_state"
|
|
|
|
model="ir.ui.view">
|
|
|
|
<field name="name">Activity Registration search adaptations</field>
|
|
|
|
<field name="model">golem.activity.registration</field>
|
|
|
|
<field name="inherit_id"
|
|
|
|
ref="golem_activity_registration.golem_activity_registration_search" />
|
|
|
|
<field name="arch" type="xml">
|
|
|
|
<filter name="season_default" position="after">
|
|
|
|
<separator />
|
|
|
|
<filter name="state_draft" string="Draft"
|
|
|
|
domain="[('state', '=', 'draft')]" />
|
|
|
|
<filter name="state_confirmed" string="Confirmed"
|
|
|
|
domain="[('state', '=', 'confirmed')]" />
|
|
|
|
<filter name="state_canceled" string="Canceled"
|
|
|
|
domain="[('state', '=', 'canceled')]" />
|
|
|
|
<filter name="group_state" string="By state"
|
|
|
|
context="{'group_by': 'state'}"/>
|
|
|
|
</filter>
|
|
|
|
</field>
|
|
|
|
</record>
|
|
|
|
|
2016-10-10 11:28:28 +02:00
|
|
|
</data>
|
2017-04-29 09:16:41 +02:00
|
|
|
</odoo>
|