3 # Copyright 2011 BibLibre SARL
4 # This file is part of Koha.
6 # Koha is free software; you can redistribute it and/or modify it under the
7 # terms of the GNU General Public License as published by the Free Software
8 # Foundation; either version 2 of the License, or (at your option) any later
11 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
12 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
13 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License along
16 # with Koha; if not, write to the Free Software Foundation, Inc.,
17 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
25 Modify just notes when basket is closed.
36 use Koha
::Acquisition
::Bookseller
;
39 my ($template, $loggedinuser, $cookie, $flags) = get_template_and_user
( {
40 template_name
=> 'acqui/modordernotes.tt',
44 flagsrequired
=> { 'acquisition' => '*' },
48 my $op = $input->param('op');
49 my $ordernumber = $input->param('ordernumber');
50 my $referrer = $input->param('referrer') || $input->referer();
51 my $type = $input->param('type');
52 my $order = GetOrder
($ordernumber);
53 my $basket = GetBasket
($order->{basketno
});
54 my $bookseller = Koha
::Acquisition
::Bookseller
->fetch({ id
=> $basket->{booksellerid
} });
57 if($op and $op eq 'save') {
58 my $ordernotes = $input->param('ordernotes');
59 if ($type eq "vendor") {
60 $order->{'order_vendornote'} = $ordernotes;
62 $order->{'order_internalnote'} = $ordernotes;
65 print $input->redirect($referrer);
68 if ($type eq "vendor") {
69 $template->param(ordernotes
=> $order->{'order_vendornote'});
71 $template->param(ordernotes
=> $order->{'order_internalnote'});
76 $template->param($op => 1);
80 basketname
=> $basket->{'basketname'},
81 basketno
=> $order->{basketno
},
82 booksellerid
=> $bookseller->{'id'},
83 booksellername
=> $bookseller->{'name'},
84 ordernumber
=> $ordernumber,
85 referrer
=> $referrer,
90 output_html_with_http_headers
$input, $cookie, $template->output;