fixing syntax error in sysprefs.sql
[koha.git] / reports / inventory.pl
1 #!/usr/bin/perl
2
3 # Copyright 2000-2002 Katipo Communications
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 use C4::Auth;
23 use C4::Context;
24 use C4::Output;
25 use C4::Biblio;
26 use C4::Date;
27
28
29 # Fixed variables
30 my $linecolor1='#ffffcc';
31 my $linecolor2='white';
32 my $backgroundimage="/images/background-mem.gif";
33 my $script_name="/cgi-bin/koha/admin/branches.pl";
34 my $pagepagesize=20;
35
36
37 #######################################################################################
38 # Main loop....
39 my $input = new CGI;
40 my $minlocation=$input->param('minlocation');
41 my $maxlocation=$input->param('maxlocation');
42 $maxlocation=$minlocation.'Z' unless $maxlocation;
43 my $datelastseen = $input->param('datelastseen');
44 my $offset = $input->param('offset');
45 my $markseen = $input->param('markseen');
46 $offset=0 unless $offset;
47 my $pagesize = $input->param('pagesize');
48 $pagesize=20 unless $pagesize;
49 my $uploadbarcodes = $input->param('uploadbarcodes');
50 # warn "uploadbarcodes : ".$uploadbarcodes;
51
52 my ($template, $borrowernumber, $cookie)
53     = get_template_and_user({template_name => "reports/inventory.tmpl",
54                              query => $input,
55                              type => "intranet",
56                              authnotrequired => 0,
57                              flagsrequired => {reports => 1},
58                              debug => 1,
59                              });
60 $template->param(minlocation => $minlocation,
61                                 maxlocation => $maxlocation,
62                                 offset => $offset,
63                                 pagesize => $pagesize,
64                                 datelastseen => $datelastseen,
65                                 );
66 if ($uploadbarcodes && length($uploadbarcodes)>0){
67         my $dbh=C4::Context->dbh;
68         my $date=format_date($input->param('setdate'));
69         $date = format_date("today") unless $date;
70 #       warn "$date";
71         my $strsth="update items set (datelastseen = $date) where items.barcode =?";
72         my $qupdate = $dbh->prepare($strsth);
73         my $strsth="select * from issues, items where items.itemnumber=issues.itemnumber and items.barcode =? and issues.returndate is null";
74         my $qonloan = $dbh->prepare($strsth);
75         my $strsth="select * from items where items.barcode =? and issues.wthdrawn=1";
76         my $qwthdrawn = $dbh->prepare($strsth);
77         my @errorloop;
78         my $count=0;
79         while (my $barcode=<$uploadbarcodes>){
80                 chomp $barcode;
81 #               warn "$barcode";
82                 if ($qwthdrawn->execute($barcode) &&$qwthdrawn->rows){
83                         push @errorloop, {'barcode'=>$barcode,'ERR_WTHDRAWN'=>1};
84                 }else{
85                         $qupdate->execute($barcode);
86                         $count += $qupdate->rows;
87 #                       warn "$count";
88                         if ($count){
89                                 $qonloan->execute($barcode);
90                                 if ($qonloan->rows){
91                                         my $data = $qonloan->fetchrow_hashref;
92                                         my ($doreturn, $messages, $iteminformation, $borrower) =AddReturn($barcode, $data->{homebranch});
93                                         if ($doreturn){push @errorloop, {'barcode'=>$barcode,'ERR_ONLOAN_RET'=>1}}
94                                         else {push @errorloop, {'barcode'=>$barcode,'ERR_ONLOAN_NOT_RET'=>1}}
95                                 }
96                         } else {
97                                 push @errorloop, {'barcode'=>$barcode,'ERR_BARCODE'=>1};
98                         }
99                 }
100         }
101         $qupdate->finish;
102         $qonloan->finish;
103         $qwthdrawn->finish;
104         $template->param(date=>$date,Number=>$count);
105 #       $template->param(errorfile=>$errorfile) if ($errorfile);
106         $template->param(errorloop=>\@errorloop) if (@errorloop);
107 }else{
108         if ($markseen) {
109                 foreach my $field ($input->param) {
110                         if ($field =~ /SEEN-(.*)/) {
111                                 &ModDateLastSeen($1);
112                         }
113                 }
114         }
115         if ($minlocation) {
116                 my $res = C4::Circulation::Circ2::listitemsforinventory($minlocation,$maxlocation,$datelastseen,$offset,$pagesize);
117                 $template->param(loop =>$res,
118                                                 nextoffset => ($offset+$pagesize),
119                                                 prevoffset => ($offset?$offset-$pagesize:0),
120                                                 );
121         }
122 }
123 output_html_with_http_headers $input, $cookie, $template->output;
124
125 # Local Variables:
126 # tab-width: 8
127 # End: