Skip to Content
Меню
Вам необхідно зареєструватися, щоб взаємодіяти зі спільнотою.
Це запитання позначене
1 Відповісти
4591 Переглядів

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 ?

Аватар
Відмінити
Найкраща відповідь

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.

Related Posts Відповіді Переглядів Дія
5
жовт. 23
23575
2
лип. 16
13071
3
бер. 15
9037
2
січ. 23
14861
1
квіт. 22
7003