Fri 09 Sep 2005 10:00:07 AM UTC, comment #4:
This item has been reassigned from the project Savane support tracker to your tracker.
The original report is still available at support #703
Following are the information included in the original report:
[field #0] Item ID: 703 [field #1] Group ID: 116 [field #2] Open/Closed: Open [field #3] Severity: 3 - Normal [field #4] Privacy: Public [field #6] Category: Installation/Configuration [field #7] Submitted by: kickino [field #8] Assigned to: None [field #9] Submitted on: ven 09.09.2005 à 09:29 [field #10] Summary: support-tracker has got wrong ids [field #11] Original Submission: Hello guys.
Maybe you can tell me why Savane produces on the support tracker of the Savannah Administration (don t know where else, too) wrong ids in the Status field. :-/
[select name="resolution_id"]
[option value="100" selected="selected"]None[/option]
[option value="1"]Done[/option]
[option value="3"]Wont Do[/option]
[option value="6"]Works For Me[/option]
[option value="10"]Ready For Test[/option]
[option value="8"]In Progress[/option]
[option value="4"]Postponed[/option]
[option value="11"]Confirmed[/option]
[option value="8"]Need Info[/option]
[option value="7"]Duplicate[/option]
[option value="2"]Invalid[/option]
[/select]
You see? While selecting "In Progress" you ll get "Need Info" because its the last item which is defined with the SAME value-id (==8).
Is that a problem in the Savane project or in our configuration?
(if that is a known bug, then sorry :/)
Thanks for helping me out.
Sebastian Wieseler
[field #13] Item Group: None [field #14] Status: None [field #15] Component Version: None [field #16] Platform Version: None [field #17] Reproducibility: None [field #18] Size (loc): None [field #19] Fixed Release: None [field #20] Planned Release: None [field #21] Effort: 0.00 [field #25] Priority: 5 - Normal [field #28] Percent Complete: 0% [field #30] Release: None [field #55] Custom Select Box #1: None [field #56] Custom Select Box #2: None [field #57] Custom Select Box #3: None [field #58] Custom Select Box #4: None [field #59] Custom Select Box #5: None [field #60] Custom Select Box #6: None [field #61] Custom Select Box #7: None [field #62] Custom Select Box #8: None [field #63] Custom Select Box #9: None [field #64] Custom Select Box #10: None
|
Fri 09 Sep 2005 09:59:58 AM UTC, comment #3:
[pcphsft15] /home/mroy/svdev/update > cat 1.0.6/new_status_default_values.sql | grep "In Progress"
INSERT INTO bugs_field_value (bug_fv_id,bug_field_id,group_id,value_id,value,description,order_id,status) VALUES (179,108,100,9,'In Progress','This item is currently being worked on',70,'A');
INSERT INTO patch_field_value (bug_fv_id,bug_field_id,group_id,value_id,value,description,order_id,status) VALUES (179,108,100,9,'In Progress','This item is currently being worked on',70,'A');
INSERT INTO support_field_value (bug_fv_id,bug_field_id,group_id,value_id,value,description,order_id,status) VALUES (179,108,100,8,'In Progress','This item is currently being worked on',70,'A');
INSERT INTO task_field_value (bug_fv_id,bug_field_id,group_id,value_id,value,description,order_id,status) VALUES (179,108,100,9,'In Progress','This item is currently being worked on',70,'A');
Hum, that's correct, I missed this third line. We'll we really need to repackage that.
In the meantime, run
UPDATE support_field_value SET value_id='9' WHERE group_id='100' AND value='In Progress';
|
Fri 09 Sep 2005 09:14:11 AM UTC, comment #2:
Nope:
~/savane/update$ grep -r "In Progress" .
[...]
./1.0.6/new_status_default_values.sql:INSERT INTO support_field_value (bug_fv_id,bug_field_id,group_id,value_id,value,description,order_id,status) VALUES (179,108,100,8,'In Progress','This item is currently being worked on',70,'A');
It's 8.
|