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
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.
30 use C4
::Circulation
qw{ IsBranchTransferAllowed DeleteBranchTransferLimits CreateBranchTransferLimit
};
34 my ($template, $loggedinuser, $cookie)
35 = get_template_and_user
({template_name
=> "admin/branch_transfer_limits.tmpl",
38 flagsrequired
=> {borrowers
=> 1},
42 my $dbh = C4
::Context
->dbh;
44 if((!defined($input->param('branchcode'))) & mybranch
() ne '')
46 $branchcode = mybranch
();
50 $branchcode = $input->param('branchcode');
53 my $branchname = GetBranchName
($branchcode);
55 # Getting the branches for user selection
56 my $branches = GetBranches
();
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';
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');
84 while ( my $row = $sth->fetchrow_hashref ) {
85 push( @codes, $row->{ $limitType } );
88 $sth = $dbh->prepare("SELECT branchcode FROM branches");
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);
103 CreateBranchTransferLimit
( $toBranch, $branchcode, $code );
109 ## Build branchcode loop
111 foreach my $branchcode ( @branchcodes ) {
113 $row_data{ branchcode
} = $branchcode;
114 push ( @branchcode_loop, \
%row_data );
116 my $branchcount = scalar(@branchcode_loop);
118 ## Build the default data
120 foreach my $code ( @codes ) {
123 $row_data{ code
} = $code;
124 $row_data{ to_branch_loop
} = \
@to_branch_loop;
125 foreach my $toBranch ( @branchcodes ) {
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 );
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;