Bug 8215: Followup FIX QA issues
[koha.git] / acqui / neworderbiblio.pl
1 #!/usr/bin/perl
2
3 #origninally script to provide intranet (librarian) advanced search facility
4 #now script to do searching for acquisitions
5
6 # Copyright 2000-2002 Katipo Communications
7 # Copyright 2008-2009 BibLibre SARL
8 #
9 # This file is part of Koha.
10 #
11 # Koha is free software; you can redistribute it and/or modify it under the
12 # terms of the GNU General Public License as published by the Free Software
13 # Foundation; either version 2 of the License, or (at your option) any later
14 # version.
15 #
16 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
17 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
18 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
19 #
20 # You should have received a copy of the GNU General Public License along
21 # with Koha; if not, write to the Free Software Foundation, Inc.,
22 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23
24 =head1 NAME
25
26 neworderbiblio.pl
27
28 =head1 DESCRIPTION
29
30 this script allows to perform a new order from an existing record.
31
32 =head1 CGI PARAMETERS
33
34 =over 4
35
36 =item search
37 the title the librarian has typed to search an existing record.
38
39 =item q
40 the keyword the librarian has typed to search an existing record.
41
42 =item author
43 the author of the new record.
44
45 =item num
46 the number of result per page to display
47
48 =item booksellerid
49 the id of the bookseller this script has to add an order.
50
51 =item basketno
52 the basket number to know on which basket this script have to add a new order.
53
54 =back
55
56 =cut
57
58 use strict;
59 #use warnings; FIXME - Bug 2505
60
61 use C4::Search;
62 use CGI;
63 use C4::Bookseller qw/ GetBookSellerFromId /;
64 use C4::Biblio;
65 use C4::Auth;
66 use C4::Output;
67 use C4::Koha;
68 use C4::Members qw/ GetMember /;
69 use C4::Budgets qw/ GetBudgetHierarchy /;
70
71 my $input = new CGI;
72
73 #getting all CGI params into a hash.
74 my $params = $input->Vars;
75
76 my $page             = $params->{'page'} || 1;
77 my $query            = $params->{'q'};
78 my $results_per_page = $params->{'num'} || 20;
79 my $booksellerid     = $params->{'booksellerid'};
80 my $basketno         = $params->{'basketno'};
81 my $sub              = $params->{'sub'};
82 my $bookseller = GetBookSellerFromId($booksellerid);
83
84 # getting the template
85 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
86     {
87         template_name   => "acqui/neworderbiblio.tmpl",
88         query           => $input,
89         type            => "intranet",
90         authnotrequired => 0,
91         flagsrequired   => { acquisition => 'order_manage' },
92     }
93 );
94
95 # Searching the catalog.
96
97     # find results
98 my ( $error, $marcresults, $total_hits ) = SimpleSearch( $query, $results_per_page * ( $page - 1 ), $results_per_page );
99
100 if (defined $error) {
101     $template->param(
102         query_error => $error,
103         basketno             => $basketno,
104         booksellerid     => $bookseller->{'id'},
105         name             => $bookseller->{'name'},
106     );
107     output_html_with_http_headers $input, $cookie, $template->output;
108     exit;
109 }
110
111 my @results;
112
113 foreach my $result ( @{$marcresults} ) {
114     my $marcrecord = MARC::File::USMARC::decode( $result );
115     my $biblio = TransformMarcToKoha( C4::Context->dbh, $marcrecord, '' );
116
117     $biblio->{booksellerid} = $booksellerid;
118     push @results, $biblio;
119
120 }
121
122 my $borrower= GetMember('borrowernumber' => $loggedinuser);
123 my $budgets = GetBudgetHierarchy(q{},$borrower->{branchcode},$borrower->{borrowernumber});
124 my $has_budgets = 0;
125 foreach my $r (@{$budgets}) {
126     if (!defined $r->{budget_amount} || $r->{budget_amount} == 0) {
127         next;
128     }
129     $has_budgets = 1;
130     last;
131 }
132
133 $template->param(
134     has_budgets          => $has_budgets,
135     basketno             => $basketno,
136     booksellerid         => $bookseller->{'id'},
137     name                 => $bookseller->{'name'},
138     resultsloop          => \@results,
139     total                => $total_hits,
140     query                => $query,
141     pagination_bar       => pagination_bar( "$ENV{'SCRIPT_NAME'}?q=$query&booksellerid=$booksellerid&basketno=$basketno&", getnbpages( $total_hits, $results_per_page ), $page, 'page' ),
142 );
143
144 # BUILD THE TEMPLATE
145 output_html_with_http_headers $input, $cookie, $template->output;