Bug 27498: (follow-up) Update to display logic
[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::Booksellers;
37
38 my $input = CGI->new;
39 my ($template, $loggedinuser, $cookie, $flags) = get_template_and_user( {
40     template_name   => 'acqui/modordernotes.tt',
41     query           => $input,
42     type            => 'intranet',
43     flagsrequired   => { 'acquisition' => '*' },
44     debug           => 1,
45 } );
46
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 = Koha::Acquisition::Booksellers->find( $basket->{booksellerid} );
54
55
56 if($op and $op eq 'save') {
57     my $ordernotes = $input->param('ordernotes');
58     if ($type eq "vendor") {
59         $order->{'order_vendornote'} = $ordernotes;
60     } else {
61         $order->{'order_internalnote'} = $ordernotes;
62     }
63     ModOrder($order);
64     print $input->redirect($referrer);
65     exit;
66 } else {
67     if ($type eq "vendor") {
68         $template->param(ordernotes => $order->{'order_vendornote'});
69     } else {
70         $template->param(ordernotes => $order->{'order_internalnote'});
71     }
72 }
73
74 if($op) {
75     $template->param($op => 1);
76 }
77
78 $template->param(
79     basketname           => $basket->{'basketname'},
80     basketno             => $order->{basketno},
81     booksellerid         => $bookseller->id,
82     booksellername       => $bookseller->name,
83     ordernumber => $ordernumber,
84     referrer => $referrer,
85     type => $type,
86 );
87
88
89 output_html_with_http_headers $input, $cookie, $template->output;