From: Chris Sharp Date: Fri, 8 Jul 2022 18:56:54 +0000 (-0400) Subject: Revert "lp1965579 stop gap for negative bills in opac" X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=c84095f70c8cc157acd7d08c72d1101794d05181;p=evergreen%2Fpines.git Revert "lp1965579 stop gap for negative bills in opac" This reverts commit 7018281303cf2cec99a2845989563ea9c55192bd. --- diff --git a/Open-ILS/src/templates-bootstrap/opac/myopac/charges.tt2 b/Open-ILS/src/templates-bootstrap/opac/myopac/charges.tt2 index f3319c5a69..451fc0c170 100755 --- a/Open-ILS/src/templates-bootstrap/opac/myopac/charges.tt2 +++ b/Open-ILS/src/templates-bootstrap/opac/myopac/charges.tt2 @@ -168,7 +168,7 @@ - [% c = 0; neg_or_zero = 0; %] + [% c = 0; %] [% FOR f IN ctx.fines.grocery %] [% c = c + 1; %] @@ -185,7 +185,6 @@ [% money(f.xact.balance_owed) %] - [% IF f.xact.balance_owed <= 0; neg_or_zero = neg_or_zero + 1; END %] @@ -216,15 +215,12 @@ [% UNLESS ctx.fines.grocery.size OR ctx.fines.circulation.size %]
[% l('You have no current fines.') %]
[% ELSIF myopac_cc_allowed %] - [% IF neg_or_zero > 0 %] -
[% l('There are negative bills on your account that must be resolved before you are able to make a payment. Please contact your library for assistance.') %] - [% ELSE %] -
- - -
- [% END %] + +
+ + +
[% END %] [% IF myopac_cc_allowed %] diff --git a/Open-ILS/src/templates/opac/myopac/main.tt2 b/Open-ILS/src/templates/opac/myopac/main.tt2 index b4bd72f858..c663bce895 100644 --- a/Open-ILS/src/templates/opac/myopac/main.tt2 +++ b/Open-ILS/src/templates/opac/myopac/main.tt2 @@ -154,7 +154,6 @@ - [% neg_or_zero = 0; %] [% FOR f IN ctx.fines.grocery %] @@ -170,7 +169,6 @@ [% money(f.xact.balance_owed) %] - [% IF f.xact.balance_owed <= 0; neg_or_zero = neg_or_zero + 1; END %] [% f.xact.last_billing_type %] @@ -194,16 +192,12 @@ [% UNLESS ctx.fines.grocery.size OR ctx.fines.circulation.size %]
[% l('You have no current fines.') %]
[% ELSIF myopac_cc_allowed %] - [% IF neg_or_zero > 0 %] -
[% l('There are negative bills on your account that must be resolved before you are able to make a payment. Please contact your library for assistance.') %] - [% ELSE %] -
- -
- [% END %] +
+ +
[% END %] [% IF myopac_cc_allowed %] diff --git a/docs/RELEASE_NOTES_NEXT/miscellaneous.adoc b/docs/RELEASE_NOTES_NEXT/miscellaneous.adoc index 55e809f5d4..e69de29bb2 100644 --- a/docs/RELEASE_NOTES_NEXT/miscellaneous.adoc +++ b/docs/RELEASE_NOTES_NEXT/miscellaneous.adoc @@ -1,5 +0,0 @@ -* The patron record juvenile flag is now available to the checkout and - items out print templates. -* The Notices / Action Triggers administration interface (under Local - Administration) is ported to Angular. -* Disallow payments via the OPAC if negative or zero billings are present.