From 4d4ac215e193ae3871c8cb9a21dd3f0d4035cc8a Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Tue, 3 Mar 2020 11:39:38 -0300 Subject: [PATCH] Bug 24790: Add POS to the 'More' dropdown on the staff client This trivial patch adds 'Point of sale' to the dropdown. To test: 1. Notice there is no 'Point of sale' entry in the staff dropdown => FAIL: No dropdown 2. Apply this patch and reload => SUCCESS: Point of sale displays and works 3. Play with enabling/disabling the feature and removing permissions => SUCCESS: The entry in the dropdown respects the configured permissions and settings. 4. Sign off :-D Signed-off-by: George Williams Signed-off-by: Sally --- 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 512f274662..6b4452641a 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/header.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/header.inc @@ -53,6 +53,9 @@ [% IF ( CAN_user_tools ) %]
  • Tools
  • [% END %] + [% IF ( Koha.Preference('EnablePointOfSale') && Koha.Preference('UseCashRegisters') && CAN_user_cash_management_takepayment ) %] +
  • Point of sale
  • + [% END %] [% IF ( CAN_user_parameters ) %]
  • Administration
  • [% END %] -- 2.11.0