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

(-)a/installer/data/mysql/atomicupdate/bug_13881.perl (+11 lines)
Line 0 Link Here
1
$DBversion = 'XXX';    # will be replaced by the RM
2
  if ( CheckVersion($DBversion) ) {
3
   
4
      $dbh->do(qq{
5
          INSERT IGNORE INTO systempreferences (variable,value,options,explanation,type) VALUES
6
          ('UseIssueDesks','0','','Use issue desks with circulation.','YesNo')
7
      });
8
   
9
      SetVersion($DBversion);
10
      print "Upgrade to $DBversion done (Bug 13881 - Add cash register system preference)\n";
11
  }
(-)a/installer/data/mysql/sysprefs.sql (+1 lines)
Lines 686-691 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
686
('useDischarge','','','Allows librarians to discharge borrowers and borrowers to request a discharge','YesNo'),
686
('useDischarge','','','Allows librarians to discharge borrowers and borrowers to request a discharge','YesNo'),
687
('UseEmailReceipts','0','','Send email receipts for payments and write-offs','YesNo'),
687
('UseEmailReceipts','0','','Send email receipts for payments and write-offs','YesNo'),
688
('UseICU','0','1','Tell Koha if ICU indexing is in use for Zebra or not.','YesNo'),
688
('UseICU','0','1','Tell Koha if ICU indexing is in use for Zebra or not.','YesNo'),
689
('UseIssueDesks','0','','Use issue desks with circulation.','YesNo'),
689
('UseTransportCostMatrix','0','','Use Transport Cost Matrix when filling holds','YesNo'),
690
('UseTransportCostMatrix','0','','Use Transport Cost Matrix when filling holds','YesNo'),
690
('UseWYSIWYGinSystemPreferences','0','','Show WYSIWYG editor when editing certain HTML system preferences.','YesNo'),
691
('UseWYSIWYGinSystemPreferences','0','','Show WYSIWYG editor when editing certain HTML system preferences.','YesNo'),
691
('viewISBD','1','','Allow display of ISBD view of bibiographic records','YesNo'),
692
('viewISBD','1','','Allow display of ISBD view of bibiographic records','YesNo'),
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/admin-home.tt (-2 / +4 lines)
Lines 63-70 Link Here
63
                        <dd>Define libraries.</dd>
63
                        <dd>Define libraries.</dd>
64
                        <dt><a href="/cgi-bin/koha/admin/library_groups.pl">Library groups</a></dt>
64
                        <dt><a href="/cgi-bin/koha/admin/library_groups.pl">Library groups</a></dt>
65
                        <dd>Define hierarchical library groups.</dd>
65
                        <dd>Define hierarchical library groups.</dd>
66
                        <dt><a href="/cgi-bin/koha/admin/desks.pl">Desks</a></dt>
67
                        <dd>Define desks</dd>
68
                    [% END %]
66
                    [% END %]
69
                    [% IF ( CAN_user_parameters_manage_itemtypes ) %]
67
                    [% IF ( CAN_user_parameters_manage_itemtypes ) %]
70
                        <dt><a href="/cgi-bin/koha/admin/itemtypes.pl">Item types</a></dt>
68
                        <dt><a href="/cgi-bin/koha/admin/itemtypes.pl">Item types</a></dt>
Lines 102-107 Link Here
102
                    <dt><a href="/cgi-bin/koha/admin/item_circulation_alerts.pl">Item circulation alerts</a></dt>
100
                    <dt><a href="/cgi-bin/koha/admin/item_circulation_alerts.pl">Item circulation alerts</a></dt>
103
                    <dd>Define rules for check-in and checkout notifications for combinations of libraries, patron categories, and item types</dd>
101
                    <dd>Define rules for check-in and checkout notifications for combinations of libraries, patron categories, and item types</dd>
104
                [% END %]
102
                [% END %]
103
                [% IF ( Koha.Preference('UseIssueDesks') && CAN_user_parameters_manage_libraries ) %]
104
                        <dt><a href="/cgi-bin/koha/admin/desks.pl">Issue desks</a></dt>
105
                        <dd>Define issue desks</dd>
106
                [% END %]
105
                [% IF ( CAN_user_parameters_manage_cities ) %]
107
                [% IF ( CAN_user_parameters_manage_cities ) %]
106
                    <dt><a href="/cgi-bin/koha/admin/cities.pl">Cities and towns</a></dt>
108
                    <dt><a href="/cgi-bin/koha/admin/cities.pl">Cities and towns</a></dt>
107
                    <dd>Define cities and towns that your patrons live in.</dd>
109
                    <dd>Define cities and towns that your patrons live in.</dd>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref (-1 / +6 lines)
Lines 156-161 Circulation: Link Here
156
                  yes: Allow
156
                  yes: Allow
157
                  no: "Don't allow"
157
                  no: "Don't allow"
158
            - patrons to submit notes about checked out items.
158
            - patrons to submit notes about checked out items.
159
        -
160
            - pref: UseIssueDesks
161
              choices:
162
                  yes: "Use"
163
                  no: "Don't use"
164
            - issue desks with circulation.
159
165
160
    Checkout policy:
166
    Checkout policy:
161
        -
167
        -
162
- 

Return to bug 13881