@@ -, +, @@ - Be superlibrarian or have serials permission - Make sure you have one or more subscriptions linked to vendors - Go to the vendor's detail page in acquisitions - Verify the number of subscriptions is now a link - Verify the search results are correct when clicking on it - Remove permissions (no serials, not superlibrarian) - Verify now the number shows, but is not linked --- koha-tmpl/intranet-tmpl/prog/en/modules/acqui/supplier.tt | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/supplier.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/supplier.tt @@ -334,7 +334,13 @@

Subscription details

-

Number of subscriptions: [% subscriptioncount | html %]

+

Number of subscriptions: + [% IF ( CAN_user_serials ) %] + [% subscriptioncount | html %] + [% ELSE %] + [% subscriptioncount | html %] + [% END %] +

--