2018-03-21 01:36:29 +01:00
|
|
|
<?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>
|
2018-03-29 08:07:50 +02:00
|
|
|
|
2018-03-21 01:36:29 +01:00
|
|
|
<!-- Forms -->
|
2018-03-27 15:20:01 +02:00
|
|
|
<record model="ir.ui.view" id="golem_resource_inherit_option_form">
|
|
|
|
<field name="name">GOLEM Resource Option Extention Form</field>
|
2018-03-21 01:36:29 +01:00
|
|
|
<field name="model">golem.resource</field>
|
2018-03-27 15:20:01 +02:00
|
|
|
<field name="inherit_id" ref="golem_resource.golem_resource_view_form"/>
|
2018-03-21 01:36:29 +01:00
|
|
|
<field name="arch" type="xml">
|
2018-03-29 08:35:19 +02:00
|
|
|
<field name="product_tmpl_id" position="after">
|
2018-03-27 15:20:01 +02:00
|
|
|
<field name="option_ids" widget="many2many_tags"
|
2018-03-29 10:02:41 +02:00
|
|
|
domain="[('resource_id', '=', active_id)]"
|
2018-03-27 15:20:01 +02:00
|
|
|
context="{'default_resource_id': active_id}" />
|
|
|
|
</field>
|
2018-03-21 01:36:29 +01:00
|
|
|
</field>
|
|
|
|
</record>
|
2018-03-29 08:07:50 +02:00
|
|
|
|
2018-03-21 01:36:29 +01:00
|
|
|
</data>
|
|
|
|
</odoo>
|