-
-
Notifications
You must be signed in to change notification settings - Fork 289
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
[14.0][FIX]base_geoengine: missing sidebar #375
base: 14.0
Are you sure you want to change the base?
Conversation
125a811
to
a17275c
Compare
base_geoengine/static/src/js/views/geoengine/geoengine_controller.js
Outdated
Show resolved
Hide resolved
a17275c
to
3b7f9c8
Compare
base_geoengine/static/src/js/views/geoengine/geoengine_controller.js
Outdated
Show resolved
Hide resolved
4dd2881
to
1138961
Compare
1138961
to
b6a6169
Compare
Changes look good |
I finally found an answer to this mistery. 14.0.1.0.3? But if I inspect the manifest of
This is because of a past event regarding missing history The whole module was re-merged into 14.0 Because of this some of the changes are still buried in the branch 14.0-bad-history. In the lost changes the In the bad-history repo we have this line in particular, which makes the
We can see the same line if we add And then reload the page with I suspect that even though this repo has been fixed, the module in the Runboat doesn't update because its version is higher than what we have in the most recent I guess we could increase the version number in order to achieve consistency. Let me know what you think. |
@PicchiSeba Thank you for the explanation. You could propose a PR with the missing part and we will merge it with a bump of the minor version. In this way we are sure that the one into pipy will be the lastest. |
b6a6169
to
4836e55
Compare
@lmignon I updated this PR with the changes. I tested it with the |
This PR has the |
/ocabot merge minor |
On my way to merge this fine PR! |
@lmignon your merge command was aborted due to failed check(s), which you can inspect on this commit of 14.0-ocabot-merge-pr-375-by-lmignon-bump-minor. After fixing the problem, you can re-issue a merge command. Please refrain from merging manually as it will most probably make the target branch red. |
@lmignon Some tests failed during the merge but I cannot see them. |
ping @OCA/geospatial-maintainers |
/ocabot merge minor |
Hey, thanks for contributing! Proceeding to merge this for you. |
@lmignon your merge command was aborted due to failed check(s), which you can inspect on this commit of 14.0-ocabot-merge-pr-375-by-lmignon-bump-minor. After fixing the problem, you can re-issue a merge command. Please refrain from merging manually as it will most probably make the target branch red. |
@lmignon your merge command was aborted due to failed check(s), which you can inspect on this commit of 14.0-ocabot-merge-pr-375-by-lmignon-bump-minor. After fixing the problem, you can re-issue a merge command. Please refrain from merging manually as it will most probably make the target branch red. |
@lmignon Is it necessary to do a rebase? |
Please try a rebase. |
4836e55
to
a77db24
Compare
I installed a fresh Odoo instance with the module
fieldservice_geoengine
(from OCA's field-service repo), added thegeoengine
view mode to the FSM Location action but the button didn't show up.Opening up the browser console I was greeted by an error message stating that
base_geoengine.GeoengineController
couldn't be initialized because it was referencingweb.Sidebar
which was nowhere to be found.After a bit of investigation I stumbled into this commit in Odoo 14.0 which essentially replaced
web.Sidebar
withweb.ActionMenus
.We can verify this by reading the first comment in the newly added file
SOMEHOW running a clean runboat instance of the field-service repo and installing
fieldservice_geoengine
makes the geoengine action appear, but not on a local installation.I don't understand what's happening here.
Please let me know if you encountered this situation before or if I'm just hallucinating.