OnTimeEstimated

From Request Tracker Wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Maybe you want your requestor to know the time estimates you made:

my $transaction = $self->TransactionObj;
if (($transaction->Type eq "Set") &&
     ($transaction->Field eq "TimeEstimated") &&
     ($transaction->NewValue > 0))
      {
   return(1);
}
else {
   return(undef);
}