oca-technical/odoo-bringout-oca-ddmrp-ddmrp/ddmrp/wizards/mrp_bom_change_location.xml
2025-08-29 15:43:03 +02:00

31 lines
1.2 KiB
XML

<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<record id="mrp_bom_change_location_wizard" model="ir.ui.view">
<field name="name">Mrp Bom Change Location Wizard</field>
<field name="model">mrp.bom.change.location</field>
<field name="arch" type="xml">
<form string="Change Bom Location">
<p class="oe_grey">
Change the inventory location that it is considered to compute when a product is buffered or not.
This can potentially change the Decoupled Lead Time (DLT) value.
This change is only informative and won't affect any process or buffer size or recommendations.
</p>
<group>
<group>
<field name="location_id" />
</group>
</group>
<footer>
<button
name="action_change_location"
string="Change"
type="object"
class="btn-primary"
/>
</footer>
</form>
</field>
</record>
</odoo>