From f8a6a51d4c929de0eea5130dc7a30d26f3ab6775 Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Wed, 2 Dec 2020 14:21:27 +0000 Subject: [PATCH] Bug 26905: Purchase suggestion button hidden for users with suggestion permission but not acq permission This patch adds a link to purchase suggestions from the header menu's "More" submenu for users with suggestions management permission. To test, apply the patch and log in to the staff interface as a user with "suggestions_manage" permission. - Click the "More" menu item in the header. You should see a link to "Suggestions" which takes you to the suggestions management page. - Log in as a user without "suggestions_manage" permission. The link should not appear. Signed-off-by: Lucas Gass Signed-off-by: Martin Renvoize --- koha-tmpl/intranet-tmpl/prog/en/includes/header.inc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/header.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/header.inc index 09f66e9bc6..1b453b874f 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/header.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/header.inc @@ -52,6 +52,9 @@ [% IF ( CAN_user_reports ) %]
  • Reports
  • [% END %] + [% IF ( CAN_user_suggestions_suggestions_manage ) %] +
  • Suggestions
  • + [% END %] [% IF ( CAN_user_tools ) %]
  • Tools
  • [% END %] -- 2.20.1