Bug 5751 : MT2690 fix members-home
[koha.git] / members / members-home.pl
1 #!/usr/bin/perl
2
3 # This file is part of Koha.
4 #
5 # Koha is free software; you can redistribute it and/or modify it under the
6 # terms of the GNU General Public License as published by the Free Software
7 # Foundation; either version 2 of the License, or (at your option) any later
8 # version.
9 #
10 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
11 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
12 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License along with
15 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
16 # Suite 330, Boston, MA  02111-1307 USA
17
18 use strict;
19 use warnings;
20
21 use CGI;
22 use C4::Auth;
23 use C4::Output;
24 use C4::Context;
25 use C4::Members;
26 use C4::Branch;
27 use C4::Category;
28
29 my $query = new CGI;
30 my $quicksearch = $query->param('quicksearch');
31 my $branch = $query->param('branchcode');
32 my $template_name;
33
34 my ($template, $loggedinuser, $cookie)
35     = get_template_and_user({template_name => "members/member.tmpl",
36                  query => $query,
37                  type => "intranet",
38                  authnotrequired => 0,
39                  flagsrequired => {borrowers => 1},
40                  debug => 1,
41                  });
42 }
43
44 my $branches = GetBranches;
45 my @branchloop;
46 foreach (sort { $branches->{$a}->{branchname} cmp $branches->{$b}->{branchname} } keys %$branches) {
47   my $selected = 1 if $branches->{$_}->{branchcode} eq $branch;
48   my %row = ( value => $_,
49         selected => $selected,
50         branchname => $branches->{$_}->{branchname},
51       );
52   push @branchloop, \%row;
53 }
54
55 my @categories;
56 my $no_categories;
57 my $no_add = 0;
58 my $branchloop = (defined $branch?GetBranchesLoop($branch):GetBranchesLoop());
59 if(scalar(@$branchloop) < 1){
60     $no_add = 1;
61     $template->param(no_branches => 1);
62 } else {
63     $template->param(branchloop=>\@$branchloop);
64 }
65
66 @categories=C4::Category->all;
67 if(scalar(@categories) < 1){ $no_categories = 1; }
68 if($no_categories && C4::Context->preference("AddPatronLists")=~/code/){
69     $no_add = 1;
70     $template->param(no_categories => 1);
71 } else {
72     $template->param(categories=>\@categories);
73 }
74
75 $template->param( 
76         "AddPatronLists_".C4::Context->preference("AddPatronLists")=> "1",
77         no_add => $no_add,
78             );
79 my @letters = map { {letter => $_} } ( 'A' .. 'Z');
80 $template->param( letters => \@letters );
81
82 output_html_with_http_headers $query, $cookie, $template->output;