Bug 7164 follow-up history.txt and perlcritic compliance
[koha.git] / acqui / currency.pl
1 #!/usr/bin/perl
2
3 #script to display and update currency rates
4
5 # Copyright 2000-2002 Katipo Communications
6 # Copyright 2008-2009 BibLibre SARL
7 #
8 # This file is part of Koha.
9 #
10 # Koha is free software; you can redistribute it and/or modify it under the
11 # terms of the GNU General Public License as published by the Free Software
12 # Foundation; either version 2 of the License, or (at your option) any later
13 # version.
14 #
15 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
16 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
17 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License along
20 # with Koha; if not, write to the Free Software Foundation, Inc.,
21 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22
23 use strict;
24 use warnings;
25 use CGI;
26 use C4::Acquisition;
27 use C4::Biblio;
28 use C4::Budgets;
29
30 # FIXME: CHECK AUTH
31 # FIXME: This should be part of another script, not a throwaway standalone.
32 # FIXME: params should have better checks before passed to ModCurrencies
33 # FIXME: need error handling if ModCurrencies FAILS.
34
35 my $input = new CGI;
36
37 foreach my $param ($input->param) {
38     if ($param ne 'type' && $param !~ /submit/) {
39         ModCurrencies($param, $input->param($param));
40     }
41 }
42 print $input->redirect('/cgi-bin/koha/acqui/acqui-home.pl');