From 235dccf9e74eb3ca17612bd9f03a2aa60aada572 Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Mon, 4 Dec 2023 14:05:43 +0000 Subject: [PATCH] Bug 27595: Place holds when ordering from a suggestion This patch updates the ordering code to place a hold when adding to a basket from a suggestion if the new preference PlaceHoldsOnOrdersFromSuggestions is enabled. To test: 1 - Apply all patches 2 - updatedatabase 3 - See new system preference PlaceHoldsOnOrdersFromSuggestions 4 - Create a new purchase suggestion, mark it accepted 5 - Go to acquisitions, find a vendor, find a basket, 'Add to basket' -> 'From a suggestion' 6 - Complete order, confirm no hold was placed 7 - Enable the new system preference 8 - Repeast 4-6 9 - Confirm a hold was placed Signed-off-by: Kelly --- acqui/addorder.pl | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/acqui/addorder.pl b/acqui/addorder.pl index c5b9847b01..7142d25046 100755 --- a/acqui/addorder.pl +++ b/acqui/addorder.pl @@ -338,6 +338,12 @@ if ( $basket->{is_standing} || $orderinfo->{quantity} ne '0' ) { STATUS => 'ORDERED', } ); + if ( C4::Context->preference('PlaceHoldsOnOrdersFromSuggestions') ) { + my $suggestion = Koha::Suggestions->find($suggestionid); + if ($suggestion) { + $suggestion->place_hold(); + } + } } $orderinfo->{unitprice} = $orderinfo->{ecost} if not defined $orderinfo->{unitprice} or $orderinfo->{unitprice} eq ''; -- 2.30.2