koha-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

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


From: Paul POULAIN
Subject: [Koha-cvs] CVS: koha/acqui histsearch.pl,NONE,1.1
Date: Tue, 19 Oct 2004 05:24:59 -0700

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;




reply via email to

[Prev in Thread] Current Thread [Next in Thread]