Bug 17182: (QA follow-up) Fix call to GetMarcBiblio
[koha.git] / acqui / uncertainprice.pl
blob7fa95ab417586f3d54bfb2b5f8d91564cc4328aa
1 #!/usr/bin/perl
3 #script to show a list of orders with uncertain prices for a bookseller
4 #the script also allows to edit the prices and uncheck the uncertainprice property of them
5 #written by john.soros@biblibre.com 01/10/2008
7 # Copyright 2008-2009 BibLibre SARL
9 # This file is part of Koha.
11 # Koha is free software; you can redistribute it and/or modify it
12 # under the terms of the GNU General Public License as published by
13 # the Free Software Foundation; either version 3 of the License, or
14 # (at your option) any later version.
16 # Koha is distributed in the hope that it will be useful, but
17 # WITHOUT ANY WARRANTY; without even the implied warranty of
18 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 # GNU General Public License for more details.
21 # You should have received a copy of the GNU General Public License
22 # along with Koha; if not, see <http://www.gnu.org/licenses>.
25 =head1 NAME
27 uncertainprice.pl
29 =head1 DESCRIPTION
31 This script displays all the orders with uncertain prices for a given bookseller, it also lets the user modify the unitprice and uncertainprice properties of the order
33 =head1 CGI PARAMETERS
35 =over 4
37 =item $booksellerid
39 The bookseller who we want to display the orders of.
41 =back
43 =cut
46 use strict;
47 use warnings;
49 use C4::Auth;
50 use C4::Output;
51 use CGI qw ( -utf8 );
53 use C4::Acquisition qw/SearchOrders GetOrder ModOrder/;
54 use C4::Biblio qw/GetBiblioData/;
56 use Koha::Acquisition::Booksellers;
57 use Koha::Acquisition::Baskets;
59 my $input=new CGI;
61 my ($template, $loggedinuser, $cookie)
62 = get_template_and_user({template_name => "acqui/uncertainprice.tt",
63 query => $input,
64 type => "intranet",
65 authnotrequired => 0,
66 flagsrequired => { acquisition => 'order_manage' },
67 debug => 1,
68 });
70 my $booksellerid = $input->param('booksellerid');
71 my $basketno = $input->param('basketno');
72 my $op = $input->param('op');
73 my $owner = $input->param('owner') || 0 ; # flag to see only "my" orders, or everyone orders
74 my $bookseller = Koha::Acquisition::Booksellers->find( $booksellerid );
76 $template->param( basket => scalar Koha::Acquisition::Baskets->find($basketno) );
78 #show all orders that have uncertain price for the bookseller
79 my $pendingorders = SearchOrders({
80 booksellerid => $booksellerid,
81 owner => $owner,
82 basketno => $basketno,
83 pending => 1,
84 });
85 my @orders = grep { $_->{'uncertainprice'} } @$pendingorders;
87 if ( $op eq 'validate' ) {
88 $template->param( validate => 1);
89 my $count = scalar(@orders);
90 for (my $i=0; $i < $count; $i++) {
91 my $order = pop(@orders);
92 my $ordernumber = $order->{ordernumber};
93 my $order_as_from_db=GetOrder($order->{ordernumber});
94 $order->{'listprice'} = $input->param('price'.$ordernumber);
95 $order->{'ecost'}= $input->param('price'.$ordernumber) - (($input->param('price'.$ordernumber) /100) * $bookseller->discount);
96 $order->{'rrp'} = $input->param('price'.$ordernumber);
97 $order->{'quantity'}=$input->param('qty'.$ordernumber);
98 $order->{'uncertainprice'}=$input->param('uncertainprice'.$ordernumber);
99 ModOrder($order);
103 $template->param( uncertainpriceorders => \@orders,
104 booksellername => "".$bookseller->name,
105 booksellerid => $bookseller->id,
106 booksellerpostal =>$bookseller->postal,
107 bookselleraddress1 => $bookseller->address1,
108 bookselleraddress2 => $bookseller->address2,
109 bookselleraddress3 => $bookseller->address3,
110 bookselleraddress4 => $bookseller->address4,
111 booksellerphone =>$bookseller->phone,
112 booksellerfax => $bookseller->fax,
113 booksellerurl => $bookseller->url,
114 booksellernotes => $bookseller->notes,
115 basketcount => $bookseller->baskets->count,
116 subscriptioncount => $bookseller->subscriptions->count,
117 active => $bookseller->active,
118 owner => $owner,
119 scriptname => "/cgi-bin/koha/acqui/uncertainprice.pl");
120 $template->{'VARS'}->{'contacts'} = $bookseller->contacts;
121 output_html_with_http_headers $input, $cookie, $template->output;