Merge remote branch 'kc/new/enh/bug_5917' into kcmaster
[koha.git] / admin / branch_transfer_limits.pl
1 #!/usr/bin/perl
2
3 # Copyright 2000-2002 Katipo Communications
4 # copyright 2010 BibLibre
5 #
6 # This file is part of Koha.
7 #
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.
12 #
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.
16 #
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.
20
21 use strict;
22 use warnings;
23
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 };
31
32 my $input = new CGI;
33
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                              });
41
42 my $dbh = C4::Context->dbh;
43 my $branchcode;
44 if((!defined($input->param('branchcode'))) & mybranch() ne '')
45 {
46         $branchcode = mybranch();
47 }
48 else
49 {
50         $branchcode = $input->param('branchcode');
51 }
52
53 my $branchname = GetBranchName($branchcode);
54
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              );
62     push @branch_loop, \%row;
63 }
64
65
66 # Set the template language for the correct limit type
67 my $limit_phrase = 'Collection Code';
68 my $limitType = C4::Context->preference("BranchTransferLimitsType") || "ccode";
69 if ( $limitType eq 'itemtype' ) {
70         $limit_phrase = 'Item Type';
71 }
72
73 my @codes;
74 my @branchcodes;
75
76 my $sth;
77 if ( $limitType eq 'ccode' ) {
78         $sth = $dbh->prepare('SELECT authorised_value AS ccode FROM authorised_values WHERE category = "CCODE"');
79 } elsif ( $limitType eq 'itemtype' ) {
80         $sth = $dbh->prepare('SELECT itemtype FROM itemtypes');
81 }
82 $sth->execute();
83 while ( my $row = $sth->fetchrow_hashref ) {
84         push( @codes, $row->{ $limitType } );
85 }
86
87 $sth = $dbh->prepare("SELECT branchcode FROM branches");
88 $sth->execute();
89 while ( my $row = $sth->fetchrow_hashref ) {
90         push( @branchcodes, $row->{'branchcode'} );
91 }
92
93 ## If Form Data Passed, Update the Database
94 if ( $input->param('updateLimits') ) {
95         DeleteBranchTransferLimits();
96
97         foreach my $code ( @codes ) {
98                 foreach my $toBranch ( @branchcodes ) {
99                         my $isSet = not $input->param( $code . "_" . $toBranch);
100                         if ( $isSet ) {
101                             CreateBranchTransferLimit( $toBranch, $branchcode, $code );
102                         }
103                 }
104         }
105 }
106
107 ## Build branchcode loop
108 my @branchcode_loop;
109 foreach my $branchcode ( @branchcodes ) {
110         my %row_data;
111         $row_data{ branchcode } = $branchcode;
112         push ( @branchcode_loop, \%row_data );
113 }
114 my $branchcount = scalar(@branchcode_loop);
115
116 ## Build the default data
117 my @codes_loop;
118 foreach my $code ( @codes ) {
119         my @to_branch_loop;
120         my %row_data;
121         $row_data{ code } = $code;
122         $row_data{ to_branch_loop } = \@to_branch_loop;
123         foreach my $toBranch ( @branchcodes ) {
124                 my %row_data;
125                 my $isChecked = IsBranchTransferAllowed( $toBranch, $branchcode, $code );
126                 $row_data{ code }         = $code;
127                 $row_data{ toBranch }     = $toBranch;
128                 $row_data{ isChecked }    = $isChecked; 
129                 $row_data{ toBranchname } = GetBranchName($toBranch);   
130                 push( @to_branch_loop, \%row_data );
131         }
132
133         push( @codes_loop, \%row_data );
134 }
135
136
137 $template->param(
138                 branchcount => $branchcount,
139                 codes_loop => \@codes_loop,
140                 branch_loop => \@branch_loop,
141                 branchcode_loop => \@branchcode_loop,
142                 branchcode => $branchcode,
143                 branchname => $branchname,
144                 limit_phrase => $limit_phrase,
145                 );
146
147 output_html_with_http_headers $input, $cookie, $template->output;
148