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

(-)a/installer/data/mysql/atomicupdate/bug_38924-patron_quotas.pl (-1 / +10 lines)
Lines 3-9 use Koha::Installer::Output qw(say_warning say_success say_info); Link Here
3
3
4
return {
4
return {
5
    bug_number  => "38924",
5
    bug_number  => "38924",
6
    description => "Add patron quota and quota_usage tables and permissions",
6
    description => "Add patron quota and quota_usage tables, permissions and system preferences for quotas",
7
    up          => sub {
7
    up          => sub {
8
        my ($args) = @_;
8
        my ($args) = @_;
9
        my ( $dbh, $out ) = @$args{qw(dbh out)};
9
        my ( $dbh, $out ) = @$args{qw(dbh out)};
Lines 58-62 return { Link Here
58
        } else {
58
        } else {
59
            say_info( $out, "Patron quota usage table already exists" );
59
            say_info( $out, "Patron quota usage table already exists" );
60
        }
60
        }
61
62
        $dbh->do(q{
63
            INSERT IGNORE INTO systempreferences (variable, value, options, explanation, type)
64
            VALUES 
65
            ('AllowQuotaOverride', '0', NULL, 'Allow staff to override and check out items to patrons who have exceeded their quota limit', 'YesNo'),
66
            ('UseGuarantorQuota', '0', NULL, 'Use guarantor quota instead of guarantee quota when checking out items', 'YesNo')
67
        });
68
69
        say_success( $out, "Patron quota preferences added successfully" );
61
    },
70
    },
62
};
71
};
(-)a/installer/data/mysql/mandatory/sysprefs.sql (+2 lines)
Lines 44-49 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
44
('AllowPatronToSetCheckoutsVisibilityForGuarantor',  '0', NULL, 'If enabled, the patron can set checkouts to be visible to their guarantor',  'YesNo'),
44
('AllowPatronToSetCheckoutsVisibilityForGuarantor',  '0', NULL, 'If enabled, the patron can set checkouts to be visible to their guarantor',  'YesNo'),
45
('AllowPatronToSetFinesVisibilityForGuarantor',  '0', NULL, 'If enabled, the patron can set fines to be visible to their guarantor',  'YesNo'),
45
('AllowPatronToSetFinesVisibilityForGuarantor',  '0', NULL, 'If enabled, the patron can set fines to be visible to their guarantor',  'YesNo'),
46
('AllowPKIAuth','None','None|Common Name|emailAddress','Use the field from a client-side SSL certificate to look a user in the Koha database','Choice'),
46
('AllowPKIAuth','None','None|Common Name|emailAddress','Use the field from a client-side SSL certificate to look a user in the Koha database','Choice'),
47
('AllowQuotaOverride','0','Allow staff to override and check out items to patrons who have exceeded their quota limit','','YesNo'),
48
('UseGuarantorQuota','0','Use guarantor quota instead of guarantee quota when checking out items if one exists and has enough quota available','','YesNo'),
47
('AllowRenewalIfOtherItemsAvailable','0',NULL,'If enabled, allow a patron to renew an item with unfilled holds if other available items can fill that hold.','YesNo'),
49
('AllowRenewalIfOtherItemsAvailable','0',NULL,'If enabled, allow a patron to renew an item with unfilled holds if other available items can fill that hold.','YesNo'),
48
('AllowRenewalLimitOverride','0',NULL,'if ON, allows renewal limits to be overridden on the circulation screen','YesNo'),
50
('AllowRenewalLimitOverride','0',NULL,'if ON, allows renewal limits to be overridden on the circulation screen','YesNo'),
49
('AllowRenewalOnHoldOverride','0',NULL,'If ON, allow items on hold to be renewed with a specified due date','YesNo'),
51
('AllowRenewalOnHoldOverride','0',NULL,'If ON, allow items on hold to be renewed with a specified due date','YesNo'),
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref (-1 / +12 lines)
Lines 389-394 Circulation: Link Here
389
                  1: Allow
389
                  1: Allow
390
                  0: "Don't allow"
390
                  0: "Don't allow"
391
            - staff to check out an item with age restriction.
391
            - staff to check out an item with age restriction.
392
        -
393
            - pref: AllowQuotaOverride
394
              choices:
395
                  1: "Allow"
396
                  0: "Don't allow" 
397
            - staff to check out items to patrons who have exceeded their quota limit.
398
        -
399
            - pref: UseGuarantorQuota
400
              choices:
401
                  1: "Use"
402
                  0: "Don't use"
403
            - guarantor's quota instead of guarantee's quota when checking out items if guarantor has an active quota and quota has enough availability.
392
        -
404
        -
393
            - Prevent patrons from checking out items if they have more than
405
            - Prevent patrons from checking out items if they have more than
394
            - pref: noissuescharge
406
            - pref: noissuescharge
395
- 

Return to bug 38924