forked from Yaltik/golem
118 lines
5.0 KiB
XML
118 lines
5.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
Copyright 2018 Youssef El Ouahby <youssef@yaltik.com>
|
|
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>
|
|
|
|
|
|
|
|
<!-- Trees -->
|
|
<record model="ir.ui.view" id="golem_resource_reservation_tree_inherit_golem_resource_account">
|
|
<field name="name">GOLEM Resource Reservation Tree Adaptation to invoicing</field>
|
|
<field name="model">golem.resource.reservation</field>
|
|
<field name='inherit_id' ref="golem_resource.golem_resource_reservation_view_tree"/>
|
|
<field name="arch" type="xml">
|
|
<field name="state" position="after">
|
|
<field name="invoicing_state"/>
|
|
</field>
|
|
</field>
|
|
</record>
|
|
|
|
<!-- Forms -->
|
|
<record model="ir.ui.view"
|
|
id="golem_resource_reservation_form_inherit_golem_resource_account">
|
|
<field name="name"> GOLEM Resource Reservation Form Adaptations to invoicing</field>
|
|
<field name="model">golem.resource.reservation</field>
|
|
<field name='inherit_id' ref="golem_resource.golem_resource_reservation_view_form"/>
|
|
<field name="arch" type="xml">
|
|
<button name="state_rejected" position="after">
|
|
<button name="create_invoice" type="object" string="Create New Invoice" class="oe_highlight"
|
|
attrs="{'invisible': ['|', ('state', 'not in', 'validated'),
|
|
'|',('id', '=', False), ('invoicing_state', '=', 'paid')]}" />
|
|
<button name="voir_invoice" type="object" string="Voir Invoice" class="oe_highlight"
|
|
attrs="{'invisible': [('invoicing_state', '==', 'None')]}" />
|
|
</button>
|
|
<field name="partner_id" position="after">
|
|
<field name="invoicing_state" readonly="1" />
|
|
</field>
|
|
</field>
|
|
</record>
|
|
|
|
<!-- Searches -->
|
|
<record model="ir.ui.view"
|
|
id="golem_resource_reservation_search_inherit_golem_resource_account">
|
|
<field name="name">GOLEM Resource Reservation Search Adaptations to invoicing</field>
|
|
<field name="model">golem.resource.reservation</field>
|
|
<field name="inherit_id" ref="golem_resource.golem_resource_reservation_view_search"/>
|
|
<field name="arch" type="xml">
|
|
<search position="inside">
|
|
<filter name="to_invoice" string="Reservation To Invoice"
|
|
domain="[('invoicing_state', '=', 'None')]" />
|
|
<filter name="invoice_draft" string="Invoice Draft"
|
|
domain="[('invoicing_state', '=', 'draft')]" />
|
|
<filter name="invoice_open" string="Invoice Open"
|
|
domain="[('invoicing_state', '=', 'open')]" />
|
|
<filter name="invoice_paid" string="Invoice Paid"
|
|
domain="[('invoicing_state', '=', 'paid')]" />
|
|
<!--<filter name="group_state" string="State"
|
|
context="{'group_by': 'state'}" />
|
|
<filter name="group_resource" string="Resource"
|
|
context="{'group_by': 'resource_id'}" />
|
|
<filter name="group_partner_id" string="Partner"
|
|
context="{'group_by': 'partner_id'}" />
|
|
<filter name="group_user" string="User"
|
|
context="{'group_by': 'user_id'}" />
|
|
<filter name="group_date_month" string="Month"
|
|
context="{'group_by': 'date:month'}" />
|
|
<filter name="group_date_week" string="Week"
|
|
context="{'group_by': 'date:week'}" />
|
|
<filter name="group_date_day" string="Day"
|
|
context="{'group_by': 'date:day'}" />-->
|
|
</search>
|
|
</field>
|
|
</record>-->
|
|
<!-- Add option to the "More" button -->
|
|
<act_window id="action_golem_reservation_invoice_wizard"
|
|
name="Reservations to invoice"
|
|
res_model="golem.reservation.invoice.wizard"
|
|
src_model="golem.resource.reservation"
|
|
view_mode="form"
|
|
multi="True"
|
|
target="new"
|
|
/>
|
|
<act_window id="action_golem_reservation_invoice_editable_wizard"
|
|
name="Reservations to invoice-edition"
|
|
res_model="golem.reservation.invoice.wizard"
|
|
src_model="golem.resource.reservation"
|
|
view_mode="form"
|
|
multi="True"
|
|
target="new"
|
|
/>
|
|
|
|
<!-- Actions -->
|
|
<!--<act_window id="golem_resource_reservation_action" name="Reservations"
|
|
res_model="golem.resource.reservation" view_mode="tree,form,calendar" />-->
|
|
|
|
<!-- Menus -->
|
|
<!--<menuitem id="golem_resource_reservation_menu" name="Reservations"
|
|
parent="golem_resource_menu" action="golem_resource_reservation_action"
|
|
sequence="20" />-->
|
|
|
|
</data>
|
|
</odoo>
|