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
7 # under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 3 of the License, or
9 # (at your option) any later version.
11 # Koha is distributed in the hope that it will be useful, but
12 # WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with Koha; if not, see <http://www.gnu.org/licenses>.
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;