Bug 9302: Use patron-title.inc
[koha.git] / acqui / newordersubscription.pl
blob51151af7f246f75b998ab4a46411999a846de846
1 #!/usr/bin/perl
3 # Copyright 2012 BibLibre
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
20 use Modern::Perl;
21 use CGI qw ( -utf8 );
22 use C4::Acquisition;
23 use C4::Auth;
24 use C4::Context;
25 use C4::Output;
26 use C4::Serials;
28 use Koha::Acquisition::Booksellers;
30 my $query = new CGI;
31 my $title = $query->param('title_filter');
32 my $ISSN = $query->param('ISSN_filter');
33 my $EAN = $query->param('EAN_filter');
34 my $publisher = $query->param('publisher_filter');
35 my $supplier = $query->param('supplier_filter');
36 my $branch = $query->param('branch_filter');
37 my $routing = $query->param('routing') || C4::Context->preference("RoutingSerials");
38 my $searched = $query->param('searched');
39 my $biblionumber = $query->param('biblionumber');
41 my $basketno = $query->param('basketno');
42 my $booksellerid = $query->param('booksellerid');
44 my ( $template, $loggedinuser, $cookie, $flags ) = get_template_and_user(
45 { template_name => "acqui/newordersubscription.tt",
46 query => $query,
47 type => "intranet",
48 authnotrequired => 0,
49 flagsrequired => { acquisition => 'order_manage' },
53 my $basket = GetBasket($basketno);
54 $booksellerid = $basket->{booksellerid} unless $booksellerid;
55 my $bookseller = Koha::Acquisition::Booksellers->find( $booksellerid );
57 my @subscriptions;
58 if ($searched) {
59 @subscriptions = SearchSubscriptions({
60 title => $title,
61 issn => $ISSN,
62 ean => $EAN,
63 publisher => $publisher,
64 bookseller => $supplier,
65 branch => $branch
66 });
69 foreach my $sub (@subscriptions) {
70 $sub->{alreadyOnOrder} = subscriptionCurrentlyOnOrder $sub->{subscriptionid};
72 # to toggle between create or edit routing list options
73 if ($routing) {
74 $sub->{routingedit} = check_routing( $sub->{subscriptionid} );
78 $template->param(
79 subs_loop => \@subscriptions,
80 title_filter => $title,
81 ISSN_filter => $ISSN,
82 EAN_filter => $EAN,
83 publisher_filter => $publisher,
84 supplier_filter => $supplier,
85 branch_filter => $branch,
86 done_searched => $searched,
87 routing => $routing,
88 booksellerid => $booksellerid,
89 basketno => $basket->{basketno},
90 basketname => $basket->{basketname},
91 booksellername => $bookseller->name,
93 output_html_with_http_headers $query, $cookie, $template->output;