Override erpnext Payment Entry DocType class multiple times?

Is this possible? The use case is the education app is installed and there’s a need to fix something by overriding the standard class of Payment Entry. BUT hrms is also installed and there’s an override in the hooks.py already.


Any ideas?

Hooks are resolved using “last writer wins” strategy. Last installed app on site will have highest priority over others.

https://frappeframework.com/docs/user/en/python-api/hooks#how-are-conflicting-hooks-resolved-

1 Like

Oh ok, thanks for this. It now seems to allow to change the resolution order in the installed applications page too.