Bug 10963: Simplified creation - AR framework
[koha.git] / reports / itemslost.pl
blobb84dbc5312a91099d7ac81eefd96e4daa37dcee4
1 #!/usr/bin/perl
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>.
22 =head1 itemslost
24 This script displays lost items.
26 =cut
28 use strict;
29 use warnings;
31 use CGI qw ( -utf8 );
32 use C4::Auth;
33 use C4::Output;
34 use C4::Biblio;
35 use C4::Items;
36 use C4::Koha; # GetItemTypes
37 use C4::Branch; # GetBranches
38 use C4::Dates qw/format_date/;
40 my $query = new CGI;
41 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
43 template_name => "reports/itemslost.tt",
44 query => $query,
45 type => "intranet",
46 authnotrequired => 0,
47 flagsrequired => { reports => '*' },
48 debug => 1,
52 my $params = $query->Vars;
53 my $get_items = $params->{'get_items'};
55 if ( $get_items ) {
56 my $branchfilter = $params->{'branchfilter'} || undef;
57 my $barcodefilter = $params->{'barcodefilter'} || undef;
58 my $itemtypesfilter = $params->{'itemtypesfilter'} || undef;
59 my $loststatusfilter = $params->{'loststatusfilter'} || undef;
61 my %where;
62 $where{'homebranch'} = $branchfilter if defined $branchfilter;
63 $where{'barcode'} = $barcodefilter if defined $barcodefilter;
64 $where{'authorised_value'} = $loststatusfilter if defined $loststatusfilter;
66 my $itype = C4::Context->preference('item-level_itypes') ? "itype" : "itemtype";
67 $where{$itype} = $itemtypesfilter if defined $itemtypesfilter;
69 my $items = GetLostItems( \%where );
70 foreach my $it (@$items) {
71 $it->{'datelastseen'} = format_date($it->{'datelastseen'});
73 $template->param(
74 total => scalar @$items,
75 itemsloop => $items,
76 get_items => $get_items,
77 itype_level => C4::Context->preference('item-level_itypes'),
81 # getting all branches.
82 #my $branches = GetBranches;
83 #my $branch = C4::Context->userenv->{"branchname"};
85 # getting all itemtypes
86 my $itemtypes = &GetItemTypes();
87 my @itemtypesloop;
88 foreach my $thisitemtype ( sort {$itemtypes->{$a}->{description} cmp $itemtypes->{$b}->{description}} keys %$itemtypes ) {
89 my %row = (
90 value => $thisitemtype,
91 description => $itemtypes->{$thisitemtype}->{'description'},
93 push @itemtypesloop, \%row;
96 # get lost statuses
97 my $lost_status_loop = C4::Koha::GetAuthorisedValues( 'LOST' );
99 $template->param( branchloop => GetBranchesLoop(C4::Context->userenv->{'branch'}),
100 itemtypeloop => \@itemtypesloop,
101 loststatusloop => $lost_status_loop,
104 # writing the template
105 output_html_with_http_headers $query, $cookie, $template->output;