Working on fixing bug for acquisition bookfund modifying, work in progress
[koha.git] / reports / itemslost.pl
blob844b240c91eaa1a89b8af35a575106b266b919cd
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; # GetLostItems
30 use C4::Koha; # GetItemTypes
31 use C4::Branch; # GetBranches
33 my $query = new CGI;
34 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
36 template_name => "reports/itemslost.tmpl",
37 query => $query,
38 type => "intranet",
39 authnotrequired => 0,
40 flagsrequired => { reportss => 1 },
41 debug => 1,
45 my $params = $query->Vars;
47 if ( $params->{'get_items'} ) {
48 my $orderbyfilter = $params->{'orderbyfilter'} || undef;
49 my $branchfilter = $params->{'branchfilter'} || undef;
50 my $barcodefilter = $params->{'barcodefilter'} || undef;
51 my $itemtypesfilter = $params->{'itemtypesfilter'} || undef;
53 my %where;
54 $where{homebranch} = $branchfilter if defined $branchfilter;
55 $where{barcode} = $barcodefilter if defined $barcodefilter;
56 $where{itemtype} = $itemtypesfilter if defined $itemtypesfilter;
58 my $items = GetLostItems( \%where, $orderbyfilter );
59 $template->param(
60 total => scalar @$items,
61 itemsloop => $items
65 # getting all branches.
66 my $branches = GetBranches;
67 my $branch = C4::Context->userenv->{"branchname"};
68 my @branchloop;
69 foreach my $thisbranch ( keys %$branches ) {
70 my $selected = 1 if $thisbranch eq $branch;
71 my %row = (
72 value => $thisbranch,
73 selected => $selected,
74 branchname => $branches->{$thisbranch}->{'branchname'},
76 push @branchloop, \%row;
79 # getting all itemtypes
80 my $itemtypes = &GetItemTypes();
81 my @itemtypesloop;
82 foreach my $thisitemtype ( sort keys %$itemtypes ) {
83 my %row = (
84 value => $thisitemtype,
85 description => $itemtypes->{$thisitemtype}->{'description'},
87 push @itemtypesloop, \%row;
90 $template->param(
91 branchloop => \@branchloop,
92 itemtypeloop => \@itemtypesloop,
95 # writing the template
96 output_html_with_http_headers $query, $cookie, $template->output;