X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=rt%2Fshare%2Fhtml%2FAdmin%2FElements%2FEditScrips;h=759470719d7e721d14f29ed8c23b4214319356f4;hb=9aee669886202be7035e6c6049fc71bc99dd3013;hp=df349e1b943fd96bbc65308a2535aeccb0dfbbfc;hpb=b4b0c7e72d7eaee2fbfc7022022c9698323203dd;p=freeside.git diff --git a/rt/share/html/Admin/Elements/EditScrips b/rt/share/html/Admin/Elements/EditScrips index df349e1b9..759470719 100755 --- a/rt/share/html/Admin/Elements/EditScrips +++ b/rt/share/html/Admin/Elements/EditScrips @@ -1,40 +1,40 @@ %# BEGIN BPS TAGGED BLOCK {{{ -%# +%# %# COPYRIGHT: -%# -%# This software is Copyright (c) 1996-2009 Best Practical Solutions, LLC -%# -%# +%# +%# This software is Copyright (c) 1996-2015 Best Practical Solutions, LLC +%# +%# %# (Except where explicitly superseded by other copyright notices) -%# -%# +%# +%# %# LICENSE: -%# +%# %# This work is made available to you under the terms of Version 2 of %# the GNU General Public License. A copy of that license should have %# been provided with this software, but in any event can be snarfed %# from www.gnu.org. -%# +%# %# This work is distributed in the hope that it will be useful, but %# WITHOUT ANY WARRANTY; without even the implied warranty of %# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU %# General Public License for more details. -%# +%# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software %# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA %# 02110-1301 or visit their web page on the internet at %# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html. -%# -%# +%# +%# %# CONTRIBUTION SUBMISSION POLICY: -%# +%# %# (The following paragraph is not intended to limit the rights granted %# to you to modify and distribute this software under the terms of %# the GNU General Public License and is only of importance to you if %# you choose to contribute your changes and enhancements to the %# community by submitting them to Best Practical Solutions, LLC.) -%# +%# %# By intentionally submitting any modifications, corrections or %# derivatives to this work, or any other work intended for use with %# Request Tracker, to Best Practical Solutions, LLC, you confirm that @@ -43,76 +43,142 @@ %# royalty-free, perpetual, license to use, copy, create derivative %# works based on those contributions, and sublicense and distribute %# those contributions and any derivatives thereof. -%# +%# %# END BPS TAGGED BLOCK }}} <& /Elements/ListActions, actions => \@actions &>
-

<&|/l&>Current Scrips

+

<&|/l&>Scrips

+
<&|/l&>Scrips normally run after each individual change to a ticket.
+% my $scrips = $find_scrips->(Stage => 'TransactionCreate'); +<& /Elements/CollectionList, %common_applied_args, Collection => $scrips &> +% unless ( $scrips->Count ) { +

<&|/l&>(No scrips)

+% } + +

<&|/l&>Batch scrips

+
<&|/l&>Batch scrips run after a set of related changes to a ticket.
+% $scrips = $find_scrips->(Stage => 'TransactionBatch'); +<& /Elements/CollectionList, %common_applied_args, Collection => $scrips &> +% unless ( $scrips->Count ) { +

<&|/l&>(No scrips)

+% } + +<& /Elements/Submit, + Name => 'RemoveScrips', + Caption => loc("Un-apply selected scrips"), + Label => loc("Update"), +&> + +

<&|/l&>Not applied scrips

