You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.2 KiB
32 lines
1.2 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!--
|
|
Copyright 2016 LasLabs Inc.
|
|
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
-->
|
|
|
|
<odoo>
|
|
|
|
<record id="view_stock_config_settings" model="ir.ui.view">
|
|
<field name="name">stock settings</field>
|
|
<field name="model">stock.config.settings</field>
|
|
<field name="inherit_id" ref="stock.view_stock_config_settings"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//div[field[@name='module_stock_barcode']]/../preceding-sibling::*[1]"
|
|
position="attributes">
|
|
<attribute name="invisible">True</attribute>
|
|
</xpath>
|
|
<xpath expr="//div[field[@name='module_stock_barcode']]/.." position="attributes">
|
|
<attribute name="invisible">True</attribute>
|
|
</xpath>
|
|
<xpath expr="//div[field[@name='module_delivery_dhl']]/../preceding-sibling::*[1]"
|
|
position="attributes">
|
|
<attribute name="invisible">True</attribute>
|
|
</xpath>
|
|
<xpath expr="//div[field[@name='module_delivery_dhl']]/.." position="attributes">
|
|
<attribute name="invisible">True</attribute>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
|
|
</odoo>
|