View | Details | Raw Unified | Return to bug 27583
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/pos-menu.inc (-3 / +8 lines)
Lines 1-10 Link Here
1
[% USE Branches %]
2
[% USE Registers %]
1
<div id="navmenu">
3
<div id="navmenu">
2
    <div id="navmenulist">
4
    <div id="navmenulist">
3
        [% IF ( CAN_user_cash_management_cashup || CAN_user_cash_management_anonymous_refund ) %]
5
        [% IF ( CAN_user_cash_management_cashup || CAN_user_cash_management_anonymous_refund ) %]
4
        <h5>Point of sale</h5>
6
        <h5>Cash management</h5>
5
        <ul>
7
        <ul>
6
            <li><a href="/cgi-bin/koha/pos/register.pl">Register details</a></li>
8
            <li><a href="/cgi-bin/koha/pos/pay.pl">Point of sale</a></li>
7
            <li><a href="/cgi-bin/koha/pos/registers.pl">Library details</a></li>
9
            [% IF !(Registers.session_register_name == '') %]
10
            <li><a href="/cgi-bin/koha/pos/register.pl">Transaction history for [% Registers.session_register_name | html %]</a></li>
11
            [% END %]
12
            <li><a href="/cgi-bin/koha/pos/registers.pl">Cash summary for [% Branches.GetLoggedInBranchname | html %]</a></li>
8
        </ul>
13
        </ul>
9
        [% END %]
14
        [% END %]
10
        [% IF ( CAN_user_parameters_manage_cash_registers || CAN_user_parameters_manage_accounts) %]
15
        [% IF ( CAN_user_parameters_manage_cash_registers || CAN_user_parameters_manage_accounts) %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/pos/register.tt (-3 / +3 lines)
Lines 22-32 Link Here
22
            <a href="/cgi-bin/koha/mainpage.pl">Home</a>
22
            <a href="/cgi-bin/koha/mainpage.pl">Home</a>
23
        </li>
23
        </li>
24
        <li>
24
        <li>
25
            <a href="/cgi-bin/koha/pos/pay.pl">Point of sale</a>
25
            <a href="/cgi-bin/koha/pos/pay.pl">Cash management</a>
26
        </li>
26
        </li>
27
        <li>
27
        <li>
28
            <a href="#" aria-current="page">
28
            <a href="#" aria-current="page">
29
                Register details
29
                Transaction history for [% register.name | html %]
30
            </a>
30
            </a>
31
        </li>
31
        </li>
32
    </ol>
32
    </ol>
Lines 68-74 Link Here
68
            </div>
68
            </div>
69
            [% END %]
69
            [% END %]
70
70
71
            <h1>Register transaction details for [% register.name | html %]</h1>
71
            <h1>Transaction history for [% register.name | html %]</h1>
72
72
73
            <h2>Summary</h2>
73
            <h2>Summary</h2>
74
            <ul>
74
            <ul>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/pos/registers.tt (-3 / +3 lines)
Lines 19-29 Link Here
19
                <a href="/cgi-bin/koha/mainpage.pl">Home</a>
19
                <a href="/cgi-bin/koha/mainpage.pl">Home</a>
20
            </li>
20
            </li>
21
            <li>
21
            <li>
22
                <a href="/cgi-bin/koha/pos/pay.pl">Point of sale</a>
22
                <a href="/cgi-bin/koha/pos/pay.pl">Cash management</a>
23
            </li>
23
            </li>
24
            <li>
24
            <li>
25
                <a href="#" aria-current="page">
25
                <a href="#" aria-current="page">
26
                    Library details
26
                    Cash summary for [% library.branchname | html %]
27
                </a>
27
                </a>
28
            </li>
28
            </li>
29
        </ol>
29
        </ol>
Lines 59-65 Link Here
59
                    </div>
59
                    </div>
60
                    [% END %]
60
                    [% END %]
61
61
62
                    <h1>Library transaction details for [% library.branchname | html %]</h1>
62
                    <h1>Cash summary for [% library.branchname | html %]</h1>
63
63
64
                    <h2>Summary</h2>
64
                    <h2>Summary</h2>
65
                    <ul>
65
                    <ul>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/tools-home.tt (-6 / +16 lines)
Lines 1-4 Link Here
1
[% USE Koha %]
1
[% USE Koha %]
2
[% USE Branches %]
3
[% USE Registers %]
2
4
3
[% INCLUDE 'doc-head-open.inc' %]
5
[% INCLUDE 'doc-head-open.inc' %]
4
<title>Tools &rsaquo; Koha</title>
6
<title>Tools &rsaquo; Koha</title>
Lines 153-169 Link Here
153
    <dd>Access files stored on the server, like log files or reports</dd>
155
    <dd>Access files stored on the server, like log files or reports</dd>
154
    [% END %]
156
    [% END %]
155
157
156
    [% IF ( Koha.Preference('UseCashRegisters') && CAN_user_cash_management_cashup ) %]
157
        <dt><a href="/cgi-bin/koha/pos/registers.pl">Cashup registers</a></dt>
158
        <dd>Perform cashup actions on cash registers</dd>
159
    [% END %]
160
161
    [% IF ( Koha.Preference('OPACReportProblem') && CAN_user_problem_reports ) %]
158
    [% IF ( Koha.Preference('OPACReportProblem') && CAN_user_problem_reports ) %]
162
        <dt><a href="/cgi-bin/koha/tools/problem-reports.pl">OPAC problem reports</a></dt>
159
        <dt><a href="/cgi-bin/koha/tools/problem-reports.pl">OPAC problem reports</a></dt>
163
        <dd>Manage OPAC problem reports submitted by patrons</dd>
160
        <dd>Manage OPAC problem reports submitted by patrons</dd>
164
    [% END %]
161
    [% END %]
165
162
166
</dl>
163
</dl>
164
165
[% IF ( Koha.Preference('UseCashRegisters') && ( CAN_user_cash_management_cashup || CAN_user_cash_management_anonymous_refund ) ) %]
166
<h3>Cash management</h3>
167
<dl>
168
169
    <dt><a href="/cgi-bin/koha/pos/registers.pl">Cash summary for [% Branches.GetLoggedInBranchname | html %]</a></dt>
170
    <dd>View cash takings for the current library</dd>
171
172
    <dt><a href="/cgi-bin/koha/pos/register.pl">Transaction history for [% Registers.session_register_name | html %]</a></dt>
173
    <dd>View transaction history for the current cash register</dd>
174
175
</dl>
176
[% END %]
177
167
</div>
178
</div>
168
179
169
<div class="col-sm-4 col-sm-pull-4">
180
<div class="col-sm-4 col-sm-pull-4">
170
- 

Return to bug 27583