fix for bug 2543: report output by tabulation a bit too literal
[koha_gimpoz] / 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) = 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         if ($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             if ($format eq 'tab' ){
440                 $row = join("\t",@data);
441                 $string .="\n" . $row;
442             }
443             if ($format eq 'csv' ){
444                 $row = join(",",@data);
445                 $string .="\n" . $row;
446             }
447             if ($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     my $query =
487 "INSERT INTO saved_sql (borrowernumber,date_created,last_modified,savedsql,report_name,type,notes)  VALUES (?,now(),now(),?,?,?,?)";
488     my $sth = $dbh->prepare($query);
489     $sth->execute( 0, $sql, $name, $type, $notes );
490     $sth->finish();
491
492 }
493
494 sub store_results {
495         my ($id,$xml)=@_;
496         my $dbh = C4::Context->dbh();
497         my $query = "SELECT * FROM saved_reports WHERE report_id=?";
498         my $sth = $dbh->prepare($query);
499         $sth->execute($id);
500         if (my $data=$sth->fetchrow_hashref()){
501                 my $query2 = "UPDATE saved_reports SET report=?,date_run=now() WHERE report_id=?";
502                 my $sth2 = $dbh->prepare($query2);
503             $sth2->execute($xml,$id);
504                 $sth2->finish();
505         }
506         else {
507                 my $query2 = "INSERT INTO saved_reports (report_id,report,date_run) VALUES (?,?,now())";
508                 my $sth2 = $dbh->prepare($query2);
509                 $sth2->execute($id,$xml);
510                 $sth2->finish();
511         }
512         $sth->finish();
513 }
514
515 sub format_results {
516         my ($id) = @_;
517         my $dbh = C4::Context->dbh();
518         my $query = "SELECT * FROM saved_reports WHERE report_id = ?";
519         my $sth = $dbh->prepare($query);
520         $sth->execute($id);
521         my $data = $sth->fetchrow_hashref();
522         my $dump = new XML::Dumper;
523         my $perl = $dump->xml2pl( $data->{'report'} );
524         foreach my $row (@$perl) {
525                 my $htmlrow="<tr>";
526                 foreach my $key (keys %$row){
527                         $htmlrow .= "<td>$row->{$key}</td>";
528                 }
529                 $htmlrow .= "</tr>";
530                 $row->{'row'} = $htmlrow;
531         }
532         $sth->finish;
533         $query = "SELECT * FROM saved_sql WHERE id = ?";
534         $sth = $dbh->prepare($query);
535         $sth->execute($id);
536         $data = $sth->fetchrow_hashref();
537     $sth->finish();
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         $sth->finish();
548 }       
549
550 sub get_saved_reports {
551     my $dbh   = C4::Context->dbh();
552     my $query = "SELECT *,saved_sql.id AS id FROM saved_sql 
553     LEFT JOIN saved_reports ON saved_reports.report_id = saved_sql.id
554     ORDER by date_created";
555     my $sth   = $dbh->prepare($query);
556     $sth->execute();
557     my @reports;
558     while ( my $data = $sth->fetchrow_hashref() ) {
559         push @reports, $data;
560     }
561     $sth->finish();
562     return ( \@reports );
563 }
564
565 sub get_saved_report {
566     my ($id)  = @_;
567     my $dbh   = C4::Context->dbh();
568     my $query = " SELECT * FROM saved_sql WHERE id = ?";
569     my $sth   = $dbh->prepare($query);
570     $sth->execute($id);
571     my $data = $sth->fetchrow_hashref();
572     $sth->finish();
573     return ( $data->{'savedsql'}, $data->{'type'}, $data->{'report_name'}, $data->{'notes'} );
574 }
575
576 =item create_compound($masterID,$subreportID)
577
578 This will take 2 reports and create a compound report using both of them
579
580 =cut
581
582 sub create_compound {
583         my ($masterID,$subreportID) = @_;
584         my $dbh = C4::Context->dbh();
585         # get the reports
586         my ($mastersql,$mastertype) = get_saved_report($masterID);
587         my ($subsql,$subtype) = get_saved_report($subreportID);
588         
589         # now we have to do some checking to see how these two will fit together
590         # or if they will
591         my ($mastertables,$subtables);
592         if ($mastersql =~ / from (.*) where /i){ 
593                 $mastertables = $1;
594         }
595         if ($subsql =~ / from (.*) where /i){
596                 $subtables = $1;
597         }
598         return ($mastertables,$subtables);
599 }
600
601 =item get_column_type($column)
602
603 This takes a column name of the format table.column and will return what type it is
604 (free text, set values, date)
605
606 =cut
607
608 sub get_column_type {
609         my ($tablecolumn) = @_;
610         my ($table,$column) = split(/\./,$tablecolumn);
611         my $dbh = C4::Context->dbh();
612         my $catalog;
613         my $schema;
614
615         # mysql doesnt support a column selection, set column to %
616         my $tempcolumn='%';
617         my $sth = $dbh->column_info( $catalog, $schema, $table, $tempcolumn ) || die $dbh->errstr;
618         while (my $info = $sth->fetchrow_hashref()){
619                 if ($info->{'COLUMN_NAME'} eq $column){
620                         #column we want
621                         if ($info->{'TYPE_NAME'} eq 'CHAR' || $info->{'TYPE_NAME'} eq 'VARCHAR'){
622                                 $info->{'TYPE_NAME'} = 'distinct';
623                         }
624                         return $info->{'TYPE_NAME'};            
625                 }
626         }
627         $sth->finish();
628 }
629
630 =item get_distinct_values($column)
631
632 Given a column name, return an arrary ref of hashrefs suitable for use as a tmpl_loop 
633 with the distinct values of the column
634
635 =cut
636
637 sub get_distinct_values {
638         my ($tablecolumn) = @_;
639         my ($table,$column) = split(/\./,$tablecolumn);
640         my $dbh = C4::Context->dbh();
641         my $query =
642           "SELECT distinct($column) as availablevalues FROM $table";
643         my $sth = $dbh->prepare($query);
644         $sth->execute();
645         my @values;
646         while ( my $row = $sth->fetchrow_hashref() ) {
647                 push @values, $row;
648         }
649         $sth->finish();
650         return \@values;
651 }       
652
653 sub save_dictionary {
654         my ($name,$description,$sql,$area) = @_;
655         my $dbh = C4::Context->dbh();
656         my $query = "INSERT INTO reports_dictionary (name,description,saved_sql,area,date_created,date_modified)
657   VALUES (?,?,?,?,now(),now())";
658     my $sth = $dbh->prepare($query);
659     $sth->execute($name,$description,$sql,$area) || return 0;
660     $sth->finish();
661     return 1;
662 }
663
664 sub get_from_dictionary {
665         my ($area,$id) = @_;
666         my $dbh = C4::Context->dbh();
667         my $query = "SELECT * FROM reports_dictionary";
668         if ($area){
669                 $query.= " WHERE area = ?";
670         }
671         elsif ($id){
672                 $query.= " WHERE id = ?"
673         }
674         my $sth = $dbh->prepare($query);
675         if ($id){
676                 $sth->execute($id);
677         }
678         elsif ($area) {
679                 $sth->execute($area);
680         }
681         else {
682                 $sth->execute();
683         }
684         my @loop;
685         my @reports = ( 'Circulation', 'Catalog', 'Patrons', 'Acquisitions', 'Accounts');
686         while (my $data = $sth->fetchrow_hashref()){
687                 $data->{'areaname'}=$reports[$data->{'area'}-1];
688                 push @loop,$data;
689                 
690         }
691         $sth->finish();
692         return (\@loop);
693 }
694
695 sub delete_definition {
696         my ($id) = @_;
697         my $dbh = C4::Context->dbh();
698         my $query = "DELETE FROM reports_dictionary WHERE id = ?";
699         my $sth = $dbh->prepare($query);
700         $sth->execute($id);
701         $sth->finish();
702 }
703
704 sub get_sql {
705         my ($id) = @_;
706         my $dbh = C4::Context->dbh();
707         my $query = "SELECT * FROM saved_sql WHERE id = ?";
708         my $sth = $dbh->prepare($query);
709         $sth->execute($id);
710         my $data=$sth->fetchrow_hashref();
711         $sth->finish(); 
712         return $data->{'savedsql'};
713 }
714
715 sub _get_column_defs {
716         my ($cgi) = @_;
717         my %columns;
718         my $columns_def_file = "columns.def";
719         my $htdocs = C4::Context->config('intrahtdocs');                       
720         my $section='intranet';
721         my ($theme, $lang) = themelanguage($htdocs, $columns_def_file, $section,$cgi);
722
723         my $full_path_to_columns_def_file="$htdocs/$theme/$lang/$columns_def_file";    
724         open (COLUMNS,$full_path_to_columns_def_file);
725         while (my $input = <COLUMNS>){
726                 my @row =split(/\t/,$input);
727                 $columns{$row[0]}=$row[1];
728         }
729
730         close COLUMNS;
731         return \%columns;
732 }
733 1;
734 __END__
735
736 =back
737
738 =head1 AUTHOR
739
740 Chris Cormack <crc@liblime.com>
741
742 =cut