@@ -, +, @@ --- C4/Acquisition.pm | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) --- a/C4/Acquisition.pm +++ a/C4/Acquisition.pm @@ -193,7 +193,7 @@ sub NewBasket { $dbh->do($query); #find & return basketno MYSQL dependant, but $dbh->last_insert_id always returns null :-( my $basket = $dbh->{'mysql_insertid'}; - ModBasketHeader($basket, $basketname || '', $basketnote || '', $basketbooksellernote || '', $basketcontractnumber || undef); + ModBasketHeader($basket, $basketname || '', $basketnote || '', $basketbooksellernote || '', $basketcontractnumber || undef, $booksellerid); return $basket; } --