<html dir="ltr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style id="owaParaStyle" type="text/css">
<!--
p
        {margin-top:0;
        margin-bottom:0}
-->
</style>
</head>
<body>
<div style="direction:ltr; font-family:Tahoma; color:#000000; font-size:10pt">Working with the SLA Extension, I came across the problem of stalled tickets: by default, there is no way to stop the "timer" for the due date when a ticket becomes stalled, as stated
 by the author in<br>
<a href="http://www.gossamer-threads.com/lists/rt/users/105845#105845" target="_blank">http://www.gossamer-threads.com/lists/rt/users/105845#105845</a>
<br>
<br>
So I've just implemented a small customization (very imperfect indeed) and I want to share it with all of you. Feel free to contribute, and please share your improvements.<br>
<br>
First of all, a few assumptions (aka limitations):<br>
- in $RT::ServiceBusinessHours we defined only 'Default' ServiceBusinessHours<br>
- users will not modify the date fields we set, otherwise everything would screw up<br>
<br>
The idea is to move the due date forward as soon as the ticket exits the stalled status. To compute the new due date we need to know when the tickets became stalled. So, we first have to save somewhere the time when it became stalled: we temporarly save it
 in the Resolved attribute (very dirty, I know..!), which shouldn't be used while stalled.<br>
<br>
This solution includes two actions, two conditions, and two scrips which put everything together.<br>
<br>
Conditions, which you can easily build thanks to sbin/rt-setup-database and the ExecModule StatusChange:<br>
- on stalled<br>
- on un-stall<br>
<br>
Actions (the code is below):<br>
- Set resolved temporarly <br>
- Update due date on un-stall <br>
<br>
Scrips:<br>
- On stalled Set resolved temporarly<br>
- On un-stall Update due date<br>
<br>
<br>
I think the most important improvement would be to avoid the use of the Resolved attribute as temporary. Instead, it would be better to define a new private attribute in Ticket.pm; consequently, a new column in the DB, etc.<br>
<br>
Of course, I will appreciate any suggestions, comments, etc.<br>
<br>
Thanks<br>
<br>
AS<br>
<br>
<br>
======== Action1. Set resolved temporarly =====<br>
my $tkt = $self->TicketObj;<br>
my $id = $tkt->Id;<br>
my $stalled_date = RT::Date->new( $RT::SystemUser );<br>
$stalled_date->SetToNow;<br>
my ($status, $msg) = $tkt->_Set(<br>
       Field => 'Resolved',<br>
       Value => $stalled_date->ISO,<br>
       RecordTransaction => 0<br>
);<br>
unless ( $status ) {<br>
    $RT::Logger->error("Unable to set Resolved date to ticket #$id: $msg");<br>
    return 0;<br>
}<br>
$RT::Logger->debug("Set Resolved date of ticket #". $id . " to ". $stalled_date->ISO);<br>
return 1;<br>
===================================<br>
<br>
======== Action2. Update due date on un-stall =====<br>
my $t = $self->TicketObj;<br>
my $id = $t->Id;<br>
use Business::Hours;<br>
<br>
my $now = RT::Date->new( $RT::SystemUser );<br>
$now->SetToNow;<br>
my $bhours = Business::Hours->new();<br>
$bhours->business_hours( %{ $RT::ServiceBusinessHours{ 'Default' } } );<br>
my $delta = $bhours->between($t->ResolvedObj->Unix, $now->Unix);<br>
my $new_due = $bhours->add_seconds($t->DueObj->Unix, $delta);<br>
<br>
my $due_date = RT::Date->new( $RT::SystemUser );<br>
$due_date->Set(Format => 'unix', Value => $new_due );<br>
# finally set new due date<br>
my ($status, $msg) = $t->_Set(<br>
       Field => 'Due',<br>
       Value => $due_date->ISO,<br>
       RecordTransaction => 0<br>
);<br>
# if the two transitions (*->stalled and stalled->*) take place out of hours,<br>
# in the same interval, then $delta will be 0<br>
if( !($t->DueObj->Diff($due_date)) ) {<br>
    $RT::Logger->debug("Unable to set Due date to ticket #$id: new_due_date = old_due_date " . $due_date->ISO);<br>
}<br>
elsif ( !($status) )  {<br>
    $RT::Logger->error("Unable to set Due date to ticket #$id: $msg");<br>
    return 0;<br>
}<br>
# reset Resolved date<br>
($status, $msg) = $t->_Set(<br>
       Field => 'Resolved',<br>
       Value => 0,<br>
       RecordTransaction => 0<br>
);<br>
unless ( $status ) {<br>
    $RT::Logger->error("Unable to reset Resolved date to ticket #$id: $msg");<br>
}<br>
$RT::Logger->debug("Due date updated after un-stalling ticket #". $id );<br>
return 1;<br>
==============================</div>
<br>
<br>
<div align="left">
<p style="font-family:Calibri,Sans-Serif; font-size:10pt"><span style="color:#000000; font-weight:bold">Alberto Scotto</span>
<span style="color:#808080"></span><br>
<br>
<span style="color:#000000"><img border="0" alt="Blue" src="cid:bfeb0dedcce94e11bf9e9d043f8677dc" style="margin:0px">
</span><br>
<span style="color:#808080">Via Cardinal Massaia, 83<br>
10147 - Torino - ITALY <br>
phone: +39 011 29100 <br>
<a href="al.scotto@reply.it" target="" style="color:blue; text-decoration:underline">al.scotto@reply.it</a>
<br>
<a title="" href="www.reply.it" target="" style="color:blue; text-decoration:underline">www.reply.it</a>
</span><br>
 </p>
</div>
<br>
<hr>
<font face="Arial" color="Gray" size="1"><br>
--<br>
The information transmitted is intended for the person or entity to which it is addressed and may contain confidential and/or privileged material. Any review, retransmission, dissemination or other use of, or taking of any action in reliance upon, this information
 by persons or entities other than the intended recipient is prohibited. If you received this in error, please contact the sender and delete the material from any computer.<br>
</font>
</body>
</html>