From b18f9432768db90e8cefac4970c7854378fc19f7 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Thu, 10 Jan 2019 14:32:22 -0500 Subject: [PATCH] Bug 22097: CataloguingLog should be suppressed for item branch transfers Bug 18816 missed the fact that a branch transfer triggers ModItem and thus generates an action log line. We should not be creating those action logs, especially considering the transfers table itself already documents the transfer. Test Plan: 1) Enable CataloguingLog 2) Transfer an item to another branch 3) Note the new action log line created 4) Apply this patch 5) Create another item transfer 6) No new action log line should be created! Signed-off-by: Owen Leonard Signed-off-by: Katrin Fischer --- C4/Items.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C4/Items.pm b/C4/Items.pm index 3e7069be2c..10860b5163 100644 --- a/C4/Items.pm +++ b/C4/Items.pm @@ -623,7 +623,7 @@ sub ModItemTransfer { VALUES (?, ?, NOW(), ?)"); $sth->execute($itemnumber, $frombranch, $tobranch); - ModItem({ holdingbranch => $tobranch }, undef, $itemnumber); + ModItem({ holdingbranch => $tobranch }, undef, $itemnumber, { log_action => 0 }); ModDateLastSeen($itemnumber); return; } -- 2.11.0