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.
35 use C4
::Bookseller
qw( GetBookSellerFromId);
38 my ($template, $loggedinuser, $cookie, $flags) = get_template_and_user
( {
39 template_name
=> 'acqui/modordernotes.tmpl',
43 flagsrequired
=> { 'acquisition' => '*' },
47 my $op = $input->param('op');
48 my $ordernumber = $input->param('ordernumber');
49 my $referrer = $input->param('referrer') || $input->referer();
50 my $type = $input->param('type');
51 my $order = GetOrder
($ordernumber);
52 my $basket = GetBasket
($order->{basketno
});
53 my ($bookseller) = GetBookSellerFromId
($basket->{booksellerid
});
56 if($op and $op eq 'save') {
57 my $ordernotes = $input->param('ordernotes');
58 if ($type eq "vendor") {
59 $order->{'order_vendornote'} = $ordernotes;
61 $order->{'order_internalnote'} = $ordernotes;
64 print $input->redirect($referrer);
67 if ($type eq "vendor") {
68 $template->param(ordernotes
=> $order->{'order_vendornote'});
70 $template->param(ordernotes
=> $order->{'order_internalnote'});
75 $template->param($op => 1);
79 basketname
=> $basket->{'basketname'},
80 basketno
=> $order->{basketno
},
81 booksellerid
=> $bookseller->{'id'},
82 booksellername
=> $bookseller->{'name'},
83 ordernumber
=> $ordernumber,
84 referrer
=> $referrer,
89 output_html_with_http_headers
$input, $cookie, $template->output;