From bc61bbc7afd5647a6645e281e9a96a6e1c039396 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 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.20.1