[Koha-cvs] CVS: koha/acqui histsearch.pl,NONE,1.1

Paul POULAIN tipaul at users.sourceforge.net
Tue Oct 19 14:24:59 CEST 2004


Update of /cvsroot/koha/koha/acqui
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15688/acqui

Added Files:
	histsearch.pl 
Log Message:
adding search orders history feature

--- NEW FILE ---
#!/usr/bin/perl
use strict;
require Exporter;
use CGI;
use HTML::Template;

use C4::Auth;       # get_template_and_user
use C4::Interface::CGI::Output;
use C4::Acquisition;

my $input = new CGI;
my $title = $input->param('title');
my $author = $input->param('author');
my $name = $input->param('name');

my $dbh = C4::Context->dbh;
my ($template, $loggedinuser, $cookie)
    = get_template_and_user({template_name => "acqui/histsearch.tmpl",
			     query => $input,
			     type => "intranet",
			     authnotrequired => 0,
			     flagsrequired => {acquisition => 1},
			     debug => 1,
			     });
my $order_loop= &histsearch($title,$author,$name);
$template->param(suggestions_loop => $order_loop,
				title => $title,
				author => $author,
				name => $name,
);
output_html_with_http_headers $input, $cookie, $template->output;





More information about the Koha-cvs mailing list