From c80004831e528d8cc6b91ad146eecc34c621cd24 Mon Sep 17 00:00:00 2001 From: Lucas Gass Date: Thu, 7 Sep 2023 22:52:00 +0000 Subject: [PATCH] Bug 34377: Add managing librarain 1. From the patron Accounting tab > "Create manual credit". 2. From the patron Accounting tab > "Create manua 3. Go to the Transaction tab (members/boraccount.pl) and click the 'Details' button. 4. Do this for both a debit and a credit. 5. No info. about which librarain administered the credit/debit. 6. Apply patch 7. Try 3 -6 again, notice the table now shows which librarian administed the credit/debit. Signed-off-by: Martin Renvoize Signed-off-by: Tomas Cohen Arazi --- .../prog/en/modules/members/accountline-details.tt | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/accountline-details.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/accountline-details.tt index 894e712799..6d35df4f27 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/accountline-details.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/accountline-details.tt @@ -88,6 +88,7 @@ [% END %] Amount Outstanding + Librarian @@ -151,6 +152,16 @@ [% accountline.amountoutstanding | $Price %] + + [% IF accountline.manager_id %] + + [% IF accountline.manager.firstname %] + [% accountline.manager.firstname | html %] [% accountline.manager.surname | html %] + [% ELSE %] + [% accountline.manager.surname | html %] + [% END %] + + [% END %] -- 2.39.5