Bug 12976: Use the centralize VAT and prices calculation - invoice.pl
[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 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
9 # version.
10 #
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.
14 #
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.
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;