3 # Copyright 2010 BibLibre
4 # Copyright 2011 MJ Ray and software.coop
6 # This file is part of Koha.
8 # Koha is free software; you can redistribute it and/or modify it under the
9 # terms of the GNU General Public License as published by the Free Software
10 # Foundation; either version 2 of the License, or (at your option) any later
13 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
14 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
15 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License along
18 # with Koha; if not, write to the Free Software Foundation, Inc.,
19 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
25 use Text
::CSV
::Encoded
;
34 use C4
::Search
; # enabled_staff_search_views
36 use vars
qw($debug $cgi_debug);
40 plugin that shows stats
46 $debug or $debug = $cgi_debug;
47 my $do_it = $input->param('do_it');
48 my @modules = $input->param("modules");
49 my $user = $input->param("user");
50 my @action = $input->param("action");
51 my $object = $input->param("object");
52 my $info = $input->param("info");
53 my $datefrom = $input->param("from");
54 my $dateto = $input->param("to");
55 my $basename = $input->param("basename");
56 my $output = $input->param("output") || "screen";
57 my $src = $input->param("src"); # this param allows us to be told where we were called from -fbcit
59 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
61 template_name => "tools/viewlog.tt",
65 flagsrequired => { tools => 'view_system_logs' },
70 if ( $src eq 'circ' ) {
72 # if we were called from circulation, use the circulation menu and get data to populate it -fbcit
74 use C4::Members::Attributes qw(GetBorrowerAttributes);
75 my $borrowernumber = $object;
76 my $data = GetMember
( 'borrowernumber' => $borrowernumber );
77 my ( $picture, $dberror ) = GetPatronImage
( $data->{'borrowernumber'} );
78 $template->param( picture
=> 1 ) if $picture;
80 if ( C4
::Context
->preference('ExtendedPatronAttributes') ) {
81 my $attributes = GetBorrowerAttributes
( $data->{'borrowernumber'} );
83 ExtendedPatronAttributes
=> 1,
84 extendedattributes
=> $attributes
88 # Computes full borrower address
89 my $roadtype = C4
::Koha
::GetAuthorisedValueByCode
( 'ROADTYPE', $data->{streettype
} );
90 my $address = $data->{'streetnumber'} . " $roadtype " . $data->{'address'};
94 title
=> $data->{'title'},
95 initials
=> $data->{'initials'},
96 surname
=> $data->{'surname'},
97 othernames
=> $data->{'othernames'},
98 borrowernumber
=> $borrowernumber,
99 firstname
=> $data->{'firstname'},
100 cardnumber
=> $data->{'cardnumber'},
101 categorycode
=> $data->{'categorycode'},
102 category_type
=> $data->{'category_type'},
103 categoryname
=> $data->{'description'},
105 address2
=> $data->{'address2'},
106 city
=> $data->{'city'},
107 state => $data->{'state'},
108 zipcode
=> $data->{'zipcode'},
109 country
=> $data->{'country'},
110 phone
=> $data->{'phone'},
111 phonepro
=> $data->{'phonepro'},
112 mobile
=> $data->{'mobile'},
113 email
=> $data->{'email'},
114 emailpro
=> $data->{'emailpro'},
115 branchcode
=> $data->{'branchcode'},
116 branchname
=> GetBranchName
( $data->{'branchcode'} ),
117 RoutingSerials
=> C4
::Context
->preference('RoutingSerials'),
123 C4
::Search
::enabled_staff_search_views
,
129 my ( $results, $modules, $action );
130 if ( $action[0] ne '' ) { $action = \
@action; } # match All means no limit
131 if ( $modules[0] ne '' ) { $modules = \
@modules; } # match All means no limit
132 $results = GetLogs
( $datefrom, $dateto, $user, $modules, $action, $object, $info );
134 foreach my $result (@data) {
136 # Init additional columns for CSV export
137 $result->{'biblionumber'} = q{};
138 $result->{'biblioitemnumber'} = q{};
139 $result->{'barcode'} = q{};
140 $result->{'userfirstname'} = q{};
141 $result->{'usersurname'} = q{};
142 $result->{'borrowerfirstname'} = q{};
143 $result->{'borrowersurname'} = q{};
145 if ( substr( $result->{'info'}, 0, 4 ) eq 'item' || $result->{module
} eq "CIRCULATION" ) {
147 # get item information so we can create a working link
148 my $itemnumber = $result->{'object'};
149 $itemnumber = $result->{'info'} if ( $result->{module
} eq "CIRCULATION" );
150 my $item = GetItem
($itemnumber);
152 $result->{'biblionumber'} = $item->{'biblionumber'};
153 $result->{'biblioitemnumber'} = $item->{'biblionumber'};
154 $result->{'barcode'} = $item->{'barcode'};
158 #always add firstname and surname for librarian/user
159 if ( $result->{'user'} ) {
160 my $userdetails = C4
::Members
::GetMemberDetails
( $result->{'user'} );
162 $result->{'userfirstname'} = $userdetails->{'firstname'};
163 $result->{'usersurname'} = $userdetails->{'surname'};
167 #add firstname and surname for borrower, when using the CIRCULATION, MEMBERS, FINES
168 if ( $result->{module
} eq "CIRCULATION" || $result->{module
} eq "MEMBERS" || $result->{module
} eq "FINES" ) {
169 if ( $result->{'object'} ) {
170 my $borrowerdetails = C4
::Members
::GetMemberDetails
( $result->{'object'} );
171 if ($borrowerdetails) {
172 $result->{'borrowerfirstname'} = $borrowerdetails->{'firstname'};
173 $result->{'borrowersurname'} = $borrowerdetails->{'surname'};
179 if ( $output eq "screen" ) {
181 # Printing results to screen
184 total
=> scalar @data,
187 datefrom
=> $datefrom,
197 foreach my $module (@modules) {
198 $template->param( $module => 1 );
201 output_html_with_http_headers
$input, $cookie, $template->output;
205 # Printing to a csv file
207 my $delimiter = C4
::Context
->preference('delimiter') || ',';
209 my $csv = Text
::CSV
::Encoded
->new( { encoding_out
=> 'utf8', sep_char
=> $delimiter } );
210 $csv or die "Text::CSV::Encoded->new FAILED: " . Text
::CSV
::Encoded
->error_diag();
212 # First line with heading
213 # Exporting bd id seems useless
214 my @headings = grep { $_ ne 'action_id' } sort keys $data[0];
215 if ( $csv->combine(@headings) ) {
216 $content .= $csv->string() . "\n";
220 foreach my $line (@data) {
221 my @cells = map { $line->{$_} } @headings;
222 if ( $csv->combine(@cells) ) {
223 $content .= $csv->string() . "\n";
229 print $input->header(
231 -attachment
=> $basename . '.csv',
238 output_html_with_http_headers
$input, $cookie, $template->output;