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>.
30 use List
::MoreUtils qw
/any uniq/;
34 use Koha
::Patron
::Categories
;
38 my ($template, $loggedinuser, $cookie)= get_template_and_user
({template_name
=> "members/readingrec.tt",
42 flagsrequired
=> {borrowers
=> 'edit_borrowers'},
46 my $op = $input->param('op') || '';
48 if ($input->param('cardnumber')) {
49 my $cardnumber = $input->param('cardnumber');
50 $patron = Koha
::Patrons
->find( { cardnumber
=> $cardnumber } );
52 if ($input->param('borrowernumber')) {
53 my $borrowernumber = $input->param('borrowernumber');
54 $patron = Koha
::Patrons
->find( $borrowernumber );
57 my $logged_in_user = Koha
::Patrons
->find( $loggedinuser ) or die "Not logged in";
58 output_and_exit_if_error
( $input, $cookie, $template, { module
=> 'members', logged_in_user
=> $logged_in_user, current_patron
=> $patron } );
60 my $order = 'date_due desc';
63 # Do not request the old issues of anonymous patron
64 if ( $patron->borrowernumber eq C4
::Context
->preference('AnonymousPatron') ){
65 # use of 'eq' in the above comparison is intentional -- the
66 # system preference value could be blank
67 $template->param( is_anonymous
=> 1 );
69 $issues = GetAllIssues
($patron->borrowernumber,$order,$limit);
73 if ( $op eq 'export_barcodes' ) {
74 # FIXME This should be moved out of this script
75 if ( $patron->privacy < 2) {
76 my $today = output_pref
({ dt
=> dt_from_string
, dateformat
=> 'iso', dateonly
=> 1 });
78 map { $_->{barcode
} } grep { $_->{returndate
} =~ m/^$today/o } @
{$issues};
79 my $borrowercardnumber = $patron->cardnumber;
81 binmode( STDOUT
, ":encoding(UTF-8)" );
83 -type
=> 'application/octet-stream',
85 -attachment
=> "$today-$borrowercardnumber-checkinexport.txt"
88 my $content = join $delimiter, uniq
(@barcodes);
100 readingrecordview
=> 1,
101 loop_reading
=> $issues,
103 output_html_with_http_headers
$input, $cookie, $template->output;