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 157-173 Link Here
157
    <dd>Access files stored on the server, like log files or reports</dd>
159
    <dd>Access files stored on the server, like log files or reports</dd>
158
    [% END %]
160
    [% END %]
159
161
160
    [% IF ( Koha.Preference('UseCashRegisters') && CAN_user_cash_management_cashup ) %]
161
        <dt><a href="/cgi-bin/koha/pos/registers.pl">Cashup registers</a></dt>
162
        <dd>Perform cashup actions on cash registers</dd>
163
    [% END %]
164
165
    [% IF ( Koha.Preference('OPACReportProblem') && CAN_user_problem_reports ) %]
162
    [% IF ( Koha.Preference('OPACReportProblem') && CAN_user_problem_reports ) %]
166
        <dt><a href="/cgi-bin/koha/tools/problem-reports.pl">OPAC problem reports</a></dt>
163
        <dt><a href="/cgi-bin/koha/tools/problem-reports.pl">OPAC problem reports</a></dt>
167
        <dd>Manage OPAC problem reports submitted by patrons</dd>
164
        <dd>Manage OPAC problem reports submitted by patrons</dd>
168
    [% END %]
165
    [% END %]
169
166
170
</dl>
167
</dl>
168
169
[% IF ( Koha.Preference('UseCashRegisters') && ( CAN_user_cash_management_cashup || CAN_user_cash_management_anonymous_refund ) ) %]
170
<h3>Cash management</h3>
171
<dl>
172
173
    <dt><a href="/cgi-bin/koha/pos/registers.pl">Cash summary for [% Branches.GetLoggedInBranchname | html %]</a></dt>
174
    <dd>View cash takings for the current library</dd>
175
176
    <dt><a href="/cgi-bin/koha/pos/register.pl">Transaction history for [% Registers.session_register_name | html %]</a></dt>
177
    <dd>View transaction history for the current cash register</dd>
178
179
</dl>
180
[% END %]
181
171
</div>
182
</div>
172
183
173
<div class="col-sm-4 col-sm-pull-4">
184
<div class="col-sm-4 col-sm-pull-4">
174
- 

Return to bug 27583