@@ -, +, @@ circulate_remaining_permissions - checkouts tab is hidden - details tab is visible - holds tab on details is visible, but results in an error - Create 2 staff users with and without circulate_remaining_permissions Both need borrowers permission - Go to the details tab in a patron's account who has holds - Verify that you get a datatables error for the staff patron without circulate_remaining_permissions - Apply patch - Verify that now the holds tab is no longer displayed for this patron --- koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tt @@ -412,6 +412,7 @@
  • Relatives' checkouts
  • [% END %]
  • Fines & Charges
  • + [% IF ( CAN_user_circulate_circulate_remaining_permissions ) %]
  • [% IF ( holds_count ) %] [% holds_count %] Hold(s) @@ -419,6 +420,7 @@ 0 Holds [% END %]
  • + [% END %] [% IF Koha.Preference('ArticleRequests') %]
  • [% patron.article_requests_current.count %] Article requests @@ -478,6 +480,7 @@ [% INCLUDE borrower_debarments.inc %] +[% IF ( CAN_user_circulate_circulate_remaining_permissions ) %]
    [% IF ( holds_count ) %]
    @@ -530,7 +533,7 @@ [% ELSE %]

    Patron has nothing on hold.

    [% END %]
    - +[% END %] [% IF Koha.Preference('ArticleRequests') %] [% INCLUDE 'patron-article-requests.inc' %] --