I know that Odoo has evolved the Inventory Valuation feature.
We are using real-time valuation and still want the journal entries that update the value of the assets being received and delivered.
Is there a way to have Odoo still create these?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
I know that Odoo has evolved the Inventory Valuation feature.
We are using real-time valuation and still want the journal entries that update the value of the assets being received and delivered.
Is there a way to have Odoo still create these?
Yes.
You can create a Scheduled Action to run before midnight right at the end of each day:

companies = model.search([('inventory_valuation','=','real_time')])
for company in companies:
company.action_close_stock_valuation(at_date=datetime.datetime.today(), auto_post=True)This has the same effect as manually clicking GENERATE ENTRY from the new Inventory Valuation report:

Note: if you need further information about the changes we have made, please review:
| 相關帖文 | 回覆 | 瀏覽次數 | 活動 | |
|---|---|---|---|---|
|
1
11月 24
|
24102 | |||
|
3
1月 18
|
15648 | |||
|
2
10月 25
|
1114 | |||
|
2
10月 25
|
1035 | |||
|
0
2月 20
|
4263 |
1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.