Add a new Debian package and GoogleJacket on OPAC detail page
[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;
30 use C4::Items;
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   => "reports/itemslost.tmpl",
38         query           => $query,
39         type            => "intranet",
40         authnotrequired => 0,
41         flagsrequired   => { reports => 1 },
42         debug           => 1,
43     }
44 );
45
46 my $params = $query->Vars;
47 my $get_items = $params->{'get_items'};
48
49 if ( $get_items ) {
50     my $orderbyfilter   = $params->{'orderbyfilter'}   || undef;
51     my $branchfilter    = $params->{'branchfilter'}    || undef;
52     my $barcodefilter   = $params->{'barcodefilter'}   || undef;
53     my $itemtypesfilter = $params->{'itemtypesfilter'} || undef;
54
55     my %where;
56     $where{homebranch} = $branchfilter    if defined $branchfilter;
57     $where{barcode}    = $barcodefilter   if defined $barcodefilter;
58     $where{itemtype}   = $itemtypesfilter if defined $itemtypesfilter;
59
60     my $items = GetLostItems( \%where, $orderbyfilter ); 
61     $template->param(
62         total     => scalar @$items,
63         itemsloop => $items,
64                   get_items => $get_items
65     );
66 }
67
68 # Get the Lost colletion codes
69 #my $fw = GetFrameworkCode($biblionumber);
70 #$item = GetAuthorisedValues(GetAuthValCode('items.itemlost',$fw),$item->{itemlost}) if GetAuthValCode('items.itemlost',$fw);
71 #if ($item->{damaged}) {
72 #    $item->{itemdamagedloop}= GetAuthorisedValues(GetAuthValCode('items.damaged',$fw),$item->{damaged}) if GetAuthValCode('items.damaged',$fw);
73 #}
74 #get collection code description, too
75 #my $ccodes = GetAuthorisedValueDesc('','',   'ccode' ,'','','ccode');
76
77
78 # getting all branches.
79 my $branches = GetBranches;
80 my $branch   = C4::Context->userenv->{"branchname"};
81 my @branchloop;
82 foreach my $thisbranch ( keys %$branches ) {
83     my $selected = 1 if $thisbranch eq $branch;
84     my %row = (
85         value      => $thisbranch,
86         selected   => $selected,
87         branchname => $branches->{$thisbranch}->{'branchname'},
88     );
89     push @branchloop, \%row;
90 }
91
92 # getting all itemtypes
93 my $itemtypes = &GetItemTypes();
94 my @itemtypesloop;
95 foreach my $thisitemtype ( sort keys %$itemtypes ) {
96     my %row = (
97         value       => $thisitemtype,
98         description => $itemtypes->{$thisitemtype}->{'description'},
99     );
100     push @itemtypesloop, \%row;
101 }
102
103 $template->param(
104     branchloop   => \@branchloop,
105     itemtypeloop => \@itemtypesloop,
106 );
107
108 # writing the template
109 output_html_with_http_headers $query, $cookie, $template->output;