Bugzilla – Attachment 160406 Details for
Bug 35398
EDI: Fix support for LRP (Library Rotation Plan) for Koha with Stock Rotation enabled
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 35398: Fix LRP support for EDI orders with single items
Bug-35398-Fix-LRP-support-for-EDI-orders-with-sing.patch (text/plain), 1.55 KB, created by
Kyle M Hall (khall)
on 2024-01-02 14:11:41 UTC
(
hide
)
Description:
Bug 35398: Fix LRP support for EDI orders with single items
Filename:
MIME Type:
Creator:
Kyle M Hall (khall)
Created:
2024-01-02 14:11:41 UTC
Size:
1.55 KB
patch
obsolete
>From 5e1c8a05420cd0e252a6b53e6592112867f04623 Mon Sep 17 00:00:00 2001 >From: Martin Renvoize <martin.renvoize@ptfs-europe.com> >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 <sophie.halden@cheshiresharedservices.gov.uk> > >Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> >--- > 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
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 35398
:
159240
|
160350
|
160352
|
160406
|
160407
|
162541
|
162542
|
162543
|
162544