Bug 16699: Remove requirement from borrowernumberQueryParam
[koha.git] / acqui / modordernotes.pl
bloba1008f028f540485a26a6952f98424a3b2bf1813
1 #!/usr/bin/perl
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>.
19 =head1 NAME
21 modordernotes.pl
23 =head1 DESCRIPTION
25 Modify just notes when basket is closed.
27 =cut
29 use Modern::Perl;
31 use CGI qw ( -utf8 );
32 use C4::Auth;
33 use C4::Output;
34 use C4::Acquisition;
36 use Koha::Acquisition::Bookseller;
38 my $input = new CGI;
39 my ($template, $loggedinuser, $cookie, $flags) = get_template_and_user( {
40 template_name => 'acqui/modordernotes.tt',
41 query => $input,
42 type => 'intranet',
43 authnotrequired => 0,
44 flagsrequired => { 'acquisition' => '*' },
45 debug => 1,
46 } );
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;
61 } else {
62 $order->{'order_internalnote'} = $ordernotes;
64 ModOrder($order);
65 print $input->redirect($referrer);
66 exit;
67 } else {
68 if ($type eq "vendor") {
69 $template->param(ordernotes => $order->{'order_vendornote'});
70 } else {
71 $template->param(ordernotes => $order->{'order_internalnote'});
75 if($op) {
76 $template->param($op => 1);
79 $template->param(
80 basketname => $basket->{'basketname'},
81 basketno => $order->{basketno},
82 booksellerid => $bookseller->{'id'},
83 booksellername => $bookseller->{'name'},
84 ordernumber => $ordernumber,
85 referrer => $referrer,
86 type => $type,
90 output_html_with_http_headers $input, $cookie, $template->output;