Bug 5466 On new orders get currency from vendor
[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
69 my $input = new CGI;
70
71 #getting all CGI params into a hash.
72 my $params = $input->Vars;
73
74 my $page             = $params->{'page'} || 1;
75 my $query            = $params->{'q'};
76 my $results_per_page = $params->{'num'} || 20;
77 my $booksellerid     = $params->{'booksellerid'};
78 my $basketno         = $params->{'basketno'};
79 my $sub              = $params->{'sub'};
80 my $bookseller = GetBookSellerFromId($booksellerid);
81
82 # getting the template
83 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
84     {
85         template_name   => "acqui/neworderbiblio.tmpl",
86         query           => $input,
87         type            => "intranet",
88         authnotrequired => 0,
89         flagsrequired   => { acquisition => 'order_manage' },
90     }
91 );
92
93 # Searching the catalog.
94 my @operands = $query;
95 my ( @operators, @indexes, @sort_by, @limits ) = ();
96 my ( $builterror, $builtquery, $simple_query, $query_cgi, $query_desc, $limit, $limit_cgi, $limit_desc, $stopwords_removed, $query_type ) =
97       buildQuery( \@operators, \@operands, \@indexes, @limits, \@sort_by, undef, undef );
98
99     # find results
100 my ( $error, $marcresults, $total_hits ) = SimpleSearch( $builtquery, $results_per_page * ( $page - 1 ), $results_per_page );
101
102 if (defined $error) {
103     $template->param(
104         query_error => $error,
105         basketno             => $basketno,
106         booksellerid     => $bookseller->{'id'},
107         name             => $bookseller->{'name'},
108     );
109     output_html_with_http_headers $input, $cookie, $template->output;
110     exit;
111 }
112
113 my @results;
114
115 if ($marcresults) {
116     foreach my $result ( @{$marcresults} ) {
117         my $marcrecord = MARC::File::USMARC::decode( $result );
118         my $biblio = TransformMarcToKoha( C4::Context->dbh, $marcrecord, '' );
119
120         $biblio->{booksellerid} = $booksellerid;
121         push @results, $biblio;
122
123     }
124 }
125 $template->param(
126     basketno             => $basketno,
127     booksellerid     => $bookseller->{'id'},
128     name             => $bookseller->{'name'},
129     resultsloop          => \@results,
130     total                => $total_hits,
131     query                => $query,
132     pagination_bar       => pagination_bar( "$ENV{'SCRIPT_NAME'}?q=$query&booksellerid=$booksellerid&basketno=$basketno&", getnbpages( $total_hits, $results_per_page ), $page, 'page' ),
133 );
134
135 # BUILD THE TEMPLATE
136 output_html_with_http_headers $input, $cookie, $template->output;