From 4ee54850effccd677df42e44447e758e7bb15f1d Mon Sep 17 00:00:00 2001 From: Aleisha Amohia Date: Tue, 22 Sep 2020 09:37:34 +1200 Subject: [PATCH] Bug 12224: (follow-up) Access old_issues table when editing notice MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This QA follow-up allows access to the old_issues table when editing the notice in Tools. Signed-off-by: Alexandra Speer Signed-off-by: Katrin Fischer Signed-off-by: Christian Stelzenmüller Signed-off-by: Martin Renvoize --- tools/letter.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/letter.pl b/tools/letter.pl index 0e7d23536d..20eb74771b 100755 --- a/tools/letter.pl +++ b/tools/letter.pl @@ -252,7 +252,7 @@ sub add_form { } - if ( $module eq 'circulation' and $code and $code eq "CHECKIN" ) { + if ( $module eq 'circulation' and $code and ( $code eq "CHECKIN" or $code eq "CHECKINSLIP" ) ) { push @{$field_selection}, add_fields('old_issues'); } else { push @{$field_selection}, add_fields('issues'); -- 2.20.1