<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright 2017 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/>.
-->

<odoo>
  <data>

    <!-- Form -->
    <record id="golem_activity_registration_form" model="ir.ui.view">
      <field name="name">Activity registration form</field>
      <field name="model">golem.activity.registration</field>
      <field name="arch" type="xml">
        <form>
          <sheet>
            <group string="Subscription">
              <field name="member_id" invisible="1" />
              <field name="activity_id" />
              <field name="season_id" />
            </group>
          </sheet>
        </form>
      </field>
    </record>


    <!-- Tree -->
    <record id="golem_activity_registration_tree" model="ir.ui.view">
      <field name="name">Activity registration list</field>
      <field name="model">golem.activity.registration</field>
      <field name="arch" type="xml">
        <tree create="true" edit="false" delete="false" editable="top">
          <field name="season_id" readonly="1" />
          <field name="member_id" domain="[('is_current', '=', True)]" />
          <field name="activity_id" domain="[('is_current', '=', True)]" />
        </tree>
      </field>
    </record>

    <!-- Search -->
    <record id="golem_activity_registration_search" model="ir.ui.view">
      <field name="name">GOLEM Activity Registration searches</field>
      <field name="model">golem.activity.registration</field>
      <field name="arch" type="xml">
        <search>
          <field name="season_id" widget="many2one" />
          <field name="member_id" widget="many2one" />
          <field name="activity_id" widget="many2one" />
          <filter name="season_default" string="Default season"
           domain="[('is_current', '=', True)]" />
        </search>
      </field>
    </record>

    <!-- Action -->
    <record id="golem_activity_registration_action" model="ir.actions.act_window">
      <field name="name">GOLEM Activity Registration List</field>
      <field name="res_model">golem.activity.registration</field>
      <field name="view_mode">tree</field>
      <field name="context">{'search_default_season_default': True}</field>
    </record>

    <!-- Menu -->
    <menuitem id="golem_activity_registration_menu" name="Activity registrations"
      parent="golem_activity.golem_activity_menu"
      action="golem_activity_registration_action"
      groups="golem_base.group_golem_user"
      sequence="20" />

  </data>
</odoo>