lyf
1
I am seeing this error while clicking on “Attendance Dashboard” in HR Module.
I am logged in as a Administrator user, have all modules and roles assigned to this user.
My instance is running on WSL - Ubuntu 22.04 in development mode.
Here are me Fappe Apps Versions.

NCP
2
Hi @lyf,
First thing, when your ERPNext is on version 14 then HRMS must be on version 14.
(In some cases if the app doesn’t have any branch/version then you can install the develop/main app but HRMS has an app on version 14).
So first uninstall the develop HRMS from the site.
bench --site [sitename] uninstall-app hrms --force
bench --site [sitename] migrate
// If the bench is running then stop it, for remove hrms app from the app list.
bench remove-app hrms
// OR
bench remove-app hrms --force
bench --site [sitename] clear-cache
bench --site [sitename] clear-website-cache
bench get-app --branch version-14 hrms
bench --site [sitename] install-app hrms
bench --site [sitename] migrate
then reload and check it.
I hope this helps.
Thank You!
1 Like