mirror of
https://github.com/OCA/stock-logistics-warehouse.git
synced 2025-01-21 14:27:28 +02:00
27 lines
1.1 KiB
XML
27 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<odoo>
|
|
<record id="view_stock_config_settings" model="ir.ui.view">
|
|
<field name="name">res.config.settings - inventory_discrepancy</field>
|
|
<field name="model">res.config.settings</field>
|
|
<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="inventory_discrepancy_enable"
|
|
>
|
|
<div class="o_setting_left_pane">
|
|
<field name="inventory_discrepancy_enable" />
|
|
</div>
|
|
<div class="o_setting_right_pane">
|
|
<label for="inventory_discrepancy_enable" />
|
|
<div class="text-muted">
|
|
Block validation of the inventory adjustment if discrepancy exceeds the threshold.
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|