Bug 31976: Incorrect default category selected by authorized values page
[koha-ffzg.git] / admin / branch_transfer_limits.pl
index 0adc958..5a2a688 100755 (executable)
 # You should have received a copy of the GNU General Public License
 # along with Koha; if not, see <http://www.gnu.org/licenses>.
 
-use strict;
-use warnings;
+use Modern::Perl;
 
 use CGI qw ( -utf8 );
-use C4::Auth;
+use C4::Auth qw( get_template_and_user );
 use C4::Context;
-use C4::Output;
-use C4::Koha;
-use C4::Branch; 
-use C4::Circulation qw{ IsBranchTransferAllowed DeleteBranchTransferLimits CreateBranchTransferLimit };
+use C4::Output qw( output_html_with_http_headers );
+use C4::Circulation qw( DeleteBranchTransferLimits CreateBranchTransferLimit IsBranchTransferAllowed );
 
-my $input = new CGI;
+my $input = CGI->new;
 
 my ($template, $loggedinuser, $cookie)
     = get_template_and_user({template_name => "admin/branch_transfer_limits.tt",
                             query => $input,
                             type => "intranet",
-                 flagsrequired => {parameters => 'parameters_remaining_permissions'},
-                            debug => 1,
+                 flagsrequired => {parameters => 'manage_transfers'},
                             });
 
 my $dbh = C4::Context->dbh;
 my $branchcode;
-if((!defined($input->param('branchcode'))) & mybranch() ne '')
+if((!defined($input->param('branchcode'))) & C4::Context::mybranch() ne '')
 {
-       $branchcode = mybranch();
+    $branchcode = C4::Context::mybranch();
 }
 else
 {
        $branchcode = $input->param('branchcode');
 }
 
-my $branchname = GetBranchName($branchcode);
-
-# Getting the branches for user selection
-my $branches = GetBranches();
-my @branch_loop;
-for my $thisbranch (sort { $branches->{$a}->{branchname} cmp $branches->{$b}->{branchname} } keys %$branches) {
-    my %row =(value => $thisbranch,
-              branchname => $branches->{$thisbranch}->{'branchname'},
-              selected => $thisbranch eq $branchcode ? 1 : 0,
-             );
-    push @branch_loop, \%row;
-}
-
-
 # Set the template language for the correct limit type using $limitType
 my $limitType = C4::Context->preference("BranchTransferLimitsType") || "ccode";
 
@@ -124,7 +106,6 @@ foreach my $code ( @codes ) {
                $row_data{ code }         = $code;
                $row_data{ toBranch }     = $toBranch;
                $row_data{ isChecked }    = $isChecked; 
-               $row_data{ toBranchname } = GetBranchName($toBranch);   
                push( @to_branch_loop, \%row_data );
        }
 
@@ -135,10 +116,8 @@ foreach my $code ( @codes ) {
 $template->param(
                branchcount => $branchcount,
                codes_loop => \@codes_loop,
-               branch_loop => \@branch_loop,
                branchcode_loop => \@branchcode_loop,
                branchcode => $branchcode,
-               branchname => $branchname,
         limitType => $limitType,
                );