@@ -, +, @@
---
.../prog/en/includes/pos-menu.inc | 11 +++++++---
.../prog/en/modules/pos/register.tt | 6 +++---
.../prog/en/modules/pos/registers.tt | 6 +++---
.../prog/en/modules/tools/tools-home.tt | 21 ++++++++++++++-----
4 files changed, 30 insertions(+), 14 deletions(-)
--- a/koha-tmpl/intranet-tmpl/prog/en/includes/pos-menu.inc
+++ a/koha-tmpl/intranet-tmpl/prog/en/includes/pos-menu.inc
@@ -1,10 +1,15 @@
+[% USE Branches %]
+[% USE Registers %]
[% END %]
- Library transaction details for [% library.branchname | html %]
+ Cash summary for [% library.branchname | html %]
Summary
--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/tools-home.tt
+++ a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/tools-home.tt
@@ -1,4 +1,6 @@
[% USE Koha %]
+[% USE Branches %]
+[% USE Registers %]
[% INCLUDE 'doc-head-open.inc' %]
Tools › Koha
@@ -153,17 +155,26 @@
- Access files stored on the server, like log files or reports
[% END %]
- [% IF ( Koha.Preference('UseCashRegisters') && CAN_user_cash_management_cashup ) %]
- - Cashup registers
- - Perform cashup actions on cash registers
- [% END %]
-
[% IF ( Koha.Preference('OPACReportProblem') && CAN_user_problem_reports ) %]
- OPAC problem reports
- Manage OPAC problem reports submitted by patrons
[% END %]
+
+[% IF ( Koha.Preference('UseCashRegisters') && ( CAN_user_cash_management_cashup || CAN_user_cash_management_anonymous_refund ) ) %]
+Cash management
+
+
+ - Cash summary for [% Branches.GetLoggedInBranchname | html %]
+ - View cash takings for the current library
+
+ - Transaction history for [% Registers.session_register_name | html %]
+ - View transaction history for the current cash register
+
+
+[% END %]
+
--