synch'ing head and rel_2_2 (from 2.2.5, including npl templates)
[koha.git] / acqui / histsearch.pl
1 #!/usr/bin/perl
2 use strict;
3 require Exporter;
4 use CGI;
5 use HTML::Template;
6
7 use C4::Auth;       # get_template_and_user
8 use C4::Interface::CGI::Output;
9 use C4::Acquisition;
10
11 my $input = new CGI;
12 my $title = $input->param('title');
13 my $author = $input->param('author');
14 my $name = $input->param('name');
15 my $from_placed_on = $input->param('fromplacedon');
16 my $to_placed_on = $input->param('toplacedon');
17
18 my $dbh = C4::Context->dbh;
19 my ($template, $loggedinuser, $cookie)
20     = get_template_and_user({template_name => "acqui/histsearch.tmpl",
21                              query => $input,
22                              type => "intranet",
23                              authnotrequired => 0,
24                              flagsrequired => {acquisition => 1},
25                              debug => 1,
26                              });
27 my ($order_loop,$total_qty,$total_price,$total_qtyreceived)= &histsearch($title,$author,$name,$from_placed_on,$to_placed_on);
28 $template->param(suggestions_loop => $order_loop,
29                                 total_qty => $total_qty,
30                                 total_qtyreceived => $total_qtyreceived,
31                                 total_price => sprintf  ("%.2f",$total_price),
32                                 numresults => scalar(@$order_loop),
33                                 title => $title,
34                                 author => $author,
35                                 name => $name,
36                                 from_placed_on =>$from_placed_on,
37                                 to_placed_on =>$to_placed_on
38 );
39 output_html_with_http_headers $input, $cookie, $template->output;