From 8798f7a548e36c14fd7dca4c789c8e30871bbd0d Mon Sep 17 00:00:00 2001 From: Bill Erickson Date: Wed, 29 May 2019 16:08:55 +0000 Subject: [PATCH] JBAS-2248 SIP patron fines shows last billing type Return the label of the last_billing_type for display of patron fines via SIP2 instead of last_billing_note, which is inconsistent and may not be intended for patron consumption. Signed-off-by: Bill Erickson --- Open-ILS/src/perlmods/lib/OpenILS/SIP/Patron.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/src/perlmods/lib/OpenILS/SIP/Patron.pm b/Open-ILS/src/perlmods/lib/OpenILS/SIP/Patron.pm index 9de94b82e3..6fa4029a57 100644 --- a/Open-ILS/src/perlmods/lib/OpenILS/SIP/Patron.pm +++ b/Open-ILS/src/perlmods/lib/OpenILS/SIP/Patron.pm @@ -941,7 +941,7 @@ sub fine_items { if ($xact->xact_type eq 'circulation') { $line .= "$title"; } else { - $line .= $xact->last_billing_note; + $line .= $xact->last_billing_type; } } elsif ($AV_format eq "swyer_b") { -- 2.11.0