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

(-)a/installer/data/mysql/atomicupdate/bug_30728.pl (+15 lines)
Line 0 Link Here
1
use Modern::Perl;
2
3
return {
4
    bug_number  => "30728",
5
    description => "Allow opting out of real-time holds queue updating possible",
6
    up => sub {
7
        my ($args) = @_;
8
        my ($dbh) = @$args{qw(dbh)};
9
10
        $dbh->do(q{
11
            INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES
12
            ('RealTimeHoldsQueue', '1', NULL, 'Enable updating the holds queue in real time.', 'YesNo')
13
        });
14
    },
15
};
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref (-1 / +6 lines)
Lines 681-686 Circulation: Link Here
681
                  actual: "the actual priority, which may be out of order"
681
                  actual: "the actual priority, which may be out of order"
682
                  virtual: "'virtual' priorities, where each group is numbered separately"
682
                  virtual: "'virtual' priorities, where each group is numbered separately"
683
            - "."
683
            - "."
684
        -
685
            - pref: RealTimeHoldsQueue
686
              choices:
687
                  1: Enable
688
                  0: Disable
689
            - updating the holds queue in real time.
684
        -
690
        -
685
            - pref: AllowHoldItemTypeSelection
691
            - pref: AllowHoldItemTypeSelection
686
              choices:
692
              choices:
687
- 

Return to bug 30728