@@ -, +, @@ --- C4/Acquisition.pm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) --- a/C4/Acquisition.pm +++ a/C4/Acquisition.pm @@ -198,6 +198,11 @@ sub NewBasket { . 'VALUES (now(),?,?)'; $dbh->do( $query, {}, $booksellerid, $authorisedby ); + # Log the basket creation + if (C4::Context->preference("AcqLog")) { + logaction('ACQUISITIONS', 'ADD_BASKET', $basket); + } + my $basket = $dbh->{mysql_insertid}; $basketname ||= q{}; # default to empty strings $basketnote ||= q{}; @@ -205,11 +210,6 @@ sub NewBasket { ModBasketHeader( $basket, $basketname, $basketnote, $basketbooksellernote, $basketcontractnumber, $booksellerid, $deliveryplace, $billingplace, $is_standing, $create_items ); - # Log the basket creation - if (C4::Context->preference("AcqLog")) { - logaction('ACQUISITIONS', 'ADD_BASKET', $basket); - } - return $basket; } --