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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/accounting.pref (-7 / +15 lines)
Lines 1-13 Link Here
1
Accounting:
1
Accounting:
2
    Policy:
2
    Policy:
3
        -
3
        -
4
            - pref: UseCashRegisters
5
              default: no
6
              choices:
7
                yes: "Use"
8
                no: "Don't use"
9
            - " cash registers with the accounting system to track payments."
10
        -
11
            - pref: AccountAutoReconcile
4
            - pref: AccountAutoReconcile
12
              choices:
5
              choices:
13
                  yes: "Do"
6
                  yes: "Do"
Lines 19-21 Accounting: Link Here
19
                  yes: "Do"
12
                  yes: "Do"
20
                  no: "Don't"
13
                  no: "Don't"
21
            - automatically display a print dialog for a payment receipt when making a payment.
14
            - automatically display a print dialog for a payment receipt when making a payment.
15
    Features:
16
        -
17
            - pref: UseCashRegisters
18
              default: no
19
              choices:
20
                yes: "Use"
21
                no: "Don't use"
22
            - " cash registers with the accounting system to track payments."
23
        -
24
            - pref: EnablePointOfSale
25
              default: no
26
              choices:
27
                yes: "Enable"
28
                no: "Disable"
29
            - " the point of sale feature to allow anonymous transactions with the accounting system. (Requires UseCashRegisters)"
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt (-2 / +1 lines)
Lines 80-86 Link Here
80
                    <div class="col-xs-6">
80
                    <div class="col-xs-6">
81
                        <ul class="biglinks-list">
81
                        <ul class="biglinks-list">
82
82
83
                            [% IF ( Koha.Preference('UseCashRegisters') && CAN_user_cash_management_takepayment ) %]
83
                            [% IF ( Koha.Preference('EnablePointOfSale') && Koha.Preference('UseCashRegisters') && CAN_user_cash_management_takepayment ) %]
84
                            <li>
84
                            <li>
85
                                <a class="icon_general icon_pos" href="/cgi-bin/koha/pos/pay.pl"><i class="fa fa-shopping-cart"></i>Point of sale</a>
85
                                <a class="icon_general icon_pos" href="/cgi-bin/koha/pos/pay.pl"><i class="fa fa-shopping-cart"></i>Point of sale</a>
86
                            </li>
86
                            </li>
87
- 

Return to bug 24477