golem/golem_ressources/views/golem_reservation_views.xml

129 lines
4.7 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright 2018 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>
<!--Calendrier des reservations-->
<record model="ir.ui.view" id="reservation_calendar_view">
<field name="name">reservation.calendar</field>
<field name="model">golem.reservation</field>
<field name="arch" type="xml">
<calendar string="Reservation Calendar" date_start="start_date" date_stop="end_date"
color="linked_resource">
<field name="linked_resource"/>
<field name="user"/>
<field name="on_behalf_of"/>
</calendar>
</field>
</record>
<!--liste des réservations -->
<record model="ir.ui.view" id="reservation_tree_view">
<field name="name">reservation.tree</field>
<field name="model">golem.reservation</field>
<field name="arch" type="xml">
<tree string="Reservation tree">
<field name="start_date"/>
<field name="end_date"/>
<field name="linked_resource"/>
<field name="user"/>
<field name="on_behalf_of"/>
<field name="status"/>
</tree>
</field>
</record>
<!--Formulaire de réservation de ressource-->
<record model="ir.ui.view" id="reservation_form_view">
<field name="name">reservation.form</field>
<field name="model">golem.reservation</field>
<field name="arch" type="xml">
<form string="Reservation Form">
<header>
<button name="status_confirm" type="object"
string="Confirm" statuss="draft"
class="oe_highlight"/>
<button name="status_canceled" type="object"
string="Cancel" statuss="confirmed"
class="oe_highlight"/>
<button name="status_validated" type="object"
string="Validate" statuss="confirmed"
class="oe_highlight"/>
<button name="status_rejected" type="object"
string="Reject" statuss="confirmed"
class="oe_highlight"/>
<field name="status" widget="statusbar"/>
</header>
<sheet>
<group>
<field name="start_date"/>
<field name="end_date"/>
<field name="linked_resource"/>
<field name="user"/>
<field name="on_behalf_of"/>
<field name="rejection_reason"/>
</group>
</sheet>
</form>
</field>
</record>
<!-- recherche relative au menu reservation-->
<record model="ir.ui.view" id="reservation_search_view">
<field name="name">reservation.search</field>
<field name="model">golem.reservation</field>
<field name="arch" type="xml">
<search string="Reservation tree">
<field name="start_date"/>
<field name="end_date"/>
<field name="linked_resource"/>
<field name="user"/>
<field name="on_behalf_of"/>
<field name="status"/>
<filter name="Reservations_to_validate" string="Reservation to Validate"
domain="[('status', '=', 'confirmed')]"/>
</search>
</field>
</record>
<!-- action relative au menu réservation-->
<record model="ir.actions.act_window" id="action_reservation">
<field name="name">Reservation</field>
<field name="res_model">golem.reservation</field>
<field name="view_mode">tree,search,form,calendar</field>
</record>
<menuitem id="reservation_sub_menu" name="Reservation" parent="resources_menu"
action="action_reservation"/>
<!--formulaire relatif au wizard du motif de refus-->
<record model="ir.ui.view" id="wizard_form_view">
<field name="name">wizard.form</field>
<field name="model">golem.reourceswizard</field>
<field name="arch" type="xml">
<form string="Add motif">
<group>
<field name="rejection_reason"/>
</group>
</form>
</field>
</record>
</data>
</odoo>