3 # This file is part of Koha.
5 # Koha is free software; you can redistribute it and/or modify it under the
6 # terms of the GNU General Public License as published by the Free Software
7 # Foundation; either version 2 of the License, or (at your option) any later
10 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
11 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
12 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License along with
15 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
16 # Suite 330, Boston, MA 02111-1307 USA
25 this script allow to add an order from a existing suggestion.
26 The suggestion must have 'ACCEPTED' as status.
34 the number of this basket.
38 the bookseller who sells this record.
42 to filter on title when searching among ACCEPTED suggestion.
46 to filter on author when searching among ACCEPTED suggestion.
50 to filter on note when searching among ACCEPTED suggestion.
60 the publication year of this record.
66 the isbn of this suggestion.
70 is the biblionumber to put to the new suggestion.
74 the id of the suggestion to select.
80 then call to the function : ConnectSuggestionAndBiblio.
81 i.e set the biblionumber of this suggestion.
90 #use warnings; FIXME - Bug 2505
93 use C4
::Auth
; # get_template_and_user
96 use C4
::Bookseller qw
/ GetBookSellerFromId /;
101 # getting the CGI params
102 my $basketno = $input->param('basketno');
103 my $supplierid = $input->param('booksellerid');
104 my $author = $input->param('author');
105 my $title = $input->param('title');
106 my $publishercode = $input->param('publishercode');
107 my $op = $input->param('op');
108 my $suggestionid = $input->param('suggestionid');
109 my $duplicateNumber = $input->param('duplicateNumber');
110 my $uncertainprice = $input->param('uncertainprice');
112 $op = 'else' unless $op;
114 my $dbh = C4
::Context
->dbh;
115 my ( $template, $borrowernumber, $cookie ) = get_template_and_user
(
117 template_name
=> "acqui/newordersuggestion.tmpl",
120 authnotrequired
=> 1,
121 flagsrequired
=> { acquisition
=> 'order_manage' },
125 if ( $op eq 'connectDuplicate' ) {
126 ConnectSuggestionAndBiblio
( $suggestionid, $duplicateNumber );
129 # getting all suggestions.
130 my $suggestions_loop =
132 { managedby
=> $borrowernumber,
135 publishercode
=> $publishercode,
136 STATUS
=> 'ACCEPTED'});
137 my $vendor = GetBookSellerFromId
($supplierid);
139 suggestions_loop
=> $suggestions_loop,
140 basketno
=> $basketno,
141 supplierid
=> $supplierid,
142 name
=> $vendor->{'name'},
146 output_html_with_http_headers
$input, $cookie, $template->output;