Bug 10773 - Add item-level descriptions for Label Printing
[koha.git] / acqui / currency.pl
blobc211cc39f90157b3dffc461f05a4feafc35563af
1 #!/usr/bin/perl
3 #script to display and update currency rates
5 # Copyright 2000-2002 Katipo Communications
6 # Copyright 2008-2009 BibLibre SARL
8 # This file is part of Koha.
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.
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.
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.
23 use strict;
24 use warnings;
25 use CGI qw ( -utf8 );
26 use C4::Acquisition;
27 use C4::Biblio;
28 use C4::Budgets;
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.
35 my $input = new CGI;
37 foreach my $param ($input->param) {
38 if ($param ne 'type' && $param !~ /submit/) {
39 ModCurrencies($param, $input->param($param));
42 print $input->redirect('/cgi-bin/koha/acqui/acqui-home.pl');