+% $scrips = $find_scrips->(Added => 0); <& /Elements/CollectionList, - OrderBy => 'Description', - Order => 'ASC', - Rows => 100, + Rows => $Rows, + Page => 1, %ARGS, - Format => $Format, - DisplayFormat => "__CheckBox.{DeleteScrip}__, $Format", - Collection => $Scrips, + Collection => $scrips, + Format => $Format, + DisplayFormat => "__CheckBox.{AddScrip}__, $Format", AllowSorting => 1, - PassArguments => [ qw(Query Format Rows Page Order OrderBy id) ], + PassArguments => [ qw(Format Rows Page Order OrderBy id) ], &> - -% if ( $Scrips->Count ) { -

<&|/l&>(Check box to delete)

-% } else { +% unless ( $scrips->Count ) {

<&|/l&>(No scrips)

% } + +<& SelectStageForAdded &> + <& /Elements/Submit, - Caption => loc("Delete selected scrips"), - Label => loc("Delete") + Name => 'AddScrips', + Caption => loc("Apply selected scrips"), + Label => loc("Update"), &> +
<%init> my (@actions); -my $Scrips = RT::Scrips->new($session{'CurrentUser'}); - -my $QueueObj = RT::Queue->new($session{'CurrentUser'}); if ( $id ) { + my $QueueObj = RT::Queue->new($session{'CurrentUser'}); $QueueObj->Load( $id ); - unless ( $QueueObj->id ) { - push @actions, loc("Couldn't load queue #[_1]", $id) - } + Abort(loc("Couldn't load queue #[_1]", $id)) unless $QueueObj->id; } +$id ||= 0; -if ($QueueObj->id) { - $Scrips->LimitToQueue($id); +my $find_scrips = sub { + my %args = (Added => 1, @_); + my $scrips = RT::Scrips->new($session{'CurrentUser'}); + $scrips->LimitByStage( $args{'Stage'} ) + if $args{'Stage'}; + my $method = $args{'Added'}? 'LimitToAdded' : 'LimitToNotAdded'; + $scrips->$method(0, $id); + $scrips->ApplySortOrder if $args{'Added'}; + $scrips->FindAllRows; + return $scrips; +}; + +$Format ||= RT->Config->Get('AdminSearchResultFormat')->{'Scrips'}; +my $Rows = RT->Config->Get('AdminSearchResultRows')->{'Scrips'} || 50; +my $DisplayFormat = $Format; +if ( $id ) { + $DisplayFormat = "__RemoveCheckBox__, $DisplayFormat"; +} else { + $DisplayFormat = "__CheckBox.{RemoveScrip}__, $DisplayFormat"; } -else { - $Scrips->LimitToGlobal(); +$DisplayFormat .= ", __Move.{$id}__"; + +my %common_applied_args = ( + %ARGS, + Format => $Format, + DisplayFormat => $DisplayFormat, + Rows => 0, + Page => 1, + AllowSorting => 0, + PassArguments => [ qw(Format id) ], +); + +if ( $RemoveScrips ) { + foreach my $sid ( @RemoveScrip ) { + my $scrip = RT::Scrip->new( $session{'CurrentUser'} ); + $scrip->Load( $sid ); + next unless $scrip->id; + + my ($status, $msg) = $scrip->RemoveFromObject( $id ); + push @actions, $msg; + } } -# {{{ deal with modifying and deleting existing scrips -# we still support DeleteScrip-id format but array is preferred -foreach my $id ( grep $_, @DeleteScrip, map /^DeleteScrip-(\d+)/, keys %ARGS ) { - my $scrip = RT::Scrip->new($session{'CurrentUser'}); - $scrip->Load( $id ); - my ($retval, $msg) = $scrip->Delete; - if ($retval) { - push @actions, loc("Scrip deleted"); +if ( $AddScrips ) { + foreach my $sid ( @AddScrip ) { + my $scrip = RT::Scrip->new( $session{'CurrentUser'} ); + $scrip->Load( $sid ); + next unless $scrip->id; + + my ($status, $msg) = $scrip->AddToObject( $id, Stage => $Stage ); + push @actions, $msg; } - else { +} + +if ( $MoveScripUp ) { + my $scrip = RT::ObjectScrip->new( $session{'CurrentUser'} ); + $scrip->LoadByCols( Scrip => $MoveScripUp, ObjectId => $id ); + if ( $scrip->id ) { + my ($status, $msg) = $scrip->MoveUp; push @actions, $msg; } } -# }}} -my $dir_path = $m->request_comp->dir_path; -$Format ||= qq{'__id__/TITLE:#'} - .qq{,'__Description__/TITLE:Description'} - .q{,__Stage__, __Condition__, __Action__, __Template__}; +if ( $MoveScripDown ) { + my $scrip = RT::ObjectScrip->new( $session{'CurrentUser'} ); + $scrip->LoadByCols( Scrip => $MoveScripDown, ObjectId => $id ); + if ( $scrip->id ) { + my ($status, $msg) = $scrip->MoveDown; + push @actions, $msg; + } +} @@ -120,5 +186,15 @@ $Format ||= qq{'__ $id => undef $title => undef $Format => undef -@DeleteScrip => () + +@RemoveScrip => () +$RemoveScrips => undef + +@AddScrip => () +$AddScrips => undef +$Stage => 'TransactionCreate' + +$MoveScripUp => undef +$MoveScripDown => undef +