AutoUpdate Parents with TImeWorked: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
<pre> | <pre> | ||
############################################################################# | ############################################################################# | ||
# Scrip name: WorkFlow MemberOf on Time | # | ||
# Condition: User Defined | # Scrip name: WorkFlow MemberOf on Time | ||
# Modified: MM/DD/YYYY - Name/comments | # Description: Automatically add "Time Worked" to all vertical and horizontal | ||
############################################################################# | # parent tickets | ||
#---------------------------------------------------------------------------- | # | ||
# Condition: User Defined | |||
# Action: User Defined | |||
# Template: Global template: Blank | |||
# Stage: TransactionBatch | |||
# Written: 12/10/2010 - Kenn Crocker | |||
# | |||
# Modified: MM/DD/YYYY - Name/comments | |||
# | |||
############################################################################# | |||
# | |||
#---------------------------------------------------------------------------- | |||
# Custom condition: | |||
#---------------------------------------------------------------------------- | |||
# Set initial values | |||
my $trans = $self->TransactionObj;<br />my $ticket = $self->TicketObj; | my $trans = $self->TransactionObj;<br />my $ticket = $self->TicketObj; |
Revision as of 04:53, 1 April 2013
############################################################################# # # Scrip name: WorkFlow MemberOf on Time # Description: Automatically add "Time Worked" to all vertical and horizontal # parent tickets # # Condition: User Defined # Action: User Defined # Template: Global template: Blank # Stage: TransactionBatch # Written: 12/10/2010 - Kenn Crocker # # Modified: MM/DD/YYYY - Name/comments # ############################################################################# # #---------------------------------------------------------------------------- # Custom condition: #---------------------------------------------------------------------------- # Set initial values my $trans = $self->TransactionObj;<br />my $ticket = $self->TicketObj; # Get out if not for "TimeWorked" return 0 unless ($trans->Type eq 'Set' &&<br />$trans->Field eq 'TimeWorked'); return 1; #---------------------------------------------------------------------------- # Custom action preparation code: #---------------------------------------------------------------------------- # Set initial values my $trans = $self->TransactionObj;<br />my $ticket = $self->TicketObj; my $Time = (($trans->NewValue) - ($trans->OldValue)); my $MemberOf = $ticket->MemberOf; # get out if current ticket is not a "MemeberOf" (child of some parent) return 0 unless $MemberOf; # Loop thru each parent and add the Child's "TimeWorked" to them # You can skip a parent ticket if it is not in active state by uncommenting # the next statement while( my $l = $MemberOf->Next ) { # next unless( $l->TargetObj->Status =~ /^(?:new|open|stalled)$/ ); my $ParentTime = $l->TargetObj->TimeWorked; my $NewTime = ($ParentTime + $Time); $l->TargetObj->SetTimeWorked($NewTime); } return 1; #---------------------------------------------------------------------------- # Custom action cleanup code: None #---------------------------------------------------------------------------- return 1;