Koha/koha-tmpl/intranet-tmpl/prog/en/includes/pos-menu.inc
Martin Renvoize da24b92793 Bug 27583: Proposed terminology changes
This patch impliments some terminology changes and clarifications for
the cash management system

Test plan
1/ Apply the patches
2/ Enable 'UseCashRegisters'
3/ Navigate around the cash management system (via the Tools menu)
4/ Enable 'EnablePointOfSale'
5/ Navigate around the cash management system (via the Point of sale
module)
6/ Comment on what you think about the changes

Signed-off-by: Sally <sally.healey@cheshiresharedservices.gov.uk>

Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
2021-07-26 12:46:32 +02:00

28 lines
1.2 KiB
HTML

[% USE Branches %]
[% USE Registers %]
<div id="navmenu">
<div id="navmenulist">
[% IF ( CAN_user_cash_management_cashup || CAN_user_cash_management_anonymous_refund ) %]
<h5>Cash management</h5>
<ul>
<li><a href="/cgi-bin/koha/pos/pay.pl">Point of sale</a></li>
[% IF !(Registers.session_register_name == '') %]
<li><a href="/cgi-bin/koha/pos/register.pl">Transaction history for [% Registers.session_register_name | html %]</a></li>
[% END %]
<li><a href="/cgi-bin/koha/pos/registers.pl">Cash summary for [% Branches.GetLoggedInBranchname | html %]</a></li>
</ul>
[% END %]
[% IF ( CAN_user_parameters_manage_cash_registers || CAN_user_parameters_manage_accounts) %]
<h5>Administration</h5>
<ul>
[% IF ( CAN_user_parameters_manage_cash_registers ) %]
<li><a href="/cgi-bin/koha/admin/cash_registers.pl">Configure cash registers</a></li>
[% END %]
[% IF ( CAN_user_parameters_manage_accounts ) %]
<li><a href="/cgi-bin/koha/admin/debit_types.pl">Configure items for purchase</a></li>
[% END %]
</ul>
[% END %]
</div>
</div>