X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=rt%2Fshare%2Fhtml%2FElements%2FSelectStatus;h=33d20643c3a1511e2c5345f4f67c52fa1174e760;hb=44dd00a3ff974a17999e86e64488e996edc71e3c;hp=e571baf6329c2a8342734a43e8d466e673db072a;hpb=43a06151e47d2c59b833cbd8c26d97865ee850b6;p=freeside.git diff --git a/rt/share/html/Elements/SelectStatus b/rt/share/html/Elements/SelectStatus index e571baf63..33d20643c 100755 --- a/rt/share/html/Elements/SelectStatus +++ b/rt/share/html/Elements/SelectStatus @@ -2,7 +2,7 @@ %# %# COPYRIGHT: %# -%# This software is Copyright (c) 1996-2012 Best Practical Solutions, LLC +%# This software is Copyright (c) 1996-2019 Best Practical Solutions, LLC %# %# %# (Except where explicitly superseded by other copyright notices) @@ -50,45 +50,89 @@ % if ( $DefaultValue ) { % } -% foreach my $status (@status) { -% next if ($SkipDeleted && $status eq 'deleted'); -% my $selected = defined $Default && $status eq $Default ? 'selected="selected"' : ''; +% for my $lifecycle (sort keys %statuses_by_lifecycle) { +% if ($group_by_lifecycle) { + +% } +% foreach my $status (@{$statuses_by_lifecycle{$lifecycle}}) { +% next if ($SkipDeleted && lc $status eq 'deleted'); +% my $selected = defined $Default && $status eq $Default ? 'selected="selected"' : ''; +% } +% if ($group_by_lifecycle) { + +% } % } <%INIT> ### XXX: no cover for Tools/MyDay.html - -my @status; +my %statuses_by_lifecycle; if ( @Statuses ) { - @status = @Statuses; -} -elsif ( $TicketObj ) { - my $current = $TicketObj->Status; - my $lifecycle = $TicketObj->QueueObj->Lifecycle; + $statuses_by_lifecycle{''} = \@Statuses; +} else { + if ( $Object ) { + my $lifecycle = $Object->LifecycleObj; + if ($Object->_Accessible("Status", "read")) { + my $current = $Object->Status; + my @status; + push @status, $current; - my %has = (); - foreach my $next ( $lifecycle->Transitions( $current ) ) { - my $check = $lifecycle->CheckRight( $current => $next ); - $has{ $check } = $TicketObj->CurrentUserHasRight( $check ) - unless exists $has{ $check }; - push @status, $next if $has{ $check }; + my %has = (); + foreach my $next ( $lifecycle->Transitions( $current ) ) { + my $check = $lifecycle->CheckRight( $current => $next ); + $has{ $check } = $Object->CurrentUserHasRight( $check ) + unless exists $has{ $check }; + push @status, $next if $has{ $check }; + } + $statuses_by_lifecycle{$lifecycle->Name} = \@status; + } else { + $statuses_by_lifecycle{$lifecycle->Name} = [ $lifecycle->Transitions('') ]; + } + } + for my $lifecycle ( @Lifecycles ) { + $statuses_by_lifecycle{$lifecycle->Name} ||= [ $lifecycle->Valid ]; + } + + if (not keys %statuses_by_lifecycle) { + for my $lifecycle (map { RT::Lifecycle->Load($_) } RT::Lifecycle->List($Type)) { + $statuses_by_lifecycle{$lifecycle->Name} = [ $lifecycle->Valid ]; + } } } -elsif ( $QueueObj ) { - @status = $QueueObj->Lifecycle->Transitions(''); -} -else { - @status = RT::Queue->Lifecycle->Valid; + +if (keys %statuses_by_lifecycle) { + my %simplified; + my $key = sub { + join "\0", sort @{$_[0]}; + }; + for my $name (sort keys %statuses_by_lifecycle) { + my $matched; + my $statuses = $statuses_by_lifecycle{$name}; + for my $simple (sort keys %simplified) { + if ($key->($statuses) eq $key->($simplified{$simple})) { + # Statuses are the same, join 'em! + $simplified{"$simple, $name"} = delete $simplified{$simple}; + $matched++; + last; + } + } + unless ($matched) { + $simplified{$name} = $statuses; + } + } + %statuses_by_lifecycle = %simplified; } + +my $group_by_lifecycle = keys %statuses_by_lifecycle > 1; <%ARGS> $Name => undef +$Type => undef, @Statuses => () -$TicketObj => undef -$QueueObj => undef +$Object => undef, +@Lifecycles => (), $Default => '' $SkipDeleted => 0