From: Terran McCanna Date: Mon, 25 Apr 2022 16:43:11 +0000 (-0400) Subject: Correction - user id rather than card id X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=210b69f7eebda2bacafc0d86cfc615b22b5a2d07;p=evergreen%2Fpines.git Correction - user id rather than card id Signed-off-by: Terran McCanna --- diff --git a/Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader/Account.pm b/Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader/Account.pm index f261bdf988..fa36a420d3 100644 --- a/Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader/Account.pm +++ b/Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader/Account.pm @@ -2331,7 +2331,7 @@ sub load_myopac_payment_form { my $intent = $stripe->api('post', 'payment_intents', amount => $self->ctx->{fines}->{balance_owed} * 100, currency => $currency || 'usd', - description => 'PINES User Database ID: ' . $self->ctx->{user}->card + description => 'PINES User Database ID: ' . $self->ctx->{user}->id ); if ($stripe->success) { $self->ctx->{stripe_client_secret} = $stripe->success()->{client_secret};