Bug 12896: Move the bookseller-related code into Koha::Acquisition::Bookseller
[koha.git] / acqui / newordersubscription.pl
1 #!/usr/bin/perl
2
3 # Copyright 2012 BibLibre
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
10 # version.
11 #
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19
20 use Modern::Perl;
21 use CGI;
22 use C4::Acquisition;
23 use C4::Auth;
24 use C4::Branch;
25 use C4::Context;
26 use C4::Output;
27 use C4::Serials;
28
29 use Koha::Acquisition::Bookseller;
30
31 my $query        = new CGI;
32 my $title        = $query->param('title_filter');
33 my $ISSN         = $query->param('ISSN_filter');
34 my $EAN          = $query->param('EAN_filter');
35 my $publisher    = $query->param('publisher_filter');
36 my $supplier     = $query->param('supplier_filter');
37 my $branch       = $query->param('branch_filter');
38 my $routing      = $query->param('routing') || C4::Context->preference("RoutingSerials");
39 my $searched     = $query->param('searched');
40 my $biblionumber = $query->param('biblionumber');
41
42 my $basketno     = $query->param('basketno');
43 my $booksellerid = $query->param('booksellerid');
44
45 my ( $template, $loggedinuser, $cookie, $flags ) = get_template_and_user(
46     {   template_name   => "acqui/newordersubscription.tt",
47         query           => $query,
48         type            => "intranet",
49         authnotrequired => 0,
50         flagsrequired   => { acquisition => 'order_manage' },
51     }
52 );
53
54 my $basket = GetBasket($basketno);
55 $booksellerid = $basket->{booksellerid} unless $booksellerid;
56 my $bookseller = Koha::Acquisition::Bookseller->fetch({ id => $booksellerid });
57
58 my @subscriptions;
59 if ($searched) {
60     @subscriptions = SearchSubscriptions({
61         title => $title,
62         issn => $ISSN,
63         ean => $EAN,
64         publisher => $publisher,
65         bookseller => $supplier,
66         branch => $branch
67     });
68 }
69
70 foreach my $sub (@subscriptions) {
71     $sub->{alreadyOnOrder} = subscriptionCurrentlyOnOrder $sub->{subscriptionid};
72
73     # to toggle between create or edit routing list options
74     if ($routing) {
75         $sub->{routingedit} = check_routing( $sub->{subscriptionid} );
76     }
77 }
78
79 my $branches = GetBranches();
80 my @branches_loop;
81 foreach (sort keys %$branches){
82     my $selected = 0;
83     $selected = 1 if defined $branch && $branch eq $_;
84     push @branches_loop, {
85         branchcode  => $_,
86         branchname  => $branches->{$_}->{branchname},
87         selected    => $selected,
88     };
89 }
90
91 $template->param(
92     subs_loop        => \@subscriptions,
93     title_filter     => $title,
94     ISSN_filter      => $ISSN,
95     EAN_filter       => $EAN,
96     publisher_filter => $publisher,
97     supplier_filter  => $supplier,
98     branch_filter    => $branch,
99     branches_loop    => \@branches_loop,
100     done_searched    => $searched,
101     routing          => $routing,
102     booksellerid     => $booksellerid,
103     basketno         => $basket->{basketno},
104     basketname       => $basket->{basketname},
105     booksellername   => $bookseller->{name},
106 );
107 output_html_with_http_headers $query, $cookie, $template->output;