Bug 2094: implementing ability to select particular lost status in the lost items...
[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     my $loststatusfilter = $params->{'loststatusfilter'} || undef;
55
56     my %where;
57     $where{'homebranch'}       = $branchfilter    if defined $branchfilter;
58     $where{'barcode'}          = $barcodefilter   if defined $barcodefilter;
59     $where{'itemtype'}         = $itemtypesfilter if defined $itemtypesfilter;
60     $where{'authorised_value'} = $loststatusfilter if defined $loststatusfilter;
61
62     my $items = GetLostItems( \%where, $orderbyfilter ); 
63     $template->param(
64         total     => scalar @$items,
65         itemsloop => $items,
66                   get_items => $get_items
67     );
68 }
69
70 # Get the Lost colletion codes
71 #my $fw = GetFrameworkCode($biblionumber);
72 #$item = GetAuthorisedValues(GetAuthValCode('items.itemlost',$fw),$item->{itemlost}) if GetAuthValCode('items.itemlost',$fw);
73 #if ($item->{damaged}) {
74 #    $item->{itemdamagedloop}= GetAuthorisedValues(GetAuthValCode('items.damaged',$fw),$item->{damaged}) if GetAuthValCode('items.damaged',$fw);
75 #}
76 #get collection code description, too
77 #my $ccodes = GetAuthorisedValueDesc('','',   'ccode' ,'','','ccode');
78
79
80 # getting all branches.
81 my $branches = GetBranches;
82 my $branch   = C4::Context->userenv->{"branchname"};
83 my @branchloop;
84 foreach my $thisbranch ( keys %$branches ) {
85     my $selected = 1 if $thisbranch eq $branch;
86     my %row = (
87         value      => $thisbranch,
88         selected   => $selected,
89         branchname => $branches->{$thisbranch}->{'branchname'},
90     );
91     push @branchloop, \%row;
92 }
93
94 # getting all itemtypes
95 my $itemtypes = &GetItemTypes();
96 my @itemtypesloop;
97 foreach my $thisitemtype ( sort keys %$itemtypes ) {
98     my %row = (
99         value       => $thisitemtype,
100         description => $itemtypes->{$thisitemtype}->{'description'},
101     );
102     push @itemtypesloop, \%row;
103 }
104
105 # get lost statuses
106 my $lost_status_loop = C4::Koha::GetAuthorisedValues( 'LOST' );
107
108 $template->param( branchloop     => \@branchloop,
109                   itemtypeloop   => \@itemtypesloop,
110                   loststatusloop => $lost_status_loop,
111 );
112
113 # writing the template
114 output_html_with_http_headers $query, $cookie, $template->output;