fix to remove leading/trailing whitespace from entered barcode.
[koha.git] / reports / itemslost.pl
blob406fbbf8703d1d44a4229a21f4748b8571bdb0f8
1 #!/usr/bin/perl
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
8 # version.
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
19 =head1 itemslost
21 This script displays lost items.
23 =cut
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
34 my $query = new CGI;
35 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
37 template_name => "reports/itemslost.tmpl",
38 query => $query,
39 type => "intranet",
40 authnotrequired => 0,
41 flagsrequired => { reports => 1 },
42 debug => 1,
46 my $params = $query->Vars;
47 my $get_items = $params->{'get_items'};
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;
56 my %where;
57 $where{'homebranch'} = $branchfilter if defined $branchfilter;
58 $where{'barcode'} = $barcodefilter if defined $barcodefilter;
59 $where{'authorised_value'} = $loststatusfilter if defined $loststatusfilter;
61 my $itype = C4::Context->preference('item-level_itypes') ? "itype" : "itemtype";
62 $where{$itype} = $itemtypesfilter if defined $itemtypesfilter;
64 my $items = GetLostItems( \%where, $orderbyfilter );
65 $template->param(
66 total => scalar @$items,
67 itemsloop => $items,
68 get_items => $get_items,
69 itype_level => C4::Context->preference('item-level_itypes'),
73 # getting all branches.
74 my $branches = GetBranches;
75 my $branch = C4::Context->userenv->{"branchname"};
76 my @branchloop;
77 foreach my $thisbranch ( keys %$branches ) {
78 my $selected = 1 if $thisbranch eq $branch;
79 my %row = (
80 value => $thisbranch,
81 selected => $selected,
82 branchname => $branches->{$thisbranch}->{'branchname'},
84 push @branchloop, \%row;
87 # getting all itemtypes
88 my $itemtypes = &GetItemTypes();
89 my @itemtypesloop;
90 foreach my $thisitemtype ( sort keys %$itemtypes ) {
91 my %row = (
92 value => $thisitemtype,
93 description => $itemtypes->{$thisitemtype}->{'description'},
95 push @itemtypesloop, \%row;
98 # get lost statuses
99 my $lost_status_loop = C4::Koha::GetAuthorisedValues( 'LOST' );
101 $template->param( branchloop => \@branchloop,
102 itemtypeloop => \@itemtypesloop,
103 loststatusloop => $lost_status_loop,
106 # writing the template
107 output_html_with_http_headers $query, $cookie, $template->output;