When we make a massive import (eg. 10.000 partners)there is no process indicator. Is it possible to know during an import which record is currently processed because it's a very long task ?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- 客戶關係
- e-Commerce
- 會計
- 庫存
- PoS
- Project
- MRP
此問題已被標幟
1
回覆
4987
瀏覽次數
I'm not sure how commits are handled in your import, but you can try to query the Postgres database to check on the progress:
select * from res_partner
order by id desc
limit 100
Commit is done at the end of the import, so select is not possible during the import.
相關帖文 | 回覆 | 瀏覽次數 | 活動 | |
---|---|---|---|---|
|
5
9月 25
|
24240 | ||
|
2
7月 16
|
13483 | ||
|
3
3月 15
|
9499 | ||
|
1
10月 25
|
3638 | ||
|
2
1月 23
|
15499 |