View Issue Details

IDProjectCategoryView StatusLast Update
0007865mantisbtroadmappublic2011-08-17 11:01
Reporterbpieslak Assigned To 
PrioritynormalSeveritymajorReproducibilityalways
Status newResolutionopen 
Summary0007865: a parent project's RoadMap cannot include issues in subprojects
Description

We are evaluating the RoadMap feature in the newest version, and we're really excited about using it. We think we have an issue with how the RoadMap sees issues in nested projects.

Here is an example of how our test project structure organized:

PRODUCT1
issue 0000001
COMPONENT1
issue 0000002
COMPONENT2
issue 0000003

I want to create "v1.1" as a version for PRODUCT1, and have all 3 issues listed on the v1.1 roadmap.

Currently we don't see a way to do that because the issues in COMPONENT1 and COMPONENT2 can't see the "v1.1" version of the parent project, PRODUCT1.

TagsNo tags attached.

Relationships

has duplicate 0013172 closedatrol Roadmap does not list subproject issues 

Activities

plofte

plofte

2007-06-22 10:28

reporter   ~0014804

I use the roadmap feature for my projects, and I have found that I must create the same version in each component or sub project to get them to report in the roadmap of the parent project.

Also I implemented the following patch, to have the sub project issues show up in the parent projects roadmap.
69,75d68
< $sub_project_ids = user_get_all_accessible_subprojects( $tuser id, $t_project_id );
< array_unshift( $sub_project_ids, $t_project_id );
< $projects = '('. $t_project_id;
< foreach( $sub_project_ids as $s_project_id ) {
< $projects = $projects . ',' . $s_project_id ;
< }
< $projects = $projects . ')';
105c98
< $query = "SELECT * FROM $t_bug_table WHERE project_id in $projects AND target_version='$c_version' ORDER BY status ASC, last_updated DES C";

                  $query = "SELECT * FROM $t_bug_table WHERE project_id='$                                                                             c_project_id' AND target_version='$c_version' ORDER BY status ASC, last_updated                                                                              DESC";

218c211
< ?>

?>

It's not perfect, I would like to see the roadmap in a "Tree" view, but for now this has been working for me.

rerbin

rerbin

2010-01-24 20:37

reporter   ~0024233

Yes,our company met the same problem,it's important and very useful.Can anybody do a fix?

lsolesen

lsolesen

2010-03-25 14:11

reporter   ~0024908

What is the status on this. I am using mantisbt 1.2? Has anyone made a fix so the road maps will be organized by version number?

malberdi

malberdi

2010-06-03 16:15

reporter   ~0025686

Does anybody use plofote's fix or any other fix to resolve it?

qahuni

qahuni

2010-06-09 04:59

reporter   ~0025784

Yes, We need it, too.

Hauptmann

Hauptmann

2011-08-17 11:01

reporter   ~0029493

This is very importand for us and is the most importand drawback for using the mantis versions.

As a workaround we are working with user defined version strings which are entered in custom fields and a special script to generate a changelog.

To model milestones we are creating special milestone issues and add a bug relationship to the issues which have to be solved in the milestones.

This procedure is very slow because it causes a lot of relationships and a lot of email traffic when changing one issue.