This question has been flagged
1 Reply
4270 Views

I am using Odoo 8.

I would like to be able to view the quantity on hand after each stock move.

Is there a way to add a column to the stock.move.tree view in order to accomplish this?

Avatar
Discard
Best Answer

Hello Denial,

For this functionality you have to add new related field

[like; product_qty_on_hand = fields.float('Qty on Hand', related='product_id.qty_available)]

then add this field to stock move's tree view. 

Avatar
Discard