I wanted to add a new Status I went to Administration->Field Values->Status
I then added a new one "WAITING-REPONSE" sortkey 50
But when i go back to an existing bug that status is not there?
Is there something else i need to do?
Thanks
I wanted to add a new Status I went to Administration->Field Values->Status
I then added a new one "WAITING-REPONSE" sortkey 50
But when i go back to an existing bug that status is not there?
Is there something else i need to do?
Thanks
您必须将其包含在工作流程中:
管理 > 错误状态工作流程
我们可以通过在 techzilla 数据库的“bug_status”表中添加新条目来在 Bugzilla 中添加新状态。
例如:-
+----+-------------+---------+----------+ | 编号 | 价值 | 排序键 | 活跃| +----+-------------+---------+----------+ | 1 | 未确认 | 100 | 1 | | 2 | 新 | 200 | 1 | | 3 | 已分配 | 300 | 1 | | 4 | 重新开放 | 400 | 1 | | 5 | 已解决 | 500 | 1 | | 6 | 已验证 | 600 | 1 | | 7 | 关闭 | 700 | 1 | | 8 | 回复 | 800 | 1 | +----+-------------+---------+----------+ 8 行一组(0.01 秒)
使用插入查询将新状态添加到此表中。
INSERT INTO bug_status VALUES('',........);
遵循步骤:-
1)首先在管理角色的帮助下在“字段值”下添加错误状态。
2)转到“错误状态工作流程”并选中重新打开行的所有复选框。
3)现在从重新打开“验证重新打开”列中选择复选框