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

After I installed Open HRMS module to Odoo 15 and trying to open Dashboard following error message pop-up.

Uncaught Promise > Cannot find hr_dashboard in this registry!


 

 

Аватар
Отменить
Лучший ответ

Mention 'hr_dashboard in dependencies in your module manifest file:

{
'name': "...",
'summary': "...",
'description': """
This module
* ...
"""
,

'author': '...',
'license': '...',
'category': 'Human Resources/Time Off',
'version': '...',
'depends': ['hr', 'hr_dashboard'],
...


Аватар
Отменить
Автор

Thank you very much for your answer, issue has been resolved after installed default Dashboard app.

Лучший ответ

Hi,

Restart the service once again, upgrade the module and see whether it makes any difference. If still issue persists, report it to the author of the module.

Thanks

Аватар
Отменить
Автор

Thank you very much for your answer, issue has been resolved after installed default Dashboard app.