mirror of
https://github.com/bringout/oca-technical.git
synced 2026-04-21 04:32:04 +02:00
31 lines
1.2 KiB
XML
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>
|