Bug 19695: Fix another instance of ->find in list context (uncertainprice.pl)
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
This commit is contained in:
parent
d8981b710d
commit
7aad1df80c
1 changed files with 1 additions and 1 deletions
|
@ -73,7 +73,7 @@ my $op = $input->param('op');
|
|||
my $owner = $input->param('owner') || 0 ; # flag to see only "my" orders, or everyone orders
|
||||
my $bookseller = Koha::Acquisition::Booksellers->find( $booksellerid );
|
||||
|
||||
$template->param( basket => Koha::Acquisition::Baskets->find($basketno) );
|
||||
$template->param( basket => scalar Koha::Acquisition::Baskets->find($basketno) );
|
||||
|
||||
#show all orders that have uncertain price for the bookseller
|
||||
my $pendingorders = SearchOrders({
|
||||
|
|
Loading…
Reference in a new issue