455c04ad27325a40e9f08712f391a8f254c49f2f
[srvgit] / 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
9 # under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 3 of the License, or
11 # (at your option) any later version.
12 #
13 # Koha is distributed in the hope that it will be useful, but
14 # WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with Koha; if not, see <http://www.gnu.org/licenses>.
20
21 use Modern::Perl;
22
23 use CGI qw ( -utf8 );
24 use C4::Auth;
25 use C4::Context;
26 use C4::Output;
27 use C4::Koha;
28 use C4::Circulation qw{ IsBranchTransferAllowed DeleteBranchTransferLimits CreateBranchTransferLimit };
29
30 my $input = CGI->new;
31
32 my ($template, $loggedinuser, $cookie)
33     = get_template_and_user({template_name => "admin/branch_transfer_limits.tt",
34                              query => $input,
35                              type => "intranet",
36                  flagsrequired => {parameters => 'manage_transfers'},
37                              });
38
39 my $dbh = C4::Context->dbh;
40 my $branchcode;
41 if((!defined($input->param('branchcode'))) & C4::Context::mybranch() ne '')
42 {
43     $branchcode = C4::Context::mybranch();
44 }
45 else
46 {
47         $branchcode = $input->param('branchcode');
48 }
49
50 # Set the template language for the correct limit type using $limitType
51 my $limitType = C4::Context->preference("BranchTransferLimitsType") || "ccode";
52
53 my @codes;
54 my @branchcodes;
55
56 my $sth;
57 if ( $limitType eq 'ccode' ) {
58         $sth = $dbh->prepare('SELECT authorised_value AS ccode FROM authorised_values WHERE category = "CCODE"');
59 } elsif ( $limitType eq 'itemtype' ) {
60         $sth = $dbh->prepare('SELECT itemtype FROM itemtypes');
61 }
62 $sth->execute();
63 while ( my $row = $sth->fetchrow_hashref ) {
64         push( @codes, $row->{ $limitType } );
65 }
66
67 $sth = $dbh->prepare("SELECT branchcode FROM branches");
68 $sth->execute();
69 while ( my $row = $sth->fetchrow_hashref ) {
70         push( @branchcodes, $row->{'branchcode'} );
71 }
72
73 ## If Form Data Passed, Update the Database
74 if ( $input->param('updateLimits') ) {
75     DeleteBranchTransferLimits($branchcode);
76
77
78         foreach my $code ( @codes ) {
79                 foreach my $toBranch ( @branchcodes ) {
80                         my $isSet = not $input->param( $code . "_" . $toBranch);
81                         if ( $isSet ) {
82                             CreateBranchTransferLimit( $toBranch, $branchcode, $code );
83                         }
84                 }
85         }
86 }
87
88 ## Build branchcode loop
89 my @branchcode_loop;
90 foreach my $branchcode ( @branchcodes ) {
91         my %row_data;
92         $row_data{ branchcode } = $branchcode;
93         push ( @branchcode_loop, \%row_data );
94 }
95 my $branchcount = scalar(@branchcode_loop);
96
97 ## Build the default data
98 my @codes_loop;
99 foreach my $code ( @codes ) {
100         my @to_branch_loop;
101         my %row_data;
102         $row_data{ code } = $code;
103         $row_data{ to_branch_loop } = \@to_branch_loop;
104         foreach my $toBranch ( @branchcodes ) {
105                 my %row_data;
106                 my $isChecked = IsBranchTransferAllowed( $toBranch, $branchcode, $code );
107                 $row_data{ code }         = $code;
108                 $row_data{ toBranch }     = $toBranch;
109                 $row_data{ isChecked }    = $isChecked; 
110                 push( @to_branch_loop, \%row_data );
111         }
112
113         push( @codes_loop, \%row_data );
114 }
115
116
117 $template->param(
118                 branchcount => $branchcount,
119                 codes_loop => \@codes_loop,
120                 branchcode_loop => \@branchcode_loop,
121                 branchcode => $branchcode,
122         limitType => $limitType,
123                 );
124
125 output_html_with_http_headers $input, $cookie, $template->output;
126