mirror of
https://github.com/OCA/stock-logistics-warehouse.git
synced 2025-01-21 14:27:28 +02:00
33 lines
1.2 KiB
XML
33 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<!-- Copyright 2023 ACSONE SA/NV
|
|
License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -->
|
|
<odoo>
|
|
|
|
<record model="ir.ui.view" id="res_config_settings_form_view">
|
|
<field
|
|
name="name"
|
|
>res.config.settings.form (in stock_scrap_location_default)</field>
|
|
<field name="model">res.config.settings</field>
|
|
<field name="inherit_id" ref="stock.res_config_settings_view_form" />
|
|
<field name="arch" type="xml">
|
|
<div id="track_product_location" position="after">
|
|
<div
|
|
class="col-12 col-lg-6 o_setting_box"
|
|
id="scrap_default_location"
|
|
attrs="{'invisible': [('group_stock_multi_locations', '=', False)]}"
|
|
>
|
|
<div class="o_setting_left_pane">
|
|
</div>
|
|
<div class="o_setting_right_pane">
|
|
<label for="scrap_default_location_id" />
|
|
<div class="content-group">
|
|
<field name="scrap_default_location_id" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</field>
|
|
</record>
|
|
|
|
</odoo>
|