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