Перейти к содержимому
Меню
Чтобы взаимодействовать с сообществом, необходимо зарегистрироваться.
Этот вопрос был отмечен
1 Ответить
4553 Представления

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
23515
2
июл. 16
13032
3
мар. 15
9002
2
янв. 23
14792
1
апр. 22
6943