From: Bill Erickson Date: Wed, 29 May 2019 16:08:55 +0000 (+0000) Subject: JBAS-2248 SIP patron fines shows last billing type X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=8798f7a548e36c14fd7dca4c789c8e30871bbd0d;p=working%2FEvergreen.git 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 --- 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") {