Bug 7191 Remove GetBorrowerIssues from @EXPORT
[koha.git] / tools / viewlog.pl
blobd42503e5916b4695106528c212ee87f8517ece81
1 #!/usr/bin/perl
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
11 # version.
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.
21 use strict;
22 #use warnings; FIXME - Bug 2505
23 use C4::Auth;
24 use CGI;
25 use C4::Context;
26 use C4::Koha;
27 use C4::Dates;
28 use C4::Output;
29 use C4::Log;
30 use C4::Items;
31 use C4::Branch;
32 use C4::Debug;
33 # use Data::Dumper;
34 use C4::Search; # enabled_staff_search_views
36 use vars qw($debug $cgi_debug);
38 =head1 viewlog.pl
40 plugin that shows stats
42 =cut
44 my $input = new CGI;
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 $del = $input->param("sep");
57 my $output = $input->param("output") || "screen";
58 my $src = $input->param("src"); # this param allows us to be told where we were called from -fbcit
60 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
62 template_name => "tools/viewlog.tmpl",
63 query => $input,
64 type => "intranet",
65 authnotrequired => 0,
66 flagsrequired => { tools => 'view_system_logs' },
67 debug => 1,
71 if ($src eq 'circ') { # if we were called from circulation, use the circulation menu and get data to populate it -fbcit
72 use C4::Members;
73 my $borrowernumber = $object;
74 my $data = GetMember('borrowernumber'=>$borrowernumber);
75 my ($picture, $dberror) = GetPatronImage($data->{'cardnumber'});
76 $template->param( picture => 1 ) if $picture;
78 $template->param( menu => 1,
79 title => $data->{'title'},
80 initials => $data->{'initials'},
81 surname => $data->{'surname'},
82 othernames => $data->{'othernames'},
83 borrowernumber => $borrowernumber,
84 firstname => $data->{'firstname'},
85 cardnumber => $data->{'cardnumber'},
86 categorycode => $data->{'categorycode'},
87 category_type => $data->{'category_type'},
88 categoryname => $data->{'description'},
89 address => $data->{'address'},
90 address2 => $data->{'address2'},
91 city => $data->{'city'},
92 state => $data->{'state'},
93 zipcode => $data->{'zipcode'},
94 phone => $data->{'phone'},
95 phonepro => $data->{'phonepro'},
96 email => $data->{'email'},
97 branchcode => $data->{'branchcode'},
98 branchname => GetBranchName($data->{'branchcode'}),
102 $template->param(
103 DHTMLcalendar_dateformat => C4::Dates->DHTMLcalendar(),
104 dateformat => C4::Dates->new()->format(),
105 debug => $debug,
106 C4::Search::enabled_staff_search_views,
109 if ($do_it) {
111 my @data;
112 my ($results,$modules,$action);
113 if ($action[0] ne '') { $action = \@action; } # match All means no limit
114 if ($modules[0] ne '') { $modules = \@modules; } # match All means no limit
115 $results = GetLogs($datefrom,$dateto,$user,$modules,$action,$object,$info);
116 @data=@$results;
117 my $total = scalar @data;
118 foreach my $result (@data){
119 if ($result->{'info'} eq 'item'||$result->{module} eq "CIRCULATION"){
120 # get item information so we can create a working link
121 my $itemnumber=$result->{'object'};
122 $itemnumber=$result->{'info'} if ($result->{module} eq "CIRCULATION");
123 my $item=GetItem($itemnumber);
124 $result->{'biblionumber'}=$item->{'biblionumber'};
125 $result->{'biblioitemnumber'}=$item->{'biblionumber'};
129 if ( $output eq "screen" ) {
130 # Printing results to screen
131 $template->param (
132 logview => 1,
133 total => $total,
134 looprow => \@data,
135 do_it => 1,
136 datefrom => $datefrom,
137 dateto => $dateto,
138 user => $user,
139 object => $object,
140 action => \@action,
141 info => $info,
142 src => $src,
144 #module => 'fix this', #this seems unused in actual code
145 foreach my $module (@modules) {
146 $template->param($module => 1);
149 output_html_with_http_headers $input, $cookie, $template->output;
150 } else {
151 # Printing to a csv file
152 print $input->header(
153 -type => 'text/csv',
154 -attachment => "$basename.csv",
155 -filename => "$basename.csv"
157 my $sep = C4::Context->preference("delimiter");
158 foreach my $line (@data) {
159 #next unless $modules[0] eq "catalogue";
160 foreach (qw(timestamp firstname surname action info title author)) {
161 print $line->{$_} . $sep;
165 exit;
166 } else {
167 #my @values;
168 #my %labels;
169 #my %select;
170 #initialize some paramaters that might not be used in the template - it seems to evaluate EXPR even if a false TMPL_IF
171 $template->param(
172 total => 0,
173 module => "",
174 info => ""
176 output_html_with_http_headers $input, $cookie, $template->output;