Fabien BOURGEOIS
970fa991b5
* Allow direct creation of schedule days ; * Cascade delete for days and schedules.
88 lines
2.9 KiB
XML
88 lines
2.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!--
|
|
Copyright 2017-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>
|
|
|
|
<!-- Forms -->
|
|
<record id="golem_payment_schedule_form" model="ir.ui.view">
|
|
<field name="name">GOLEM Payment Schedule Form</field>
|
|
<field name="model">golem.payment.schedule</field>
|
|
<field name="arch" type="xml">
|
|
<form>
|
|
<sheet>
|
|
<group>
|
|
<field name="name" />
|
|
<field name="season_id" options="{'no_open': True, 'no_create': True}" />
|
|
<field name="day_ids" context="{'default_schedule_id': active_id}">
|
|
<tree editable="bottom">
|
|
<field name="day" />
|
|
<field name="schedule_id" invisible="1" required="0" />
|
|
</tree>
|
|
</field>
|
|
<field name="occurences" />
|
|
</group>
|
|
</sheet>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
|
|
<!-- Trees -->
|
|
<record id="golem_payment_schedule_tree" model="ir.ui.view">
|
|
<field name="name">GOLEM Payment Schedule Tree</field>
|
|
<field name="model">golem.payment.schedule</field>
|
|
<field name="arch" type="xml">
|
|
<tree>
|
|
<field name="name" />
|
|
<field name="season_id" />
|
|
<field name="day_ids" invisible="1" />
|
|
<field name="day_display" />
|
|
<field name="occurences" />
|
|
</tree>
|
|
</field>
|
|
</record>
|
|
|
|
<!-- Search -->
|
|
<record id="golem_payment_schedule_search" model="ir.ui.view">
|
|
<field name="name">GOLEM Payment Schedule Filters</field>
|
|
<field name="model">golem.payment.schedule</field>
|
|
<field name="arch" type="xml">
|
|
<search>
|
|
<field name="name" />
|
|
<field name="season_id" />
|
|
<field name="day_ids" />
|
|
<filter name="group_season" string="Season"
|
|
context="{'group_by': 'season_id'}" />
|
|
</search>
|
|
</field>
|
|
</record>
|
|
|
|
<!-- Actions -->
|
|
<act_window id="golem_payment_schedule_action" name="Payment Schedules"
|
|
res_model="golem.payment.schedule" view_mode="tree,form" />
|
|
|
|
<!-- Menus -->
|
|
<menuitem id="golem_payment_schedule_menu_list" sequence="5"
|
|
parent="payment.root_payment_menu" action="golem_payment_schedule_action"
|
|
groups="golem_base.group_golem_manager" />
|
|
|
|
|
|
</data>
|
|
</odoo>
|