From 1477fe1f49f4b45bf21da67c669ce066cacf02fd 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 Content-Type: text/plain; charset=utf-8 The item's location where not passed to UpdateStat Signed-off-by: Signed-off-by: Sonia Bouis Signed-off-by: Marcel de Rooy --- C4/Circulation.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/C4/Circulation.pm b/C4/Circulation.pm index 7a3b21b903..f1bf2bfba2 100644 --- a/C4/Circulation.pm +++ b/C4/Circulation.pm @@ -2100,6 +2100,7 @@ sub AddReturn { type => $stat_type, itemnumber => $itemnumber, itemtype => $itemtype, + location => $item->location, borrowernumber => $borrowernumber, ccode => $item->ccode, }); -- 2.11.0