fixing syntax error in sysprefs.sql
[koha.git] / reports / 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
19 =head1 itemslost
20
21 This script displays lost items.
22
23 =cut
24
25 use strict;
26 use CGI;
27 use C4::Auth;
28 use C4::Output;
29 use C4::Biblio;    # GetLostItems
30 use C4::Koha;                  # GetItemTypes
31 use C4::Branch; # GetBranches
32
33 my $query = new CGI;
34 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
35     {
36         template_name   => "reports/itemslost.tmpl",
37         query           => $query,
38         type            => "intranet",
39         authnotrequired => 0,
40         flagsrequired   => { reportss => 1 },
41         debug           => 1,
42     }
43 );
44
45 my $params = $query->Vars;
46
47 if ( $params->{'get_items'} ) {
48     my $orderbyfilter   = $params->{'orderbyfilter'}   || undef;
49     my $branchfilter    = $params->{'branchfilter'}    || undef;
50     my $barcodefilter   = $params->{'barcodefilter'}   || undef;
51     my $itemtypesfilter = $params->{'itemtypesfilter'} || undef;
52
53     my %where;
54     $where{homebranch} = $branchfilter    if defined $branchfilter;
55     $where{barcode}    = $barcodefilter   if defined $barcodefilter;
56     $where{itemtype}   = $itemtypesfilter if defined $itemtypesfilter;
57
58     my $items = GetLostItems( \%where, $orderbyfilter );
59     $template->param(
60         total     => scalar @$items,
61         itemsloop => $items
62     );
63 }
64
65 # getting all branches.
66 my $branches = GetBranches;
67 my $branch   = C4::Context->userenv->{"branchname"};
68 my @branchloop;
69 foreach my $thisbranch ( keys %$branches ) {
70     my $selected = 1 if $thisbranch eq $branch;
71     my %row = (
72         value      => $thisbranch,
73         selected   => $selected,
74         branchname => $branches->{$thisbranch}->{'branchname'},
75     );
76     push @branchloop, \%row;
77 }
78
79 # getting all itemtypes
80 my $itemtypes = &GetItemTypes();
81 my @itemtypesloop;
82 foreach my $thisitemtype ( sort keys %$itemtypes ) {
83     my %row = (
84         value       => $thisitemtype,
85         description => $itemtypes->{$thisitemtype}->{'description'},
86     );
87     push @itemtypesloop, \%row;
88 }
89
90 $template->param(
91     branchloop   => \@branchloop,
92     itemtypeloop => \@itemtypesloop,
93 );
94
95 # writing the template
96 output_html_with_http_headers $query, $cookie, $template->output;