pre-commit update

This commit is contained in:
OCA-git-bot
2020-03-14 12:28:39 +01:00
committed by SergiCForgeFlow
parent 4b262ee931
commit 94cff5b967
3 changed files with 12 additions and 17 deletions

View File

@@ -1,12 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8" ?>
<!-- Copyright 2017-18 Eficent Business and IT Consulting Services S.L.
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -->
<odoo>
<record id="group_removal_priority" model="res.groups">
<field name="name">Removal Priority</field>
<field name="category_id" ref="base.module_category_hidden"/>
<field name="category_id" ref="base.module_category_hidden" />
</record>
</odoo>

View File

@@ -1,20 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8" ?>
<!-- Copyright 2017-18 Eficent Business and IT Consulting Services S.L.
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -->
<odoo>
<record id="view_stock_config_settings" model="ir.ui.view">
<field name="name">res.config.settings - removal_priority</field>
<field name="model">res.config.settings</field>
<field name="inherit_id" ref="stock.res_config_settings_view_form"/>
<field name="inherit_id" ref="stock.res_config_settings_view_form" />
<field name="arch" type="xml">
<xpath expr="//div[@id='warning_info']" position="after">
<div class="col-12 col-lg-6 o_setting_box" id="removal_priority">
<div class="o_setting_left_pane">
<field name="group_removal_priority"/>
<field name="group_removal_priority" />
</div>
<div class="o_setting_right_pane">
<label for="group_removal_priority"/>
<label for="group_removal_priority" />
<div class="text-muted">
Use <i>Removal Priority</i> in Locations
</div>
@@ -23,5 +22,4 @@
</xpath>
</field>
</record>
</odoo>

View File

@@ -1,18 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8" ?>
<!-- Copyright 2017 Eficent Business and IT Consulting Services S.L.
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -->
<odoo>
<record id="view_location_form" model="ir.ui.view">
<field name="name">Location form - removal priority extension</field>
<field name="model">stock.location</field>
<field name="inherit_id" ref="stock.view_location_form"/>
<field name="inherit_id" ref="stock.view_location_form" />
<field name="arch" type="xml">
<field name="removal_strategy_id" position="after">
<field name="removal_priority" groups="stock_removal_location_by_priority.group_removal_priority"/>
<field
name="removal_priority"
groups="stock_removal_location_by_priority.group_removal_priority"
/>
</field>
</field>
</record>
</odoo>