mirror of
https://github.com/OCA/stock-logistics-warehouse.git
synced 2025-01-21 14:27:28 +02:00
Generic module to compute the stock quantity available to promise using several implementations.
stock_available_immediatly is changed to become the first optional implementation.
Cherry pick of commit 0b060f619f from the v7 branch
25 lines
1.1 KiB
XML
25 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<openerp>
|
|
<data>
|
|
<record id="view_stock_configuration" model="ir.ui.view">
|
|
<field name="name">Stock settings: quantity available to promise</field>
|
|
<field name="model">stock.config.settings</field>
|
|
<field name="inherit_id" ref="stock.view_stock_config_settings" />
|
|
<field name="arch" type="xml">
|
|
<data>
|
|
<xpath expr="//group[last()]" position="after">
|
|
<group>
|
|
<label for="id" string="Stock available to promise" />
|
|
<div>
|
|
<div>
|
|
<field name="module_stock_available_immediately" class="oe_inline" />
|
|
<label for="module_stock_available_immediately" />
|
|
</div>
|
|
</div>
|
|
</group>
|
|
</xpath>
|
|
</data>
|
|
</field>
|
|
</record>
|
|
</data>
|
|
</openerp> |