-
Notifications
You must be signed in to change notification settings - Fork 249
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[16.0][FIX] fieldservice: Fix location partner type #1164
Conversation
00b04db
to
64e1982
Compare
Service locations `fsm.location` create a partner `res.partner` through inheritance. Before this change, partners could be explicitely typed "fsm_location" when adding them within children of an existing partner, which in turn would automatically create service locations on top of them. But creating a service location by hand would not set that type on the partner created through inheritance. After this change, all partners built from service locations are typed the same. Fixes OCA#1128.
64e1982
to
d0b370d
Compare
@houzefa-abba Do you have other changes to push or is this good to be merged? |
Hi this one is good to go, my latest change was only a rebase |
/ocabot merge minor |
This PR looks fantastic, let's merge it! |
Congratulations, your PR was merged at d416fda. Thanks a lot for contributing to OCA. ❤️ |
Service locations
fsm.location
create a partnerres.partner
through inheritance.Before this change, partners could be explicitely typed "fsm_location" when adding them within children of an existing partner, which in turn would automatically create service locations on top of them.
But creating a service location by hand would not set that type on the partner created through inheritance. After this change, all partners built from service locations are typed the same.
Fixes #1128.