From 703df64061180a440ec6e002a171096d4ddacda5 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Mon, 9 Mar 2020 10:17:10 +0100 Subject: [PATCH] Bug 24151: Fix location on return The item's location where not passed to UpdateStat Signed-off-by: Signed-off-by: Sonia Bouis --- C4/Circulation.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/C4/Circulation.pm b/C4/Circulation.pm index 2c75ec68c4..bd9b8e16ba 100644 --- a/C4/Circulation.pm +++ b/C4/Circulation.pm @@ -2095,6 +2095,7 @@ sub AddReturn { type => $stat_type, itemnumber => $itemnumber, itemtype => $itemtype, + location => $item->location, borrowernumber => $borrowernumber, ccode => $item->ccode, }); -- 2.20.1