1110 : Balance carts and lists, follow-up : Added Opac lists features to admin lists
[koha.git] / reports / manager.pl
index dc8b8b7..5572f26 100755 (executable)
@@ -22,9 +22,8 @@ use CGI;
 use C4::Auth;
 use C4::Context;
 use C4::Output;
-use C4::Interface::CGI::Output;
-use C4::Circulation::Circ2;
-use HTML::Template;
+use C4::Circulation;
+
 
 my $input = new CGI;
 my $report_name=$input->param("report_name");
@@ -36,12 +35,18 @@ my ($template, $borrowernumber, $cookie)
                                query => $input,
                                type => "intranet",
                                authnotrequired => 0,
-                               flagsrequired => {editcatalogue => 1},
+                               flagsrequired => {reports => 1},
                                debug => 1,
                                });
 $template->param(do_it => $do_it,
-               report_name => $report_name);
-my $plugin = "./".$report_name.".plugin";
+               report_name => $report_name,
+               );
+my $cgidir = C4::Context->config('intranetdir')."/cgi-bin/reports/";
+unless (-r $cgidir and -d $cgidir) {
+       $cgidir = C4::Context->intranetdir."/reports/";
+} 
+my $plugin = $cgidir.$report_name.".plugin";
+warn "PLUGIN:".$plugin;
 require $plugin;
 if ($do_it) {
        my $results = calculate(\@values);