ProjeQtOR v4.1.2 wbs sequencing does not work when moving a block of items
I have many groups of
Component 1
Activity 1.1
Activity 1.2
Activity 1.3
Component 2
Activity 2.1
Component 3
Activity 3.1
Activity 3.2
Activity 3.3
The parent of Activity 1.1, Activity 1.2, Activity 1.3 is Component 1 and so forth.
If, for example, I move Component 3 and it associated Activities above Component 2 it will move the Component 3 but leave all of the Activities where they were in the visual sequence.
It does, however, renumber the Component and the Activities correctly but the display is incorrect.
The higher up the list of Components that I move a group then every Activity below is incorrectly displayed.
The Components are re-displayed in the correct order but none of the Activities below are.
This takes me time to go to each activity and press update. Once update is pressed it moves the Activity into the correct visual display.
Note: nothing needs to be changed on the Activity.
This is taking a lot of my time to manually re-sequence the activities into the correct display order
Issue confirmed.
Ticket #1301 recorded
Hi,
Issue fixed.
Update /model/PlanningElement.php file, add 1 line after line 411, from
public function wbsSave() {
//
$this->_noHistory=true;
$this->saveForced();
to
public function wbsSave() {
//
$this->_noHistory=true;
$this->wbsSortable=formatSortableWbs($this->wbs);
$this->saveForced();
Fix will be deployed with V4.2.0.
PS the Copy function on a Component block also causes display issues after the copy
Hi,
I just tested copy : not reproduced. Patch seems to also fix this point.