adding a warn to log why we're redirecting to installer
[koha.git] / tools / itemslost.pl
1 #!/usr/bin/perl
2
3 # This file is part of Koha.
4 #
5 # Koha is free software; you can redistribute it and/or modify it under the
6 # terms of the GNU General Public License as published by the Free Software
7 # Foundation; either version 2 of the License, or (at your option) any later
8 # version.
9 #
10 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
11 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
12 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License along with
15 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
16 # Suite 330, Boston, MA  02111-1307 USA
17
18 #$Id$
19
20 =head1 itemslost
21
22 This script displays lost items.
23
24 =cut
25
26 use strict;
27 use CGI;
28 use C4::Auth;
29 use C4::Output;
30 use C4::Biblio;    # GetLostItems
31 use C4::Koha;                  # GetItemTypes
32 use C4::Branch; # GetBranches
33
34 my $query = new CGI;
35 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
36     {
37         template_name   => "tools/itemslost.tmpl",
38         query           => $query,
39         type            => "intranet",
40         authnotrequired => 0,
41         flagsrequired   => { tools => 1 },
42         debug           => 1,
43     }
44 );
45
46 my $params = $query->Vars;
47
48 if ( $params->{'get_items'} ) {
49     my $orderbyfilter   = $params->{'orderbyfilter'}   || undef;
50     my $branchfilter    = $params->{'branchfilter'}    || undef;
51     my $barcodefilter   = $params->{'barcodefilter'}   || undef;
52     my $itemtypesfilter = $params->{'itemtypesfilter'} || undef;
53
54     my %where;
55     $where{homebranch} = $branchfilter    if defined $branchfilter;
56     $where{barcode}    = $barcodefilter   if defined $barcodefilter;
57     $where{itemtype}   = $itemtypesfilter if defined $itemtypesfilter;
58
59     my $items = GetLostItems( \%where, $orderbyfilter );
60     $template->param(
61         total     => scalar @$items,
62         itemsloop => $items
63     );
64 }
65
66 # getting all branches.
67 my $branches = GetBranches;
68 my $branch   = C4::Context->userenv->{"branchname"};
69 my @branchloop;
70 foreach my $thisbranch ( keys %$branches ) {
71     my $selected = 1 if $thisbranch eq $branch;
72     my %row = (
73         value      => $thisbranch,
74         selected   => $selected,
75         branchname => $branches->{$thisbranch}->{'branchname'},
76     );
77     push @branchloop, \%row;
78 }
79
80 # getting all itemtypes
81 my $itemtypes = &GetItemTypes();
82 my @itemtypesloop;
83 foreach my $thisitemtype ( sort keys %$itemtypes ) {
84     my %row = (
85         value       => $thisitemtype,
86         description => $itemtypes->{$thisitemtype}->{'description'},
87     );
88     push @itemtypesloop, \%row;
89 }
90
91 $template->param(
92     branchloop   => \@branchloop,
93     itemtypeloop => \@itemtypesloop,
94 );
95
96 # writing the template
97 output_html_with_http_headers $query, $cookie, $template->output;