Skip to Content
Menu
This question has been flagged
2 Replies
4302 Views

Hi guys,

We just set up our odoo ERP system and the guy supporting us is currently in vacation.  As a result, we need to deal with odoo all by ourselves now.

A problem showed up when we are trying to generate a inventory report, we can only see those item with positive or even negative quantity and it hides those item that we now do not have any in the warehouse.  We are wondering if that is simply a configeration problem.

Also, we do not know the version of the odoo we are using, please also show me how to find it, if that is necessary for the solution.

Best regards

Leo


Avatar
Discard
Best Answer

Hi Leo,

The Inventory Report will always shows the locations that have -VE or +VE stock quantity for the product. You cannot show all the locations for the product that does not have stock.

And it does not make any sense to show such data with 0 qty. If you really need that, you need to customize the functionality.

Let me know if I can help you with in any way.


Sudhir Arya

ERP Harbor Consulting Services
In the Top 5 Position in Odoo Community Forum
Skype: sudhir@erpharbor.com

Website: http://www.erpharbor.com




Avatar
Discard
Best Answer


In stock_account module there is written action  product_valuation_action and a domain passed 

<field name="domain">[('type', '=', 'product'), ('qty_available', '!=', 0)]</field>​
if you remove that domain for qty_available it will show for all products with 0 as well.
<field name="domain">[('type', '=', 'product')]</field>​


Avatar
Discard
Related Posts Replies Views Activity
1
Aug 23
1254
2
May 23
911
1
Mar 23
939
0
Aug 24
675
1
Jul 23
803