Bug 30477: Add new UNIMARC installer translation files
[koha.git] / recalls / request.pl
1 #!/usr/bin/perl
2
3 # Copyright 2020 Aleisha Amohia <aleisha@catalyst.net.nz>
4 #
5 # This file is part of Koha.
6 # Koha is free software; you can redistribute it and/or modify it
7 # under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 3 of the License, or
9 # (at your option) any later version.
10 #
11 # Koha is distributed in the hope that it will be useful, but
12 # WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with Koha; if not, see <http://www.gnu.org/licenses>.
18
19 use Modern::Perl;
20 use CGI qw ( -utf8 );
21 use C4::Auth qw( get_template_and_user );
22 use C4::Output qw( output_html_with_http_headers );
23 use C4::Search;
24 use Koha::Recalls;
25 use Koha::Biblios;
26
27 my $input = CGI->new;
28 my ($template, $loggedinuser, $cookie)= get_template_and_user(
29     {
30        template_name => "recalls/request.tt",
31        query => $input,
32        type => "intranet",
33        flagsrequired => { recalls => "manage_recalls" },
34        debug => 1,
35     }
36 );
37
38 my $op = $input->param('op') || 'list';
39 my @recall_ids = $input->multi_param('recall_ids');
40 my $biblionumber = $input->param('biblionumber');
41 my $recalls = Koha::Recalls->search({ biblionumber => $biblionumber, old => 0 });
42 my $biblio = Koha::Biblios->find( $biblionumber );
43
44 if ( $op eq 'cancel_multiple_recalls' ) {
45     foreach my $id ( @recall_ids ) {
46         Koha::Recalls->find( $id )->set_cancelled;
47     }
48     $op = 'list'
49 }
50
51 if ( $op eq 'list' ) {
52     $recalls = Koha::Recalls->search({ biblionumber => $biblionumber, old => 0 });
53     $biblio = Koha::Biblios->find( $biblionumber );
54 }
55
56 $template->param(
57     recalls     => $recalls,
58     recallsview => 1,
59     biblio      => $biblio,
60     checkboxes  => 1,
61     C4::Search::enabled_staff_search_views,
62 );
63
64 output_html_with_http_headers $input, $cookie, $template->output;