Bug 12478: make things using SimpleSearch use the new version
[koha.git] / acqui / modordernotes.pl
1 #!/usr/bin/perl
2
3 # Copyright 2011 BibLibre SARL
4 # This file is part of Koha.
5 #
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.
10 #
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.
15 #
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>.
18
19 =head1 NAME
20
21 modordernotes.pl
22
23 =head1 DESCRIPTION
24
25 Modify just notes when basket is closed.
26
27 =cut
28
29 use Modern::Perl;
30
31 use CGI qw ( -utf8 );
32 use C4::Auth;
33 use C4::Output;
34 use C4::Acquisition;
35
36 use Koha::Acquisition::Bookseller;
37
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 } );
47
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} });
55
56
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;
63     }
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'});
72     }
73 }
74
75 if($op) {
76     $template->param($op => 1);
77 }
78
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,
87 );
88
89
90 output_html_with_http_headers $input, $cookie, $template->output;