tools subdir - Dates.pm integration and warnings fixes.
[koha.git] / tools / 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::Dates;
27 use C4::Koha;
28 use C4::Branch; # GetBranches
29
30 my $input = new CGI;
31 my $minlocation=$input->param('minlocation') || 'A';
32 my $maxlocation=$input->param('maxlocation');
33 $maxlocation=$minlocation.'Z' unless $maxlocation;
34 my $location=$input->param('location');
35 my $datelastseen = $input->param('datelastseen');
36 my $offset = $input->param('offset');
37 my $markseen = $input->param('markseen');
38 $offset=0 unless $offset;
39 my $pagesize = $input->param('pagesize');
40 $pagesize=50 unless $pagesize;
41 my $uploadbarcodes = $input->param('uploadbarcodes');
42 my $branchcode = $input->param('branchcode');
43 my $op = $input->param('op');
44 # warn "uploadbarcodes : ".$uploadbarcodes;
45 # use Data::Dumper; warn Dumper($input);
46 my ($template, $borrowernumber, $cookie)
47     = get_template_and_user({template_name => "tools/inventory.tmpl",
48                 query => $input,
49                 type => "intranet",
50                 authnotrequired => 0,
51                 flagsrequired => {tools => 1},
52                 debug => 1,
53                 });
54
55 my $branches = GetBranches();
56 my @branch_loop;
57 push @branch_loop, {value => "", branchname => "All Locations", };
58 for my $branch_hash (keys %$branches) {
59         push @branch_loop, {value => "$branch_hash",
60                            branchname => $branches->{$branch_hash}->{'branchname'}, 
61                            selected => ($branch_hash eq $branchcode?1:0)};      
62 }
63  
64 my @authorised_value_list;
65 my $authorisedvalue_categories;
66
67 my $dbh=C4::Context->dbh;
68 my $rqauthcategorie=$dbh->prepare("select authorised_value from marc_subfield_structure where frameworkcode=? and kohafield='items.location'");
69 my $rq=$dbh->prepare("select frameworkcode from biblio_framework");
70 $rq->execute;
71 while (my ($fwkcode)=$rq->fetchrow){
72   $rqauthcategorie->execute($fwkcode);
73   while (my ($authcat)=$rqauthcategorie->fetchrow){
74     if ($authcat && $authorisedvalue_categories!~/\b$authcat\W/){
75       $authorisedvalue_categories.="$authcat ";
76       my $data=GetAuthorisedValues($authcat);
77       foreach my $value (@$data){
78         $value->{selected}=1 if ($value->{authorised_value} eq ($location));
79       }      
80       push @authorised_value_list,@$data;
81     }  
82   }
83 }
84
85
86  
87 $template->param(branchloop => \@branch_loop,
88                 authorised_values=>\@authorised_value_list,   
89                 DHTMLcalendar_dateformat => C4::Dates->DHTMLcalendar(),
90                 minlocation => $minlocation,
91                 maxlocation => $maxlocation,
92                 location=>$location,
93                 branchcode=>$branchcode,      
94                 offset => $offset,
95                 pagesize => $pagesize,
96                 datelastseen => $datelastseen,
97                 );
98 if ($uploadbarcodes && length($uploadbarcodes)>0){
99     my $dbh=C4::Context->dbh;
100     my $date = format_date_in_iso($input->param('setdate')) || C4::Dates->today('iso');
101 #       warn "$date";
102     my $strsth="update items set (datelastseen = $date) where items.barcode =?";
103     my $qupdate = $dbh->prepare($strsth);
104     $strsth="select * from issues, items where items.itemnumber=issues.itemnumber and items.barcode =? and issues.returndate is null";
105     my $qonloan = $dbh->prepare($strsth);
106     $strsth="select * from items where items.barcode =? and issues.wthdrawn=1";
107     my $qwthdrawn = $dbh->prepare($strsth);
108     my @errorloop;
109     my $count=0;
110     while (my $barcode=<$uploadbarcodes>){
111         chomp $barcode;
112 #               warn "$barcode";
113         if ($qwthdrawn->execute($barcode) &&$qwthdrawn->rows){
114             push @errorloop, {'barcode'=>$barcode,'ERR_WTHDRAWN'=>1};
115         }else{
116             $qupdate->execute($barcode);
117             $count += $qupdate->rows;
118 #                       warn "$count";
119             if ($count){
120                 $qonloan->execute($barcode);
121                 if ($qonloan->rows){
122                     my $data = $qonloan->fetchrow_hashref;
123                     my ($doreturn, $messages, $iteminformation, $borrower) =AddReturn($barcode, $data->{homebranch});
124                     if ($doreturn){push @errorloop, {'barcode'=>$barcode,'ERR_ONLOAN_RET'=>1}}
125                     else {push @errorloop, {'barcode'=>$barcode,'ERR_ONLOAN_NOT_RET'=>1}}
126                 }
127             } else {
128                 push @errorloop, {'barcode'=>$barcode,'ERR_BARCODE'=>1};
129             }
130         }
131     }
132     $qupdate->finish;
133     $qonloan->finish;
134     $qwthdrawn->finish;
135     $template->param(date=>format_date($date),Number=>$count);
136 #       $template->param(errorfile=>$errorfile) if ($errorfile);
137     $template->param(errorloop=>\@errorloop) if (@errorloop);
138 }else{
139     if ($markseen) {
140         foreach ($input->param) {
141             /SEEN-(.+)/ and &ModDateLastSeen($1);
142         }
143     }
144     if ($markseen or $op) {
145         my $res = GetItemsForInventory($minlocation,$maxlocation,$location,$datelastseen,$branchcode,$offset,$pagesize);
146         $template->param(loop =>$res,
147                         nextoffset => ($offset+$pagesize),
148                         prevoffset => ($offset?$offset-$pagesize:0),
149                         );
150     }
151 }
152 output_html_with_http_headers $input, $cookie, $template->output;
153
154 # Local Variables:
155 # tab-width: 8
156 # End: