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>.
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
39 The bookseller who we want to display the orders of.
52 use C4
::Acquisition qw
/SearchOrders GetOrder ModOrder/;
53 use C4
::Biblio qw
/GetBiblioData/;
55 use Koha
::Acquisition
::Booksellers
;
56 use Koha
::Acquisition
::Baskets
;
60 my ($template, $loggedinuser, $cookie)
61 = get_template_and_user
({template_name
=> "acqui/uncertainprice.tt",
65 flagsrequired
=> { acquisition
=> 'order_manage' },
69 my $booksellerid = $input->param('booksellerid');
70 my $basketno = $input->param('basketno');
71 my $op = $input->param('op');
72 my $owner = $input->param('owner') || 0 ; # flag to see only "my" orders, or everyone orders
73 my $bookseller = Koha
::Acquisition
::Booksellers
->find( $booksellerid );
75 $template->param( basket
=> Koha
::Acquisition
::Baskets
->find($basketno) );
77 #show all orders that have uncertain price for the bookseller
78 my $pendingorders = SearchOrders
({
79 booksellerid
=> $booksellerid,
81 basketno
=> $basketno,
84 my @orders = grep { $_->{'uncertainprice'} } @
$pendingorders;
86 if ( $op eq 'validate' ) {
87 $template->param( validate
=> 1);
88 my $count = scalar(@orders);
89 for (my $i=0; $i < $count; $i++) {
90 my $order = pop(@orders);
91 my $ordernumber = $order->{ordernumber
};
92 my $order_as_from_db=GetOrder
($order->{ordernumber
});
93 $order->{'listprice'} = $input->param('price'.$ordernumber);
94 $order->{'ecost'}= $input->param('price'.$ordernumber) - (($input->param('price'.$ordernumber) /100) * $bookseller->discount);
95 $order->{'rrp'} = $input->param('price'.$ordernumber);
96 $order->{'quantity'}=$input->param('qty'.$ordernumber);
97 $order->{'uncertainprice'}=$input->param('uncertainprice'.$ordernumber);
102 $template->param( uncertainpriceorders
=> \
@orders,
103 booksellername
=> "".$bookseller->name,
104 booksellerid
=> $bookseller->id,
105 booksellerpostal
=>$bookseller->postal,
106 bookselleraddress1
=> $bookseller->address1,
107 bookselleraddress2
=> $bookseller->address2,
108 bookselleraddress3
=> $bookseller->address3,
109 bookselleraddress4
=> $bookseller->address4,
110 booksellerphone
=>$bookseller->phone,
111 booksellernotes
=> $bookseller->notes,
112 basketcount
=> $bookseller->baskets->count,
113 subscriptioncount
=> $bookseller->subscriptions->count,
114 active
=> $bookseller->active,
116 scriptname
=> "/cgi-bin/koha/acqui/uncertainprice.pl");
117 $template->{'VARS'}->{'contacts'} = $bookseller->contacts;
118 output_html_with_http_headers
$input, $cookie, $template->output;