N°9774 - Fix missing module dependency to request management#8
Open
Molkobain wants to merge 1 commit into
Open
Conversation
There was a problem hiding this comment.
Pull request overview
This PR fixes a setup crash (iTop ticket N°9774) that occurred when installing the Customer Survey extension without Ticket Management. The extension's datamodel adds a menu under the RequestManagement parent menu, so a request-management module must be present at compile time; otherwise the XML delta merge dereferences a null node and setup fails. The fix tightens the module's dependency expression so that a request-management module is actually required, rather than being satisfiable by the always-present itop-structure module.
Changes:
- Replaced the
itop-request-mgmt/3.2.0 || itop-structure/3.2.0dependency with a request-management-only alternative so theRequestManagementmenu is guaranteed to exist. - Intends to accept either the simple or ITIL request-management module.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Molkobain
force-pushed
the
issue/9774-fix-missing-module-dependancy-to-request-management
branch
from
July 8, 2026 21:19
a198a49 to
04f3dd9
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Base information
Symptom (bug)
While trying to install the Customer Survey extension, I got the following error during compilation, and setup could not complete:
Reproduction procedure (bug)
Cause (bug)
The RequestManagement menu is not present in the datamodel, so the extension cannot add its submenu to it, and XML delta merging crashes.
A dependency on itop-request-mgmt was indeed added in N°8372, but it is incorrect. It should:
Proposed solution (bug and enhancement)
Add a mandatory dependency on itop-request-mgmt OR itop-request-mgmt-itil in the module.
Checklist before requesting a review