Koha/koha-tmpl/intranet-tmpl/prog/en/includes/pos-menu.inc
Katrin Fischer ca452f07d5
Bug 25138: Terminology: Point of sale should use library instead of branch
This fixes the navigation on the Point of sale page:
Branch details => Library details

And the heading and the 'no register defined for this branch/library'
message on the page it links to.

To test:
- Activate cash registers and point of sales features
- Go to the point of sales page
- Verify text on the menu to the left
- Click on the Branch/library details - verify text and heading

Signed-off-by: Devinim <kohadevinim@devinim.com.tr>
Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
2020-04-17 13:50:23 +01:00

23 lines
958 B
HTML

<div id="navmenu">
<div id="navmenulist">
[% IF ( CAN_user_cash_management_cashup || CAN_user_cash_management_anonymous_refund ) %]
<h5>Point of sale</h5>
<ul>
<li><a href="/cgi-bin/koha/pos/register.pl">Register details</a></li>
<li><a href="/cgi-bin/koha/pos/registers.pl">Library details</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>