GOLEM/golem_resource_account/views/golem_resource_reservation_...

86 lines
3.9 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">
<xpath expr="//tree" position="attributes">
<attribute name="colors">red : invoicing_state=='open'; green : invoicing_state=='paid'; black: state=='draft'; blue : state=='validated'; grey : state=='canceled'; orange : state=='rejected'</attribute>
</xpath>
<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="open_invoice" type="object" string="Open 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')]" />
</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"
/>
</data>
</odoo>