2016-10-10 11:28:28 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!--
|
2018-07-31 19:59:56 +02:00
|
|
|
Copyright 2017-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>
|
|
|
|
|
|
|
|
<!-- Form -->
|
2017-05-01 23:43:59 +02:00
|
|
|
<record id="golem_activity_form_inherit_registration_state"
|
|
|
|
model="ir.ui.view">
|
2016-10-10 11:28:28 +02:00
|
|
|
<field name="name">Activity Registrations States</field>
|
2016-10-16 11:09:29 +02:00
|
|
|
<field name="model">golem.activity</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_form_inherit_registration" />
|
2016-10-10 11:28:28 +02:00
|
|
|
<field name="arch" type="xml">
|
2018-08-01 13:44:00 +02:00
|
|
|
<tree position="attributes">
|
|
|
|
<attribute name="colors">darkgrey: state == 'canceled';blue: state == 'confirmed';</attribute>
|
|
|
|
<attribute name="delete">0</attribute>
|
|
|
|
</tree>
|
|
|
|
<tree position="inside">
|
|
|
|
<field name="state" />
|
|
|
|
<button type="object" name="state_draft" string="Reset to draft"
|
|
|
|
icon="fa-arrow-up" attrs="{'invisible': [('state', '=', 'draft')]}" />
|
|
|
|
<button type="object" name="state_confirm" string="Confirm"
|
|
|
|
icon="fa-check" attrs="{'invisible': [('state', '!=', 'draft')]}" />
|
|
|
|
<button type="object" name="state_cancel" string="Cancel"
|
|
|
|
icon="fa-ban" attrs="{'invisible': [('state', '=', 'canceled')]}" />
|
|
|
|
<button type="object" name="state_remove" string="Remove"
|
|
|
|
icon="fa-trash"
|
|
|
|
confirm="Are you sure you want to remove this subscription ?"
|
|
|
|
attrs="{'invisible': [('state', '!=', 'canceled')]}" />
|
2016-10-10 11:28:28 +02:00
|
|
|
</tree>
|
|
|
|
</field>
|
|
|
|
</record>
|
|
|
|
|
|
|
|
</data>
|
2017-04-29 09:16:41 +02:00
|
|
|
</odoo>
|