From 08052e900821982d7b485f031b9209e8097c06ab Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Tue, 1 Nov 2022 14:23:17 +0000 Subject: [PATCH] Bug 31713: (follow-up) Display print option for any outstanding Prior to this patch we only allowed printing if the balance was owed to the library.. This patch exposes the option when the patron is owed too. Signed-off-by: Martin Renvoize Signed-off-by: Katrin Fischer --- koha-tmpl/intranet-tmpl/prog/en/includes/members-toolbar.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/members-toolbar.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/members-toolbar.inc index dce463ab9b..311044ad71 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/members-toolbar.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/members-toolbar.inc @@ -24,7 +24,7 @@
  • Print summary
  • Print slip
  • Print quick slip
  • - [% IF patron.account_balance > 0 %] + [% IF patron.account_balance != 0 %]
  • Print account balance
  • [% END %] [% IF patron.has_overdues %] -- 2.30.2