Merge remote branch 'kc/new/bug_4218' into kcmaster
[koha.git] / C4 / Reports / Guided.pm
1 package C4::Reports::Guided;
2
3 # Copyright 2007 Liblime Ltd
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
10 # version.
11 #
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19
20 use strict;
21 #use warnings; FIXME - Bug 2505 this module needs a lot of repair to run clean under warnings
22 use CGI;
23 use Carp;
24
25 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
26 use C4::Context;
27 use C4::Dates qw/format_date/;
28 use C4::Output;
29 use C4::Dates;
30 use XML::Simple;
31 use XML::Dumper;
32 use C4::Debug;
33 # use Smart::Comments;
34 # use Data::Dumper;
35
36 BEGIN {
37         # set the version for version checking
38         $VERSION = 0.12;
39         require Exporter;
40         @ISA = qw(Exporter);
41         @EXPORT = qw(
42                 get_report_types get_report_areas get_columns build_query get_criteria
43             save_report get_saved_reports execute_query get_saved_report create_compound run_compound
44                 get_column_type get_distinct_values save_dictionary get_from_dictionary
45                 delete_definition delete_report format_results get_sql
46         select_2_select_count_value update_sql
47         );
48 }
49
50 our %table_areas;
51 $table_areas{'1'} =
52   [ 'borrowers', 'statistics','items', 'biblioitems' ];    # circulation
53 $table_areas{'2'} = [ 'items', 'biblioitems', 'biblio' ];   # catalogue
54 $table_areas{'3'} = [ 'borrowers' ];        # patrons
55 $table_areas{'4'} = ['aqorders', 'biblio', 'items'];        # acquisitions
56 $table_areas{'5'} = [ 'borrowers', 'accountlines' ];        # accounts
57 our %keys;
58 $keys{'1'} = [
59     'statistics.borrowernumber=borrowers.borrowernumber',
60     'items.itemnumber = statistics.itemnumber',
61     'biblioitems.biblioitemnumber = items.biblioitemnumber'
62 ];
63 $keys{'2'} = [
64     'items.biblioitemnumber=biblioitems.biblioitemnumber',
65     'biblioitems.biblionumber=biblio.biblionumber'
66 ];
67 $keys{'3'} = [ ];
68 $keys{'4'} = [
69         'aqorders.biblionumber=biblio.biblionumber',
70         'biblio.biblionumber=items.biblionumber'
71 ];
72 $keys{'5'} = ['borrowers.borrowernumber=accountlines.borrowernumber'];
73
74 # have to do someting here to know if its dropdown, free text, date etc
75
76 our %criteria;
77 # reports on circulation
78 $criteria{'1'} = [
79     'statistics.type',   'borrowers.categorycode',
80     'statistics.branch',
81     'biblioitems.publicationyear|date',
82     'items.dateaccessioned|date'
83 ];
84 # reports on catalogue
85 $criteria{'2'} =
86   [ 'items.itemnumber|textrange',   'items.biblionumber|textrange',   'items.barcode|textrange', 
87     'biblio.frameworkcode',         'items.holdingbranch',            'items.homebranch', 
88   'biblio.datecreated|daterange',   'biblio.timestamp|daterange',     'items.onloan|daterange', 
89   'items.ccode',                    'items.itemcallnumber|textrange', 'items.itype', 
90   'items.itemlost',                 'items.location' ];
91 # reports on borrowers
92 $criteria{'3'} = ['borrowers.branchcode', 'borrowers.categorycode'];
93 # reports on acquisition
94 $criteria{'4'} = ['aqorders.datereceived|date'];
95
96 # reports on accounting
97 $criteria{'5'} = ['borrowers.branchcode', 'borrowers.categorycode'];
98
99 # Adds itemtypes to criteria, according to the syspref
100 if (C4::Context->preference('item-level_itypes')) {
101     unshift @{ $criteria{'1'} }, 'items.itype';
102     unshift @{ $criteria{'2'} }, 'items.itype';
103 } else {
104     unshift @{ $criteria{'1'} }, 'biblioitems.itemtype';
105     unshift @{ $criteria{'2'} }, 'biblioitems.itemtype';
106 }
107
108 =head1 NAME
109
110 C4::Reports::Guided - Module for generating guided reports 
111
112 =head1 SYNOPSIS
113
114   use C4::Reports::Guided;
115
116 =head1 DESCRIPTION
117
118 =cut
119
120 =head1 METHODS
121
122 =over 2
123
124 =cut
125
126 =item get_report_types()
127
128 This will return a list of all the available report types
129
130 =cut
131
132 sub get_report_types {
133     my $dbh = C4::Context->dbh();
134
135     # FIXME these should be in the database perhaps
136     my @reports = ( 'Tabular', 'Summary', 'Matrix' );
137     my @reports2;
138     for ( my $i = 0 ; $i < 3 ; $i++ ) {
139         my %hashrep;
140         $hashrep{id}   = $i + 1;
141         $hashrep{name} = $reports[$i];
142         push @reports2, \%hashrep;
143     }
144     return ( \@reports2 );
145
146 }
147
148 =item get_report_areas()
149
150 This will return a list of all the available report areas
151
152 =cut
153
154 sub get_report_areas {
155     my $dbh = C4::Context->dbh();
156
157     # FIXME these should be in the database
158     my @reports = ( 'Circulation', 'Catalog', 'Patrons', 'Acquisitions', 'Accounts');
159     my @reports2;
160     for ( my $i = 0 ; $i < 5 ; $i++ ) {
161         my %hashrep;
162         $hashrep{id}   = $i + 1;
163         $hashrep{name} = $reports[$i];
164         push @reports2, \%hashrep;
165     }
166     return ( \@reports2 );
167
168 }
169
170 =item get_all_tables()
171
172 This will return a list of all tables in the database 
173
174 =cut
175
176 sub get_all_tables {
177     my $dbh   = C4::Context->dbh();
178     my $query = "SHOW TABLES";
179     my $sth   = $dbh->prepare($query);
180     $sth->execute();
181     my @tables;
182     while ( my $data = $sth->fetchrow_arrayref() ) {
183         push @tables, $data->[0];
184     }
185     $sth->finish();
186     return ( \@tables );
187
188 }
189
190 =item get_columns($area)
191
192 This will return a list of all columns for a report area
193
194 =cut
195
196 sub get_columns {
197
198     # this calls the internal fucntion _get_columns
199     my ($area,$cgi) = @_;
200     my $tables = $table_areas{$area};
201     my @allcolumns;
202     my $first = 1;
203     foreach my $table (@$tables) {
204         my @columns = _get_columns($table,$cgi, $first);
205         $first = 0;
206         push @allcolumns, @columns;
207     }
208     return ( \@allcolumns );
209 }
210
211 sub _get_columns {
212     my ($tablename,$cgi, $first) = @_;
213     my $dbh         = C4::Context->dbh();
214     my $sth         = $dbh->prepare("show columns from $tablename");
215     $sth->execute();
216     my @columns;
217         my $column_defs = _get_column_defs($cgi);
218         my %tablehash;
219         $tablehash{'table'}=$tablename;
220     $tablehash{'__first__'} = $first;
221         push @columns, \%tablehash;
222     while ( my $data = $sth->fetchrow_arrayref() ) {
223         my %temphash;
224         $temphash{'name'}        = "$tablename.$data->[0]";
225         $temphash{'description'} = $column_defs->{"$tablename.$data->[0]"};
226         push @columns, \%temphash;
227     }
228     $sth->finish();
229     return (@columns);
230 }
231
232 =item build_query($columns,$criteria,$orderby,$area)
233
234 This will build the sql needed to return the results asked for, 
235 $columns is expected to be of the format tablename.columnname.
236 This is what get_columns returns.
237
238 =cut
239
240 sub build_query {
241     my ( $columns, $criteria, $orderby, $area, $totals, $definition ) = @_;
242 ### $orderby
243     my $keys   = $keys{$area};
244     my $tables = $table_areas{$area};
245
246     my $sql =
247       _build_query( $tables, $columns, $criteria, $keys, $orderby, $totals, $definition );
248     return ($sql);
249 }
250
251 sub _build_query {
252     my ( $tables, $columns, $criteria, $keys, $orderby, $totals, $definition) = @_;
253 ### $orderby
254     # $keys is an array of joining constraints
255     my $dbh           = C4::Context->dbh();
256     my $joinedtables  = join( ',', @$tables );
257     my $joinedcolumns = join( ',', @$columns );
258     my $query =
259       "SELECT $totals $joinedcolumns FROM $tables->[0] ";
260         for (my $i=1;$i<@$tables;$i++){
261                 $query .= "LEFT JOIN $tables->[$i] on ($keys->[$i-1]) ";
262         }
263
264     if ($criteria) {
265                 $criteria =~ s/AND/WHERE/;
266         $query .= " $criteria";
267     }
268         if ($definition){
269                 my @definitions = split(',',$definition);
270                 my $deftext;
271                 foreach my $def (@definitions){
272                         my $defin=get_from_dictionary('',$def);
273                         $deftext .=" ".$defin->[0]->{'saved_sql'};
274                 }
275                 if ($query =~ /WHERE/i){
276                         $query .= $deftext;
277                 }
278                 else {
279                         $deftext  =~ s/AND/WHERE/;
280                         $query .= $deftext;                     
281                 }
282         }
283     if ($totals) {
284         my $groupby;
285         my @totcolumns = split( ',', $totals );
286         foreach my $total (@totcolumns) {
287             if ( $total =~ /\((.*)\)/ ) {
288                 if ( $groupby eq '' ) {
289                     $groupby = " GROUP BY $1";
290                 }
291                 else {
292                     $groupby .= ",$1";
293                 }
294             }
295         }
296         $query .= $groupby;
297     }
298     if ($orderby) {
299         $query .= $orderby;
300     }
301     return ($query);
302 }
303
304 =item get_criteria($area,$cgi);
305
306 Returns an arraref to hashrefs suitable for using in a tmpl_loop. With the criteria and available values.
307
308 =cut
309
310 sub get_criteria {
311     my ($area,$cgi) = @_;
312     my $dbh    = C4::Context->dbh();
313     my $crit   = $criteria{$area};
314     my $column_defs = _get_column_defs($cgi);
315     my @criteria_array;
316     foreach my $localcrit (@$crit) {
317         my ( $value, $type )   = split( /\|/, $localcrit );
318         my ( $table, $column ) = split( /\./, $value );
319         if ($type eq 'textrange') {
320             my %temp;
321             $temp{'name'}        = $value;
322             $temp{'from'}        = "from_" . $value;
323             $temp{'to'}          = "to_" . $value;
324             $temp{'textrange'}   = 1;
325             $temp{'description'} = $column_defs->{$value};
326             push @criteria_array, \%temp;
327         }
328         elsif ($type eq 'date') {
329             my %temp;
330             $temp{'name'}        = $value;
331             $temp{'date'}        = 1;
332             $temp{'description'} = $column_defs->{$value};
333             push @criteria_array, \%temp;
334         }
335         elsif ($type eq 'daterange') {
336             my %temp;
337             $temp{'name'}        = $value;
338             $temp{'from'}        = "from_" . $value;
339             $temp{'to'}          = "to_" . $value;
340             $temp{'daterange'}   = 1;
341             $temp{'description'} = $column_defs->{$value};
342             push @criteria_array, \%temp;
343         }
344         else {
345             my $query =
346             "SELECT distinct($column) as availablevalues FROM $table";
347             my $sth = $dbh->prepare($query);
348             $sth->execute();
349             my @values;
350             # push the runtime choosing option
351             my $list;
352             $list='branches' if $column eq 'branchcode' or $column eq 'holdingbranch' or $column eq 'homebranch';
353             $list='categorycode' if $column eq 'categorycode';
354             $list='itemtype' if $column eq 'itype';
355             $list='ccode' if $column eq 'ccode';
356             # TODO : improve to let the librarian choose the description at runtime
357             push @values, { availablevalues => "<<$column".($list?"|$list":'').">>" };
358             while ( my $row = $sth->fetchrow_hashref() ) {
359                 push @values, $row;
360                 if ($row->{'availablevalues'} eq '') { $row->{'default'} = 1 };
361             }
362             $sth->finish();
363
364             my %temp;
365             $temp{'name'}        = $value;
366             $temp{'description'} = $column_defs->{$value};
367             $temp{'values'}      = \@values;
368
369             push @criteria_array, \%temp;
370         }
371
372     }
373     return ( \@criteria_array );
374 }
375
376 =item execute_query
377
378   ($results, $total, $error) = execute_query($sql, $offset, $limit)
379
380
381 When passed C<$sql>, this function returns an array ref containing a result set
382 suitably formatted for display in html or for output as a flat file when passed in
383 C<$format> and C<$id>. It also returns the C<$total> records available for the
384 supplied query. If passed any query other than a SELECT, or if there is a db error,
385 C<$errors> an array ref is returned containing the error after this manner:
386
387 C<$error->{'sqlerr'}> contains the offending SQL keyword.
388 C<$error->{'queryerr'}> contains the native db engine error returned for the query.
389
390 Valid values for C<$format> are 'text,' 'tab,' 'csv,' or 'url. C<$sql>, C<$type>,
391 C<$offset>, and C<$limit> are required parameters. If a valid C<$format> is passed
392 in, C<$offset> and C<$limit> are ignored for obvious reasons. A LIMIT specified by
393 the user in a user-supplied SQL query WILL apply in any case.
394
395 =cut
396
397 # returns $sql, $offset, $limit
398 # $sql returned will be transformed to:
399 #  ~ remove any LIMIT clause
400 #  ~ repace SELECT clause w/ SELECT count(*)
401
402 sub select_2_select_count_value ($) {
403     my $sql = shift or return;
404     my $countsql = select_2_select_count($sql);
405     $debug and warn "original query: $sql\ncount query: $countsql\n";
406     my $sth1 = C4::Context->dbh->prepare($countsql);
407     $sth1->execute();
408     my $total = $sth1->fetchrow();
409     $debug and warn "total records for this query: $total\n";
410     return $total;
411 }
412 sub select_2_select_count ($) {
413     # Modify the query passed in to create a count query... (I think this covers all cases -crn)
414     my ($sql) = strip_limit(shift) or return;
415     $sql =~ s/\bSELECT\W+(?:\w+\W+){1,}?FROM\b|\bSELECT\W\*\WFROM\b/SELECT count(*) FROM /ig;
416     return $sql;
417 }
418 sub strip_limit ($) {
419     my $sql = shift or return;
420     ($sql =~ /\bLIMIT\b/i) or return ($sql, 0, undef);
421     $sql =~ s/\bLIMIT\b\s*(\d+)(\s*\,\s*(\d+))?\s*/ /ig;
422     return ($sql, (defined $2 ? $1 : 0), (defined $3 ? $3 : $1));   # offset can default to 0, LIMIT cannot!
423 }
424
425 sub execute_query ($;$$$) {
426
427     my ( $sql, $offset, $limit, $no_count ) = @_;
428
429     # check parameters
430     unless ($sql) {
431         carp "execute_query() called without SQL argument";
432         return;
433     }
434     $offset = 0    unless $offset;
435     $limit  = 9999 unless $limit;
436     $debug and print STDERR "execute_query($sql, $offset, $limit)\n";
437     if ($sql =~ /;?\W?(UPDATE|DELETE|DROP|INSERT|SHOW|CREATE)\W/i) {
438         return (undef, {  sqlerr => $1} );
439     } elsif ($sql !~ /^\s*SELECT\b\s*/i) {
440         return (undef, { queryerr => 'Missing SELECT'} );
441     }
442
443     my ($useroffset, $userlimit);
444
445     # Grab offset/limit from user supplied LIMIT and drop the LIMIT so we can control pagination
446     ($sql, $useroffset, $userlimit) = strip_limit($sql);
447     $debug and warn sprintf "User has supplied (OFFSET,) LIMIT = %s, %s",
448         $useroffset,
449         (defined($userlimit ) ? $userlimit  : 'UNDEF');
450     $offset += $useroffset;
451     if (defined($userlimit)) {
452         if ($offset + $limit > $userlimit ) {
453             $limit = $userlimit - $offset;
454         } elsif ( ! $offset && $limit < $userlimit ) {
455             $limit = $userlimit;
456         }
457     }
458     $sql .= " LIMIT ?, ?";
459
460     my $sth = C4::Context->dbh->prepare($sql);
461     $sth->execute($offset, $limit);
462     return ( $sth );
463     # my @xmlarray = ... ;
464     # my $url = "/cgi-bin/koha/reports/guided_reports.pl?phase=retrieve%20results&id=$id";
465     # my $xml = XML::Dumper->new()->pl2xml( \@xmlarray );
466     # store_results($id,$xml);
467 }
468
469 =item save_report($sql,$name,$type,$notes)
470
471 Given some sql and a name this will saved it so that it can resued
472
473 =cut
474
475 sub save_report {
476     my ( $borrowernumber, $sql, $name, $type, $notes ) = @_;
477     my $dbh = C4::Context->dbh();
478     $sql =~ s/(\s*\;\s*)$//; # removes trailing whitespace and /;/
479     my $query =
480 "INSERT INTO saved_sql (borrowernumber,date_created,last_modified,savedsql,report_name,type,notes)  VALUES (?,now(),now(),?,?,?,?)";
481     my $sth = $dbh->prepare($query);
482     $sth->execute( $borrowernumber, $sql, $name, $type, $notes );
483 }
484
485 sub update_sql {
486     my $id = shift || croak "No Id given";
487     my $sql = shift;
488     my $reportname = shift;
489     my $notes = shift;
490     my $dbh = C4::Context->dbh();
491     $sql =~ s/(\s*\;\s*)$//; # removes trailing whitespace and /;/
492     my $query = "UPDATE saved_sql SET savedsql = ?, last_modified = now(), report_name = ?, notes = ? WHERE id = ? ";
493     my $sth = $dbh->prepare($query);
494     $sth->execute( $sql, $reportname, $notes, $id );
495     $sth->finish();
496 }
497
498 sub store_results {
499         my ($id,$xml)=@_;
500         my $dbh = C4::Context->dbh();
501         my $query = "SELECT * FROM saved_reports WHERE report_id=?";
502         my $sth = $dbh->prepare($query);
503         $sth->execute($id);
504         if (my $data=$sth->fetchrow_hashref()){
505                 my $query2 = "UPDATE saved_reports SET report=?,date_run=now() WHERE report_id=?";
506                 my $sth2 = $dbh->prepare($query2);
507             $sth2->execute($xml,$id);
508         }
509         else {
510                 my $query2 = "INSERT INTO saved_reports (report_id,report,date_run) VALUES (?,?,now())";
511                 my $sth2 = $dbh->prepare($query2);
512                 $sth2->execute($id,$xml);
513         }
514 }
515
516 sub format_results {
517         my ($id) = @_;
518         my $dbh = C4::Context->dbh();
519         my $query = "SELECT * FROM saved_reports WHERE report_id = ?";
520         my $sth = $dbh->prepare($query);
521         $sth->execute($id);
522         my $data = $sth->fetchrow_hashref();
523         my $dump = new XML::Dumper;
524         my $perl = $dump->xml2pl( $data->{'report'} );
525         foreach my $row (@$perl) {
526                 my $htmlrow="<tr>";
527                 foreach my $key (keys %$row){
528                         $htmlrow .= "<td>$row->{$key}</td>";
529                 }
530                 $htmlrow .= "</tr>";
531                 $row->{'row'} = $htmlrow;
532         }
533         $sth->finish;
534         $query = "SELECT * FROM saved_sql WHERE id = ?";
535         $sth = $dbh->prepare($query);
536         $sth->execute($id);
537         $data = $sth->fetchrow_hashref();
538         return ($perl,$data->{'report_name'},$data->{'notes'}); 
539 }       
540
541 sub delete_report {
542         my ( $id ) = @_;
543         my $dbh = C4::Context->dbh();
544         my $query = "DELETE FROM saved_sql WHERE id = ?";
545         my $sth = $dbh->prepare($query);
546         $sth->execute($id);
547 }       
548
549 sub get_saved_reports {
550     my $dbh   = C4::Context->dbh();
551     my $query = "SELECT *,saved_sql.id AS id FROM saved_sql 
552     LEFT JOIN saved_reports ON saved_reports.report_id = saved_sql.id
553     ORDER by date_created";
554     my $sth   = $dbh->prepare($query);
555     $sth->execute();
556     
557     my $result = $sth->fetchall_arrayref({});
558     foreach (@$result){
559         $_->{date_created} = format_date($_->{date_created}); 
560         
561         my $member = C4::Members::GetMember(borrowernumber=>$_->{borrowernumber});
562         $_->{borrowerfirstname} = $member->{firstname};
563         $_->{borrowersurname}   = $member->{surname};
564     }
565     return $result;
566 }
567
568 sub get_saved_report {
569     my ($id)  = @_;
570     my $dbh   = C4::Context->dbh();
571     my $query = " SELECT * FROM saved_sql WHERE id = ?";
572     my $sth   = $dbh->prepare($query);
573     $sth->execute($id);
574     my $data = $sth->fetchrow_hashref();
575     return ( $data->{'savedsql'}, $data->{'type'}, $data->{'report_name'}, $data->{'notes'} );
576 }
577
578 =item create_compound($masterID,$subreportID)
579
580 This will take 2 reports and create a compound report using both of them
581
582 =cut
583
584 sub create_compound {
585         my ($masterID,$subreportID) = @_;
586         my $dbh = C4::Context->dbh();
587         # get the reports
588         my ($mastersql,$mastertype) = get_saved_report($masterID);
589         my ($subsql,$subtype) = get_saved_report($subreportID);
590         
591         # now we have to do some checking to see how these two will fit together
592         # or if they will
593         my ($mastertables,$subtables);
594         if ($mastersql =~ / from (.*) where /i){ 
595                 $mastertables = $1;
596         }
597         if ($subsql =~ / from (.*) where /i){
598                 $subtables = $1;
599         }
600         return ($mastertables,$subtables);
601 }
602
603 =item get_column_type($column)
604
605 This takes a column name of the format table.column and will return what type it is
606 (free text, set values, date)
607
608 =cut
609
610 sub get_column_type {
611         my ($tablecolumn) = @_;
612         my ($table,$column) = split(/\./,$tablecolumn);
613         my $dbh = C4::Context->dbh();
614         my $catalog;
615         my $schema;
616
617         # mysql doesnt support a column selection, set column to %
618         my $tempcolumn='%';
619         my $sth = $dbh->column_info( $catalog, $schema, $table, $tempcolumn ) || die $dbh->errstr;
620         while (my $info = $sth->fetchrow_hashref()){
621                 if ($info->{'COLUMN_NAME'} eq $column){
622                         #column we want
623                         if ($info->{'TYPE_NAME'} eq 'CHAR' || $info->{'TYPE_NAME'} eq 'VARCHAR'){
624                                 $info->{'TYPE_NAME'} = 'distinct';
625                         }
626                         return $info->{'TYPE_NAME'};            
627                 }
628         }
629 }
630
631 =item get_distinct_values($column)
632
633 Given a column name, return an arrary ref of hashrefs suitable for use as a tmpl_loop 
634 with the distinct values of the column
635
636 =cut
637
638 sub get_distinct_values {
639         my ($tablecolumn) = @_;
640         my ($table,$column) = split(/\./,$tablecolumn);
641         my $dbh = C4::Context->dbh();
642         my $query =
643           "SELECT distinct($column) as availablevalues FROM $table";
644         my $sth = $dbh->prepare($query);
645         $sth->execute();
646     return $sth->fetchall_arrayref({});
647 }       
648
649 sub save_dictionary {
650         my ($name,$description,$sql,$area) = @_;
651         my $dbh = C4::Context->dbh();
652         my $query = "INSERT INTO reports_dictionary (name,description,saved_sql,area,date_created,date_modified)
653   VALUES (?,?,?,?,now(),now())";
654     my $sth = $dbh->prepare($query);
655     $sth->execute($name,$description,$sql,$area) || return 0;
656     return 1;
657 }
658
659 sub get_from_dictionary {
660         my ($area,$id) = @_;
661         my $dbh = C4::Context->dbh();
662         my $query = "SELECT * FROM reports_dictionary";
663         if ($area){
664                 $query.= " WHERE area = ?";
665         }
666         elsif ($id){
667                 $query.= " WHERE id = ?"
668         }
669         my $sth = $dbh->prepare($query);
670         if ($id){
671                 $sth->execute($id);
672         }
673         elsif ($area) {
674                 $sth->execute($area);
675         }
676         else {
677                 $sth->execute();
678         }
679         my @loop;
680         my @reports = ( 'Circulation', 'Catalog', 'Patrons', 'Acquisitions', 'Accounts');
681         while (my $data = $sth->fetchrow_hashref()){
682                 $data->{'areaname'}=$reports[$data->{'area'}-1];
683                 push @loop,$data;
684                 
685         }
686         return (\@loop);
687 }
688
689 sub delete_definition {
690         my ($id) = @_ or return;
691         my $dbh = C4::Context->dbh();
692         my $query = "DELETE FROM reports_dictionary WHERE id = ?";
693         my $sth = $dbh->prepare($query);
694         $sth->execute($id);
695 }
696
697 sub get_sql {
698         my ($id) = @_ or return;
699         my $dbh = C4::Context->dbh();
700         my $query = "SELECT * FROM saved_sql WHERE id = ?";
701         my $sth = $dbh->prepare($query);
702         $sth->execute($id);
703         my $data=$sth->fetchrow_hashref();
704         return $data->{'savedsql'};
705 }
706
707 sub _get_column_defs {
708         my ($cgi) = @_;
709         my %columns;
710         my $columns_def_file = "columns.def";
711         my $htdocs = C4::Context->config('intrahtdocs');                       
712         my $section='intranet';
713         my ($theme, $lang) = themelanguage($htdocs, $columns_def_file, $section,$cgi);
714
715         my $full_path_to_columns_def_file="$htdocs/$theme/$lang/$columns_def_file";    
716         open (COLUMNS,$full_path_to_columns_def_file);
717         while (my $input = <COLUMNS>){
718                 chomp $input;
719                 my @row =split(/\t/,$input);
720                 $columns{$row[0]}= $row[1];
721         }
722
723         close COLUMNS;
724         return \%columns;
725 }
726 1;
727 __END__
728
729 =back
730
731 =head1 AUTHOR
732
733 Chris Cormack <crc@liblime.com>
734
735 =cut