mirror of
https://github.com/OCA/stock-logistics-warehouse.git
synced 2025-01-21 14:27:28 +02:00
20 lines
682 B
XML
20 lines
682 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<openerp>
|
|
<data>
|
|
<!-- Add the quantity available to promise in the product form -->
|
|
<record id="view_product_form_potential_qty" model="ir.ui.view">
|
|
<field name="name">product.form.potential_qty</field>
|
|
<field name="model">product.product</field>
|
|
<field name="type">form</field>
|
|
<field name="inherit_id" ref="stock.view_normal_procurement_locations_form" />
|
|
<field name="arch" type="xml">
|
|
<data>
|
|
<xpath expr="//field[@name='virtual_available']" position="after">
|
|
<field name="potential_qty"/>
|
|
</xpath>
|
|
</data>
|
|
</field>
|
|
</record>
|
|
</data>
|
|
</openerp>
|