Main Koha release repository https://koha-community.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

50 lines
1.5 KiB

#!/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::Suggestions;
my $input = new CGI;
my $basketno = $input->param('basketno');
my $supplierid = $input->param('booksellerid');
my $title = $input->param('title');
my $author = $input->param('author');
my $note = $input->param('note');
my $copyrightdate =$input->param('copyrightdate');
my $publishercode = $input->param('publishercode');
my $volumedesc = $input->param('volumedesc');
my $publicationyear = $input->param('publicationyear');
my $place = $input->param('place');
my $isbn = $input->param('isbn');
my $status = 'ACCEPTED';
my $suggestedbyme = 1;
my $op = $input->param('op');
$op = 'else' unless $op;
my $dbh = C4::Context->dbh;
my ($template, $borrowernumber, $cookie)
= get_template_and_user({template_name => "acqui/suggestion-select.tmpl",
type => "intranet",
query => $input,
authnotrequired => 1,
flagsrequired => {borrow => 1},
});
my $suggestions_loop= &searchsuggestion($borrowernumber,$author,$title,$publishercode,$status,$suggestedbyme);
$template->param(suggestions_loop => $suggestions_loop,
title => $title,
author => $author,
publishercode => $publishercode,
status => $status,
suggestedbyme => $suggestedbyme,
basketno => $basketno,
supplierid => $supplierid,
"op_$op" => 1,
);
output_html_with_http_headers $input, $cookie, $template->output;