Portuguese Opac Updates
[koha.git] / admin / currency.pl
1 #!/usr/bin/perl
2
3 #script to administer the aqbudget table
4 #written 20/02/2002 by paul.poulain@free.fr
5 # This software is placed under the gnu General Public License, v2 (http://www.gnu.org/licenses/gpl.html)
6
7 # ALGO :
8 # this script use an $op to know what to do.
9 # if $op is empty or none of the above values,
10 #       - the default screen is build (with all records, or filtered datas).
11 #       - the   user can clic on add, modify or delete record.
12 # if $op=add_form
13 #       - if primkey exists, this is a modification,so we read the $primkey record
14 #       - builds the add/modify form
15 # if $op=add_validate
16 #       - the user has just send datas, so we create/modify the record
17 # if $op=delete_form
18 #       - we show the record having primkey=$primkey and ask for deletion validation form
19 # if $op=delete_confirm
20 #       - we delete the record having primkey=$primkey
21
22
23 # Copyright 2000-2002 Katipo Communications
24 #
25 # This file is part of Koha.
26 #
27 # Koha is free software; you can redistribute it and/or modify it under the
28 # terms of the GNU General Public License as published by the Free Software
29 # Foundation; either version 2 of the License, or (at your option) any later
30 # version.
31 #
32 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
33 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
34 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
35 #
36 # You should have received a copy of the GNU General Public License along with
37 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
38 # Suite 330, Boston, MA  02111-1307 USA
39
40 use strict;
41 # use warnings; # FIXME
42 use CGI;
43 use C4::Context;
44 use C4::Auth;
45 use C4::Dates qw(format_date);
46 use C4::Output;
47
48 sub StringSearch  {
49         my $query = "SELECT * FROM currency WHERE (currency LIKE ?) ORDER BY currency";
50     warn "$query :: @_[0]";
51         my $sth = C4::Context->dbh->prepare($query);
52         $sth->execute((shift || '') . '%');
53         return $sth->fetchall_arrayref({});
54 }
55
56 my $input = new CGI;
57 my $searchfield = $input->param('searchfield') || $input->param('description') || '';
58 my $offset      = $input->param('offset') || 0;
59 my $op          = $input->param('op')     || '';
60 my $script_name = "/cgi-bin/koha/admin/currency.pl";
61 my $pagesize = 20;
62
63 my ($template, $loggedinuser, $cookie) = get_template_and_user({
64     template_name => "admin/currency.tmpl",
65     query => $input,
66      type => "intranet",
67       flagsrequired => {parameters => 1},
68     authnotrequired => 0,
69     debug => 1,
70 });
71
72 $template->param(searchfield => $searchfield,
73                  script_name => $script_name);
74
75 my $dbh = C4::Context->dbh;
76
77 ################## ADD_FORM ##################################
78 # called by default. Used to create form to add or  modify a record
79 if ($op eq 'add_form') {
80         $template->param(add_form => 1);
81         #---- if primkey exists, it's a modify action, so read values to modify...
82         my $data;
83         if ($searchfield) {
84                 my $sth=$dbh->prepare("select * from currency where currency=?");
85                 $sth->execute($searchfield);
86                 $data=$sth->fetchrow_hashref;
87         }
88         foreach (keys %$data) {
89                 $template->param($_ => $data->{$_});
90         }
91         my $date = $template->param('timestamp');
92         ($date) and $template->param('timestamp' => format_date($date));
93                                                                                                         # END $OP eq ADD_FORM
94 ################## ADD_VALIDATE ##################################
95 # called by add_form, used to insert/modify data in DB
96 } elsif ($op eq 'add_validate') {
97         $template->param(add_validate => 1);
98         my $check = $dbh->prepare("select * from currency where currency = ?");
99         $check->execute($input->param('currency'));
100         if ( $check->fetchrow ) {
101                 my $sth = $dbh->prepare("UPDATE currency SET rate = ?, symbol = ?, timestamp = ? WHERE currency = ?");
102                 $sth->execute($input->param('rate'),$input->param('symbol'),C4::Dates->new->output('iso'),$input->param('currency'));
103         } else {
104                 my $sth = $dbh->prepare("INSERT INTO currency (currency, rate, symbol) VALUES (?,?,?)");
105                 $sth->execute($input->param('currency'),$input->param('rate'),$input->param('symbol'));
106         }        
107                                                                                                         # END $OP eq ADD_VALIDATE
108 ################## DELETE_CONFIRM ##################################
109 # called by default form, used to confirm deletion of data in DB
110 } elsif ($op eq 'delete_confirm') {
111         $template->param(delete_confirm => 1);
112         my $sth=$dbh->prepare("select count(*) as total from aqbooksellers where currency=?");
113         $sth->execute($searchfield);
114         my $total = $sth->fetchrow_hashref;
115         my $sth2=$dbh->prepare("select currency,rate from currency where currency=?");
116         $sth2->execute($searchfield);
117         my $data=$sth2->fetchrow_hashref;
118
119         if ($total->{'total'} >0) {
120                 $template->param(totalgtzero => 1);
121         }
122
123         $template->param(rate => $data->{'rate'},
124                          total => $total);
125                                                                                                         # END $OP eq DELETE_CONFIRM
126 ################## DELETE_CONFIRMED ##################################
127 # called by delete_confirm, used to effectively confirm deletion of data in DB
128 } elsif ($op eq 'delete_confirmed') {
129         $template->param(delete_confirmed => 1);
130         my $sth=$dbh->prepare("delete from currency where currency=?");
131         $sth->execute($searchfield);
132                                                                                                         # END $OP eq DELETE_CONFIRMED
133 ################## DEFAULT ##################################
134 } else { # DEFAULT
135         $template->param(else => 1);
136
137         my $results = StringSearch($searchfield);
138     my $count = scalar(@$results);
139         my @loop;
140         for (my $i=$offset; $i < ($offset+$pagesize<$count?$offset+$pagesize:$count); $i++){
141         push @loop, {
142                         currency => $results->[$i]{'currency'},
143                             rate => $results->[$i]{'rate'},
144                           symbol => $results->[$i]{'symbol'},
145                    timestamp => format_date($results->[$i]{'timestamp'}),
146                 };
147         }
148         $template->param(loop => \@loop);
149
150         if ($offset>0) {
151                 $template->param(offsetgtzero => 1,
152                                  prevpage => $offset-$pagesize);
153         }
154
155         if ($offset+$pagesize < scalar @$results) {
156                 $template->param(ltcount => 1,
157                                  nextpage => $offset+$pagesize);
158         }
159 } #---- END $OP eq DEFAULT
160 output_html_with_http_headers $input, $cookie, $template->output;
161