Stop unnecessary warnings in get_language
[koha.git] / admin / branch_transfer_limits.pl
blobe7422a63c5f762ae43e34894d11001b74a07b679
1 #!/usr/bin/perl
3 # Copyright 2000-2002 Katipo Communications
4 # copyright 2010 BibLibre
6 # This file is part of Koha.
8 # Koha is free software; you can redistribute it and/or modify it under the
9 # terms of the GNU General Public License as published by the Free Software
10 # Foundation; either version 2 of the License, or (at your option) any later
11 # version.
13 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
14 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
15 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License along
18 # with Koha; if not, write to the Free Software Foundation, Inc.,
19 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 use strict;
22 use warnings;
24 use CGI;
25 use C4::Auth;
26 use C4::Context;
27 use C4::Output;
28 use C4::Koha;
29 use C4::Branch;
30 use C4::Circulation qw{ IsBranchTransferAllowed DeleteBranchTransferLimits CreateBranchTransferLimit };
32 my $input = new CGI;
34 my ($template, $loggedinuser, $cookie)
35 = get_template_and_user({template_name => "admin/branch_transfer_limits.tmpl",
36 query => $input,
37 type => "intranet",
38 flagsrequired => {borrowers => 1},
39 debug => 1,
40 });
42 my $dbh = C4::Context->dbh;
43 my $branchcode;
44 if((!defined($input->param('branchcode'))) & mybranch() ne '')
46 $branchcode = mybranch();
48 else
50 $branchcode = $input->param('branchcode');
53 my $branchname = GetBranchName($branchcode);
55 # Getting the branches for user selection
56 my $branches = GetBranches();
57 my @branch_loop;
58 for my $thisbranch (sort { $branches->{$a}->{branchname} cmp $branches->{$b}->{branchname} } keys %$branches) {
59 my %row =(value => $thisbranch,
60 branchname => $branches->{$thisbranch}->{'branchname'},
61 selected => $thisbranch eq $branchcode ? 1 : 0,
63 push @branch_loop, \%row;
67 # Set the template language for the correct limit type
68 my $limit_phrase = 'Collection Code';
69 my $limitType = C4::Context->preference("BranchTransferLimitsType") || "ccode";
70 if ( $limitType eq 'itemtype' ) {
71 $limit_phrase = 'Item Type';
74 my @codes;
75 my @branchcodes;
77 my $sth;
78 if ( $limitType eq 'ccode' ) {
79 $sth = $dbh->prepare('SELECT authorised_value AS ccode FROM authorised_values WHERE category = "CCODE"');
80 } elsif ( $limitType eq 'itemtype' ) {
81 $sth = $dbh->prepare('SELECT itemtype FROM itemtypes');
83 $sth->execute();
84 while ( my $row = $sth->fetchrow_hashref ) {
85 push( @codes, $row->{ $limitType } );
88 $sth = $dbh->prepare("SELECT branchcode FROM branches");
89 $sth->execute();
90 while ( my $row = $sth->fetchrow_hashref ) {
91 push( @branchcodes, $row->{'branchcode'} );
94 ## If Form Data Passed, Update the Database
95 if ( $input->param('updateLimits') ) {
96 DeleteBranchTransferLimits($branchcode);
99 foreach my $code ( @codes ) {
100 foreach my $toBranch ( @branchcodes ) {
101 my $isSet = not $input->param( $code . "_" . $toBranch);
102 if ( $isSet ) {
103 CreateBranchTransferLimit( $toBranch, $branchcode, $code );
109 ## Build branchcode loop
110 my @branchcode_loop;
111 foreach my $branchcode ( @branchcodes ) {
112 my %row_data;
113 $row_data{ branchcode } = $branchcode;
114 push ( @branchcode_loop, \%row_data );
116 my $branchcount = scalar(@branchcode_loop);
118 ## Build the default data
119 my @codes_loop;
120 foreach my $code ( @codes ) {
121 my @to_branch_loop;
122 my %row_data;
123 $row_data{ code } = $code;
124 $row_data{ to_branch_loop } = \@to_branch_loop;
125 foreach my $toBranch ( @branchcodes ) {
126 my %row_data;
127 my $isChecked = IsBranchTransferAllowed( $toBranch, $branchcode, $code );
128 $row_data{ code } = $code;
129 $row_data{ toBranch } = $toBranch;
130 $row_data{ isChecked } = $isChecked;
131 $row_data{ toBranchname } = GetBranchName($toBranch);
132 push( @to_branch_loop, \%row_data );
135 push( @codes_loop, \%row_data );
139 $template->param(
140 branchcount => $branchcount,
141 codes_loop => \@codes_loop,
142 branch_loop => \@branch_loop,
143 branchcode_loop => \@branchcode_loop,
144 branchcode => $branchcode,
145 branchname => $branchname,
146 limit_phrase => $limit_phrase,
149 output_html_with_http_headers $input, $cookie, $template->output;