|
Lines 1-42
Link Here
|
| 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 |
| 11 |
# under the terms of the GNU General Public License as published by |
| 12 |
# the Free Software Foundation; either version 3 of the License, or |
| 13 |
# (at your option) any later version. |
| 14 |
# |
| 15 |
# Koha is distributed in the hope that it will be useful, but |
| 16 |
# WITHOUT ANY WARRANTY; without even the implied warranty of |
| 17 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 18 |
# GNU General Public License for more details. |
| 19 |
# |
| 20 |
# You should have received a copy of the GNU General Public License |
| 21 |
# along with Koha; if not, see <http://www.gnu.org/licenses>. |
| 22 |
|
| 23 |
use strict; |
| 24 |
use warnings; |
| 25 |
use CGI qw ( -utf8 ); |
| 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'); |
| 43 |
- |