summaryrefslogtreecommitdiffstats
path: root/Bugzilla
diff options
context:
space:
mode:
authorbugreport%peshkin.net <>2002-10-13 13:26:02 +0200
committerbugreport%peshkin.net <>2002-10-13 13:26:02 +0200
commitfd742d6fc8849328749866dbff2936d43abcc7d1 (patch)
tree1e4d7646a4589bcf44adceb452b38924286f7af1 /Bugzilla
parentf61593bee73b37fc12caabbb2958b6515d688420 (diff)
downloadbugzilla-fd742d6fc8849328749866dbff2936d43abcc7d1.tar.gz
bugzilla-fd742d6fc8849328749866dbff2936d43abcc7d1.tar.xz
Bug 24789 [E|A|R] Add Estimated, Actual, Remaining Time Fields
patch by jeff.hedlund@matrixsi.com 2xr=joel,justdave
Diffstat (limited to 'Bugzilla')
-rw-r--r--Bugzilla/Search.pm61
1 files changed, 61 insertions, 0 deletions
diff --git a/Bugzilla/Search.pm b/Bugzilla/Search.pm
index db97af3f2..36311d6c4 100644
--- a/Bugzilla/Search.pm
+++ b/Bugzilla/Search.pm
@@ -149,6 +149,11 @@ sub init {
push(@specialchart, ["keywords", $t, $F{'keywords'}]);
}
+ if (lsearch($fieldsref, "(SUM(ldtime.work_time)*COUNT(DISTINCT ldtime.bug_when)/COUNT(bugs.bug_id)) AS actual_time") != -1) {
+ push(@supptables, "longdescs AS ldtime");
+ push(@wherepart, "ldtime.bug_id = bugs.bug_id");
+ }
+
foreach my $id ("1", "2") {
if (!defined ($F{"email$id"})) {
next;
@@ -323,6 +328,62 @@ sub init {
push(@wherepart, "$table.bug_id = bugs.bug_id");
$f = "$table.thetext";
},
+ "^work_time,changedby" => sub {
+ my $table = "longdescs_$chartid";
+ push(@supptables, "longdescs $table");
+ push(@wherepart, "$table.bug_id = bugs.bug_id");
+ my $id = &::DBNameToIdAndCheck($v);
+ $term = "(($table.who = $id";
+ $term .= ") AND ($table.work_time <> 0))";
+ },
+ "^work_time,changedbefore" => sub {
+ my $table = "longdescs_$chartid";
+ push(@supptables, "longdescs $table");
+ push(@wherepart, "$table.bug_id = bugs.bug_id");
+ $term = "(($table.bug_when < " . &::SqlQuote(SqlifyDate($v));
+ $term .= ") AND ($table.work_time <> 0))";
+ },
+ "^work_time,changedafter" => sub {
+ my $table = "longdescs_$chartid";
+ push(@supptables, "longdescs $table");
+ push(@wherepart, "$table.bug_id = bugs.bug_id");
+ $term = "(($table.bug_when > " . &::SqlQuote(SqlifyDate($v));
+ $term .= ") AND ($table.work_time <> 0))";
+ },
+ "^work_time," => sub {
+ my $table = "longdescs_$chartid";
+ push(@supptables, "longdescs $table");
+ push(@wherepart, "$table.bug_id = bugs.bug_id");
+ $f = "$table.work_time";
+ },
+ "^percentage_complete," => sub {
+ my $oper;
+ if ($t eq "equals") {
+ $oper = "=";
+ } elsif ($t eq "greaterthan") {
+ $oper = ">";
+ } elsif ($t eq "lessthan") {
+ $oper = "<";
+ } elsif ($t eq "notequal") {
+ $oper = "<>";
+ } elsif ($t eq "regexp") {
+ $oper = "REGEXP";
+ } elsif ($t eq "notregexp") {
+ $oper = "NOT REGEXP";
+ } else {
+ $oper = "noop";
+ }
+ if ($oper ne "noop") {
+ my $table = "longdescs_$chartid";
+ push(@supptables, "longdescs $table");
+ push(@wherepart, "$table.bug_id = bugs.bug_id");
+ my $field = "(100*((SUM($table.work_time)*COUNT(DISTINCT $table.bug_when)/COUNT(bugs.bug_id))/((SUM($table.work_time)*COUNT(DISTINCT $table.bug_when)/COUNT(bugs.bug_id))+bugs.remaining_time))) AS percentage_complete_$table";
+ push(@fields, $field);
+ push(@having,
+ "percentage_complete_$table $oper " . &::SqlQuote($v));
+ }
+ $term = "0=0";
+ },
"^bug_group,(?!changed)" => sub {
push(@supptables, "LEFT JOIN bug_group_map bug_group_map_$chartid ON bugs.bug_id = bug_group_map_$chartid.bug_id");