4 # script to display borrowers reading record
6 # Copyright 2000-2002 Katipo Communications
8 # This file is part of Koha.
10 # Koha is free software; you can redistribute it and/or modify it
11 # under the terms of the GNU General Public License as published by
12 # the Free Software Foundation; either version 3 of the License, or
13 # (at your option) any later version.
15 # Koha is distributed in the hope that it will be useful, but
16 # WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 # GNU General Public License for more details.
20 # You should have received a copy of the GNU General Public License
21 # along with Koha; if not, see <http://www.gnu.org/licenses>.
31 use List
::MoreUtils qw
/any uniq/;
33 use C4
::Members
::Attributes
qw(GetBorrowerAttributes);
34 use Koha
::Patron
::Images
;
36 use Koha
::Patron
::Categories
;
42 my $borrowernumber = undef;
43 my $cardnumber = undef;
45 my ($template, $loggedinuser, $cookie)= get_template_and_user
({template_name
=> "members/readingrec.tt",
49 flagsrequired
=> {borrowers
=> 1},
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
59 if ($input->param('borrowernumber')) {
60 $borrowernumber = $input->param('borrowernumber');
61 $data = GetMember
(borrowernumber
=> $borrowernumber);
64 my $order = 'date_due desc';
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 );
73 $issues = GetAllIssues
($borrowernumber,$order,$limit);
77 if ( $op eq 'export_barcodes' ) {
78 if ( $data->{'privacy'} < 2) {
79 my $today = output_pref
({ dt
=> dt_from_string
, dateformat
=> 'iso', dateonly
=> 1 });
81 map { $_->{barcode
} } grep { $_->{returndate
} =~ m/^$today/o } @
{$issues};
82 my $borrowercardnumber =
83 GetMember
( borrowernumber
=> $borrowernumber )->{'cardnumber'};
85 binmode( STDOUT
, ":encoding(UTF-8)" );
87 -type
=> 'application/octet-stream',
89 -attachment
=> "$today-$borrowercardnumber-checkinexport.txt"
92 my $content = join $delimiter, uniq
(@barcodes);
98 if ( $data->{'category_type'} eq 'C') {
99 my $patron_categories = Koha
::Patron
::Categories
->search_limited({ category_type
=> 'A' }, {order_by
=> ['categorycode']});
100 $template->param( 'CATCODE_MULTI' => 1) if $patron_categories->count > 1;
101 $template->param( 'catcode' => $patron_categories->next ) if $patron_categories->count == 1;
104 $template->param( adultborrower
=> 1 ) if ( $data->{'category_type'} eq 'A' );
109 my $patron_image = Koha
::Patron
::Images
->find($data->{borrowernumber
});
110 $template->param( picture
=> 1 ) if $patron_image;
112 if (C4
::Context
->preference('ExtendedPatronAttributes')) {
113 my $attributes = GetBorrowerAttributes
($borrowernumber);
115 ExtendedPatronAttributes
=> 1,
116 extendedattributes
=> $attributes
120 $template->param(%$data);
123 readingrecordview
=> 1,
124 borrowernumber
=> $borrowernumber,
125 privacy
=> $data->{'privacy'},
126 categoryname
=> $data->{description
},
127 is_child
=> ( $data->{category_type
} eq 'C' ),
128 loop_reading
=> $issues,
129 activeBorrowerRelationship
=>
130 ( C4
::Context
->preference('borrowerRelationship') ne '' ),
131 RoutingSerials
=> C4
::Context
->preference('RoutingSerials'),
133 output_html_with_http_headers
$input, $cookie, $template->output;