51Testing软件测试论坛

标题: 新手报到,急求Bugfree2.0问题详解 [打印本页]

作者: kingz1999    时间: 2009-11-10 14:34
标题: 新手报到,急求Bugfree2.0问题详解
是个老问题了,但是在论坛里找了很久都没有找到答案,望各位大侠不吝赐教.
关于BUGFREE 编辑,解决,关闭 三个按钮的问题.....
如果能让BUG发起人,被指派人能点解决按钮...我现在的问题就是BUG建立人,能点解决,但是被指派人只能点编辑,不能点解决.

测试中实际的情况是,测试人员发现问题,提出BUG,然后指派给开发组长,开发组长分派问题给开发人,开发人修改完问题之后,点解决指回给测试人员,
如果还发现问题就继续指派给开发组长,直到问题解决然后关闭.

现在就是只有BUG建立人能点解决按钮...郁闷了好久了,在线等答案,谢谢啊~~~~~~~~
作者: hbm    时间: 2009-11-10 14:36
所有人加入到项目中,用户分组
作者: kingz1999    时间: 2009-11-10 14:39
分组分为了2个组,一个测试组,一个开发组,只有测试组可以提交BUG,指派给开发组,但是被指派人只能点编辑,BUG修改好了之后解决按钮不能点,只能由BUG发起人点.
现在想要的是被指派人能够点解决按钮.....
作者: kingz1999    时间: 2009-11-10 14:53
之前在网上找到一段修改的方法但是修改之后依然没有效果:
bug.tpl 中
<!--编辑{if $ActionType eq 'OpenBug' or $EditMode eq 'true'}{assign var="EditButtonStatus" value = 'disabled="disabled"'}{/if}-->
{if $ActionType eq 'OpenBug' or $EditMode eq 'true' or ($ShyCurrentUser neq $BugInfo.AssignedTo and $ShyCurrentUser neq $BugInfo.OpenedBy and $ShyCurrentUser neq 'admin')}{assign var="EditButtonStatus" value = 'disabled="disabled"'}{/if}
<!--解决{if $BugInfo.BugStatus neq 'Active' or $ActionType eq 'OpenBug'or $EditMode eq 'true'}{assign var="ResolveBugButtonStatus" value = 'disabled="disabled"'}{/if}-->
{if $BugInfo.BugStatus neq 'Active' or $ActionType eq 'OpenBug' or $EditMode eq 'true' or ($ShyCurrentUser neq $BugInfo.AssignedTo and $ShyCurrentUser neq $BugInfo.OpenedBy and $ShyCurrentUser neq 'admin')}{assign var="ResolveBugButtonStatus" value = 'disabled="disabled"'}{/if}
<!--关闭{if $BugInfo.BugStatus neq 'Resolved' or $ActionType eq 'OpenBug'or $EditMode eq 'true'}{assign var="CloseBugButtonStatus" value = 'disabled="disabled"'}{/if}-->
{if $BugInfo.BugStatus neq 'Resolved' or $ActionType eq 'OpenBug' or $EditMode eq 'true' or ($ShyCurrentUser neq $BugInfo.OpenedBy and $ShyCurrentUser neq 'admin')}{assign var="CloseBugButtonStatus" value = 'disabled="disabled"'}{/if}
bug.php 中
$TPL->assign('LastActionID',$LastActionID);
之后增加如下内容
$TPL->assign('ShyCurrentUser',$_SESSION["TestUserName"]);

看看有人能帮忙解决这个问题么....




欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2