From fa9ecea842861fb24b93c5276a8f7ff0e7feb4ec Mon Sep 17 00:00:00 2001 From: toins Date: Thu, 27 Jul 2006 13:32:41 +0000 Subject: [PATCH] add a call to Bookseller.pm --- acqui/order.pl | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/acqui/order.pl b/acqui/order.pl index 974614b096..e71f51f127 100755 --- a/acqui/order.pl +++ b/acqui/order.pl @@ -37,15 +37,20 @@ to add an order for a specific supplier or to just add a new supplier. =over 4 =item supplier + C<$supplier> is the suplier we have to search order. =back =item op + C can be equals to 'close' if we have to close a basket before building the page. - + =item basket + the C we have to close if op is equal to 'close'. +=back + =cut use strict; @@ -58,6 +63,7 @@ use C4::Database; use HTML::Template; use C4::Acquisition; use C4::Date; +use C4::Bookseller; my $query = new CGI; my ( $template, $loggedinuser, $cookie ) = get_template_and_user( @@ -88,7 +94,7 @@ if ( $op eq 'close' ) { my $toggle = 0; my @loop_suppliers; for ( my $i = 0 ; $i < $count ; $i++ ) { - my $orders = GetOrders( $suppliers[$i]->{'id'} ); + my $orders = GetPendingOrders( $suppliers[$i]->{'id'} ); my $ordcount = scalar @$orders; my %line; -- 2.39.2