Skip to Content
Menu
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
To pytanie dostało ostrzeżenie
1 Odpowiedz
4631 Widoki

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 ?

Awatar
Odrzuć
Najlepsza odpowiedź

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
Awatar
Odrzuć
Autor

Commit is done at the end of the import, so select is not possible during the import.

Powiązane posty Odpowiedzi Widoki Czynność
5
wrz 25
23682
2
lip 16
13143
3
mar 15
9088
2
sty 23
14947
1
kwi 22
7027