3 # This file is part of Koha.
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
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.
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
21 This script displays lost items.
31 use C4
::Koha
; # GetItemTypes
32 use C4
::Branch
; # GetBranches
35 my ( $template, $loggedinuser, $cookie ) = get_template_and_user
(
37 template_name
=> "reports/itemslost.tmpl",
41 flagsrequired
=> { reports
=> 1 },
46 my $params = $query->Vars;
47 my $get_items = $params->{'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;
56 $where{homebranch
} = $branchfilter if defined $branchfilter;
57 $where{barcode
} = $barcodefilter if defined $barcodefilter;
58 $where{itemtype
} = $itemtypesfilter if defined $itemtypesfilter;
60 my $items = GetLostItems
( \
%where, $orderbyfilter );
62 total
=> scalar @
$items,
64 get_items
=> $get_items
68 # getting all branches.
69 my $branches = GetBranches
;
70 my $branch = C4
::Context
->userenv->{"branchname"};
72 foreach my $thisbranch ( keys %$branches ) {
73 my $selected = 1 if $thisbranch eq $branch;
76 selected
=> $selected,
77 branchname
=> $branches->{$thisbranch}->{'branchname'},
79 push @branchloop, \
%row;
82 # getting all itemtypes
83 my $itemtypes = &GetItemTypes
();
85 foreach my $thisitemtype ( sort keys %$itemtypes ) {
87 value
=> $thisitemtype,
88 description
=> $itemtypes->{$thisitemtype}->{'description'},
90 push @itemtypesloop, \
%row;
94 branchloop
=> \
@branchloop,
95 itemtypeloop
=> \
@itemtypesloop,
98 # writing the template
99 output_html_with_http_headers
$query, $cookie, $template->output;