Bug 5786 - Move AllowOnShelfHolds and OPACItemHolds system prefs to the Circulation...
[koha.git] / members / readingrec.pl
1 #!/usr/bin/perl
2
3 # written 27/01/2000
4 # script to display borrowers reading record
5
6 # Copyright 2000-2002 Katipo Communications
7 #
8 # This file is part of Koha.
9 #
10 # Koha is free software; you can redistribute it and/or modify it under the
11 # terms of the GNU General Public License as published by the Free Software
12 # Foundation; either version 2 of the License, or (at your option) any later
13 # version.
14 #
15 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
16 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
17 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License along
20 # with Koha; if not, write to the Free Software Foundation, Inc.,
21 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22
23 use strict;
24 use warnings;
25
26 use CGI qw ( -utf8 );
27
28 use C4::Auth;
29 use C4::Output;
30 use C4::Members;
31 use C4::Branch qw(GetBranches);
32 use List::MoreUtils qw/any uniq/;
33 use Koha::DateUtils;
34
35 use C4::Dates qw/format_date/;
36 use C4::Members::Attributes qw(GetBorrowerAttributes);
37
38 my $input = CGI->new;
39
40 #get borrower details
41 my $data = undef;
42 my $borrowernumber = undef;
43 my $cardnumber = undef;
44
45 my ($template, $loggedinuser, $cookie)= get_template_and_user({template_name => "members/readingrec.tt",
46                                 query => $input,
47                                 type => "intranet",
48                                 authnotrequired => 0,
49                                 flagsrequired => {borrowers => 1},
50                                 debug => 1,
51                                 });
52
53 my $op = $input->param('op') || '';
54 if ($input->param('cardnumber')) {
55     $cardnumber = $input->param('cardnumber');
56     $data = GetMember(cardnumber => $cardnumber);
57     $borrowernumber = $data->{'borrowernumber'}; # we must define this as it is used to retrieve other data about the patron
58 }
59 if ($input->param('borrowernumber')) {
60     $borrowernumber = $input->param('borrowernumber');
61     $data = GetMember(borrowernumber => $borrowernumber);
62 }
63
64 my $order = 'date_due desc';
65 my $limit = 0;
66 my $issues = ();
67 # Do not request the old issues of anonymous patron
68 if ( $borrowernumber eq C4::Context->preference('AnonymousPatron') ){
69     # use of 'eq' in the above comparison is intentional -- the
70     # system preference value could be blank
71     $template->param( is_anonymous => 1 );
72 } else {
73     $issues = GetAllIssues($borrowernumber,$order,$limit);
74 }
75
76 my $branches = GetBranches();
77 foreach my $issue ( @{$issues} ) {
78     $issue->{issuingbranch} = $branches->{ $issue->{branchcode} }->{branchname};
79 }
80
81 #   barcode export
82 if ( $op eq 'export_barcodes' ) {
83     my $today = C4::Dates->new();
84     $today = $today->output('iso');
85     my @barcodes =
86       map { $_->{barcode} } grep { $_->{returndate} =~ m/^$today/o } @{$issues};
87     my $borrowercardnumber =
88       GetMember( borrowernumber => $borrowernumber )->{'cardnumber'};
89     my $delimiter = "\n";
90     binmode( STDOUT, ":encoding(UTF-8)" );
91     print $input->header(
92         -type       => 'application/octet-stream',
93         -charset    => 'utf-8',
94         -attachment => "$today-$borrowercardnumber-checkinexport.txt"
95     );
96     my $content = join $delimiter, uniq(@barcodes);
97     print $content;
98     exit;
99 }
100
101 if ( $data->{'category_type'} eq 'C') {
102     my  ( $catcodes, $labels ) =  GetborCatFromCatType( 'A', 'WHERE category_type = ?' );
103     my $cnt = scalar(@$catcodes);
104     $template->param( 'CATCODE_MULTI' => 1) if $cnt > 1;
105     $template->param( 'catcode' =>    $catcodes->[0])  if $cnt == 1;
106 }
107
108 $template->param( adultborrower => 1 ) if ( $data->{'category_type'} eq 'A' );
109 if (! $limit){
110         $limit = 'full';
111 }
112
113
114 my ($picture, $dberror) = GetPatronImage($data->{'borrowernumber'});
115 $template->param( picture => 1 ) if $picture;
116
117 if (C4::Context->preference('ExtendedPatronAttributes')) {
118     my $attributes = GetBorrowerAttributes($borrowernumber);
119     $template->param(
120         ExtendedPatronAttributes => 1,
121         extendedattributes => $attributes
122     );
123 }
124
125
126 # Computes full borrower address
127 my $roadtype = C4::Koha::GetAuthorisedValueByCode( 'ROADTYPE', $data->{streettype} );
128 my $address = $data->{'streetnumber'} . " $roadtype " . $data->{'address'};
129
130 $template->param(
131     readingrecordview => 1,
132     title             => $data->{title},
133     initials          => $data->{initials},
134     surname           => $data->{surname},
135     othernames        => $data->{othernames},
136     borrowernumber    => $borrowernumber,
137     firstname         => $data->{firstname},
138     cardnumber        => $data->{cardnumber},
139     categorycode      => $data->{categorycode},
140     category_type     => $data->{category_type},
141     categoryname      => $data->{description},
142     address           => $address,
143     address2          => $data->{address2},
144     city              => $data->{city},
145     state             => $data->{state},
146     zipcode           => $data->{zipcode},
147     country           => $data->{country},
148     phone             => $data->{phone},
149     phonepro          => $data->{phonepro},
150     mobile            => $data->{mobile},
151     email             => $data->{email},
152     emailpro             => $data->{emailpro},
153     branchcode        => $data->{branchcode},
154     is_child          => ( $data->{category_type} eq 'C' ),
155     branchname        => $branches->{ $data->{branchcode} }->{branchname},
156     loop_reading      => $issues,
157     activeBorrowerRelationship =>
158       ( C4::Context->preference('borrowerRelationship') ne '' ),
159     RoutingSerials => C4::Context->preference('RoutingSerials'),
160 );
161 output_html_with_http_headers $input, $cookie, $template->output;
162