3 # Copyright Liblime 2007
4 # Copyright Biblibre 2009
6 # This file is part of Koha.
8 # Koha is free software; you can redistribute it and/or modify it
9 # under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 3 of the License, or
11 # (at your option) any later version.
13 # Koha is distributed in the hope that it will be useful, but
14 # WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with Koha; if not, see <http://www.gnu.org/licenses>.
24 This script displays lost items.
38 my ( $template, $loggedinuser, $cookie ) = get_template_and_user
(
40 template_name
=> "reports/itemslost.tt",
44 flagsrequired
=> { reports
=> '*' },
49 my $params = $query->Vars;
50 my $get_items = $params->{'get_items'};
53 my $branchfilter = $params->{'branchfilter'} || undef;
54 my $barcodefilter = $params->{'barcodefilter'} || undef;
55 my $itemtypesfilter = $params->{'itemtypesfilter'} || undef;
56 my $loststatusfilter = $params->{'loststatusfilter'} || undef;
59 ( $branchfilter ?
( homebranch
=> $branchfilter ) : () ),
62 ?
( itemlost
=> $loststatusfilter )
63 : ( itemlost
=> { '!=' => 0 } )
65 ( $barcodefilter ?
( barcode
=> { like
=> "%$barcodefilter%" } ) : () ),
69 if ($itemtypesfilter) {
70 if ( C4
::Context
->preference('item-level_itypes') ) {
71 $params->{itype
} = $itemtypesfilter;
74 # We want a join on biblioitems
75 $attributes = { join => 'biblioitem' };
76 $params->{'biblioitem.itemtype'} = $itemtypesfilter;
80 my $items = Koha
::Items
->search( $params, $attributes );
84 get_items
=> $get_items,
88 # getting all itemtypes
89 my $itemtypes = Koha
::ItemTypes
->search_with_localization;
92 my $lost_status_loop = C4
::Koha
::GetAuthorisedValues
( 'LOST' );
95 itemtypes
=> $itemtypes,
96 loststatusloop
=> $lost_status_loop,
99 # writing the template
100 output_html_with_http_headers
$query, $cookie, $template->output;