From 5e1c8a05420cd0e252a6b53e6592112867f04623 Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Fri, 24 Nov 2023 13:06:37 +0000 Subject: [PATCH] Bug 35398: Fix LRP support for EDI orders with single items This patch corrects a mistake in the original implementaiton of bug 20595 where we introduced support for the LRP segments being used to automatically assign items ordered via EDI to stock rotation plans. Signed-off-by: Sophie Halden Signed-off-by: Kyle M Hall --- Koha/EDI.pm | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/Koha/EDI.pm b/Koha/EDI.pm index ceb9a2ccd41..0c71f50ede0 100644 --- a/Koha/EDI.pm +++ b/Koha/EDI.pm @@ -829,6 +829,22 @@ sub quote_item { } ); ++$created; + + my $lrp = + $item->girfield( 'library_rotation_plan' ); + if ($lrp) { + my $rota = + Koha::StockRotationRotas->find( { title => $lrp }, + { key => 'stockrotationrotas_title' } ); + if ($rota) { + $rota->add_item($itemnumber); + $logger->trace("Item added to rota $rota->id"); + } + else { + $logger->error( + "No rota found matching $lrp in orderline"); + } + } } } } -- 2.30.2