From c774f3797020fdf1c7bc4b904e5c8873b525eb03 Mon Sep 17 00:00:00 2001 From: Charles Farmer Date: Mon, 19 Feb 2018 15:00:33 -0500 Subject: [PATCH] Bug 20249: "Patron has no outstanding fines" now appears alongside fines Test plan: 1) Choose two patrons from your database, one who has fines, and the other who does not 2) Visit their 'Fines' page, and click on the 'Pay fines' tab 2.1) If they don't have any fines, you'll only see a blank row 2.2) If they do have fines, the payment form will appear, but the text "... no outstanding fines" will also appear 3) Apply patch 4) Visit once again the 'Pay fines' tab of your patrons 4.1) Now, "... no outstanding fines" will appear for the right situation --- koha-tmpl/intranet-tmpl/prog/en/modules/members/pay.tt | 1 + 1 file changed, 1 insertion(+) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/pay.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/pay.tt index 18e64fc..34b6d11 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/pay.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/pay.tt @@ -123,6 +123,7 @@ Cancel +[% ELSE %]

[% patron.firstname |html %] [% patron.surname |html %] has no outstanding fines.

[% END %] -- 2.7.4