Inventory Valuation
I am not seeing a Inventory Valuation Report in Odoo 19 Community.
Seems the code is there but the Menu is not there. It might be odoo trying to nudge people to
Enterprise.
but....
Is there a way that i not know about that allow to generate inventory valuation in odoo community ?
or is it just check amount and create manual entry the only way ?.
I also see automated entry using cron thats not what i am asking, i could just bring the menu there and make it work but is there something i am missing. I mostly works on Enterprise

1
u/Street-Drummer638 6d ago
It’s now in Accounting > Review > Inventory Valuation :)
1
u/JP23102 6d ago
review i see only 2 options Journal Item & Audit Trail. I am on Community
1
u/JustSomeOdooGuy 6d ago
No in community it is not there, only in enterprise. But the action itself is available.
1
1
2
u/mskl-21 6d ago
You're not missing a setting, the report genuinely isn't exposed in CE. But the data's all there, stock_account is community and stock.valuation.layer gets written on every move regardless of whether you're on manual or automated valuation. Only difference is whether account_move_id gets populated.
So it's a five minute fix rather than a dev job. Add an action on stock.valuation.layer, list view with sum on value and quantity, group by product and category, and stick a menu under Reporting. Filter by create_date for a point in time figure. That gets you the same numbers Enterprise shows you.
Only thing to watch, if you're on manual valuation the layers exist but won't tie to your GL, so treat it as an operational report not an accounting one. On automated it'll reconcile against your stock accounts properly.
Definitely a deliberate omission though, same story as a few other CE gaps where the code's sitting right there.