[IMP] Changing product qty on product form should work with serial numbers like in 7.0, but we should explain it

Closes #3984
This commit is contained in:
Josse Colpaert 2014-12-11 17:13:25 +01:00
parent 562fc998bf
commit 723f532e57
2 changed files with 6 additions and 2 deletions

View File

@ -98,7 +98,7 @@ class stock_change_product_qty(osv.osv_memory):
'product_id': data.product_id.id,
'location_id': data.location_id.id,
'lot_id': data.lot_id.id}, context=context)
product = data.product_id.with_context(location=data.location_id.id)
product = data.product_id.with_context(location=data.location_id.id, lot_id= data.lot_id.id)
th_qty = product.qty_available
line_data = {
'inventory_id': inventory_id,

View File

@ -10,7 +10,11 @@
<field name="new_quantity" />
<field name="product_id" invisible="1"/>
<field name="location_id" groups="stock.group_locations"/>
<field name="lot_id" context="{'search_default_product_id':product_id,'default_product_id':product_id}" groups="base.group_no_one"/>
<field name="lot_id" context="{'search_default_product_id':product_id,'default_product_id':product_id}" groups="stock.group_production_lot"/>
<p groups="stock.group_production_lot" class="oe_grey">
When you select a serial number (lot), the quantity is corrected with respect to
the quantity of that serial number (lot) and not to the total quantity of the product.
</p>
</group>
<footer>
<button name="change_product_qty" string="_Apply" type="object" class="oe_highlight"/>