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

(-)a/C4/Circulation.pm (-50 / +65 lines)
Lines 69-75 use Koha::Patron::Quota; Link Here
69
use Koha::Patron::Quota::Usage;
69
use Koha::Patron::Quota::Usage;
70
use Koha::Patron::Quota::Usages;
70
use Koha::Patron::Quota::Usages;
71
71
72
use Carp qw( carp );
72
use Carp            qw( carp );
73
use List::MoreUtils qw( any );
73
use List::MoreUtils qw( any );
74
use Scalar::Util    qw( looks_like_number blessed );
74
use Scalar::Util    qw( looks_like_number blessed );
75
use Date::Calc      qw( Date_to_Days );
75
use Date::Calc      qw( Date_to_Days );
Lines 1356-1381 sub CanBookBeIssued { Link Here
1356
    }
1356
    }
1357
1357
1358
    # CHECK FOR QUOTAS
1358
    # CHECK FOR QUOTAS
1359
    if ( my $quotas = $patron->all_quotas->filter_by_active ) {
1359
    if ( C4::Context->preference('EnableCirculationQuotas') ) {
1360
        if ( $quotas->count > 1 ) {
1360
        if ( my $quotas = $patron->all_quotas->filter_by_active ) {
1361
1361
            if ( $quotas->count > 1 ) {
1362
            # Multiple available quotas found - need confirmation from user
1362
1363
            $needsconfirmation{QUOTA_SELECT} = $quotas;
1363
                # Multiple available quotas found - need confirmation from user
1364
        } elsif ( $quotas->count == 1 ) {
1364
                $needsconfirmation{QUOTA_SELECT} = $quotas;
1365
            my $quota = $quotas->next;
1365
            } elsif ( $quotas->count == 1 ) {
1366
            if ( !$quota->has_available_quota ) {
1366
                my $quota = $quotas->next;
1367
                if ( C4::Context->preference("AllowQuotaOverride") ) {
1367
                if ( !$quota->has_available_quota ) {
1368
                    $needsconfirmation{QUOTA_EXCEEDED} = {
1368
                    if ( C4::Context->preference("AllowQuotaOverride") ) {
1369
                        available => $quota->available_quota,
1369
                        $needsconfirmation{QUOTA_EXCEEDED} = {
1370
                        total     => $quota->allocation,
1370
                            available => $quota->available_quota,
1371
                        used      => $quota->used,
1371
                            total     => $quota->allocation,
1372
                    };
1372
                            used      => $quota->used,
1373
                } else {
1373
                        };
1374
                    $issuingimpossible{QUOTA_EXCEEDED} = {
1374
                    } else {
1375
                        available => $quota->available_quota,
1375
                        $issuingimpossible{QUOTA_EXCEEDED} = {
1376
                        total     => $quota->allocation,
1376
                            available => $quota->available_quota,
1377
                        used      => $quota->used,
1377
                            total     => $quota->allocation,
1378
                    };
1378
                            used      => $quota->used,
1379
                        };
1380
                    }
1379
                }
1381
                }
1380
            }
1382
            }
1381
        }
1383
        }
Lines 1933-1951 sub AddIssue { Link Here
1933
                if C4::Context->preference('RealTimeHoldsQueue');
1935
                if C4::Context->preference('RealTimeHoldsQueue');
1934
1936
1935
            # Check quotas and record usage if needed
1937
            # Check quotas and record usage if needed
1936
            my $quota;
1938
            if ( C4::Context->preference('EnableCirculationQuotas') ) {
1937
            if ($selected_quota_id) {
1939
                my $quota;
1938
                $quota = Koha::Patron::Quotas->find($selected_quota_id);
1940
                if ($selected_quota_id) {
1939
            } else {
1941
                    $quota = Koha::Patron::Quotas->find($selected_quota_id);
1940
                $quota = $patron->all_quotas->filter_by_active->single;
1942
                } else {
1941
            }
1943
                    $quota = $patron->all_quotas->filter_by_active->single;
1944
                }
1945
1946
                if ($quota) {
1942
1947
1943
            if ($quota) {
1948
                    # Update patron's used quota value
1944
              # Update patron's used quota value
1949
                    $quota->add_usage(
1945
              $quota->add_usage({
1950
                        {
1946
                    patron_id => $patron->patron_id, 
1951
                            patron_id => $patron->borrowernumber,
1947
                    issue_id => $issue->issue_id,
1952
                            issue_id  => $issue->issue_id,
1948
                });
1953
                        }
1954
                    );
1955
                }
1949
            }
1956
            }
1950
        }
1957
        }
1951
    }
1958
    }
Lines 3284-3301 sub CanBookBeRenewed { Link Here
3284
        }
3291
        }
3285
    }
3292
    }
3286
3293
3287
    # # CHECK FOR QUOTAS  
3294
    # # CHECK FOR QUOTAS
3288
    if ( my $quota_usage = Koha::Patron::Quota::Usages->find( { issue_id => $issue->issue_id } ) ) {
3295
    if ( C4::Context->preference('EnableCirculationQuotas') ) {
3296
        if ( my $quota_usage = Koha::Patron::Quota::Usages->find( { issue_id => $issue->issue_id } ) ) {
3289
3297
3290
        # Get current actives quota for the patron
3298
            # Get current actives quota for the patron
3291
        if ( my $active_quotas = $patron->all_quotas->filter_by_active ) {
3299
            if ( my $active_quotas = $patron->all_quotas->filter_by_active ) {
3292
            my $all_exceeded = 1;
3300
                my $all_exceeded = 1;
3293
            while ( my $active_quota = $active_quotas->next ) {
3301
                while ( my $active_quota = $active_quotas->next ) {
3294
                if ( $active_quota->has_available_quota ) {
3302
                    if ( $active_quota->has_available_quota ) {
3295
                    $all_exceeded = 0;
3303
                        $all_exceeded = 0;
3304
                    }
3296
                }
3305
                }
3306
                return ( 0, "QUOTA_EXCEEDED" ) if $all_exceeded;
3297
            }
3307
            }
3298
            return ( 0, "QUOTA_EXCEEDED" ) if $all_exceeded;
3299
        }
3308
        }
3300
    }
3309
    }
3301
3310
Lines 3412-3425 sub AddRenewal { Link Here
3412
    my $circ_library = Koha::Libraries->find( _GetCircControlBranch( $item_object, $patron ) );
3421
    my $circ_library = Koha::Libraries->find( _GetCircControlBranch( $item_object, $patron ) );
3413
3422
3414
    # Check quotas and record usage if needed
3423
    # Check quotas and record usage if needed
3415
    if (my $quota_usage = Koha::Patron::Quota::Usages->find({ issue_id => $issue->issue_id })) {
3424
    if ( C4::Context->preference('EnableCirculationQuotas') ) {
3416
        # Get current active quota for the patron
3425
        if ( my $quota_usage = Koha::Patron::Quota::Usages->find( { issue_id => $issue->issue_id } ) ) {
3417
        if (my $active_quota = Koha::Patron::Quotas->find($quota_usage->patron_quota_id)) {
3426
3418
            # Update patron's used quota value
3427
            # Get current active quota for the patron
3419
                $active_quota->add_usage({
3428
            if ( my $active_quota = Koha::Patron::Quotas->find( $quota_usage->patron_quota_id ) ) {
3420
                    patron_id => $patron->borrowernumber,
3429
3421
                    issue_id  => $issue->issue_id,
3430
                # Update patron's used quota value
3422
                });
3431
                $active_quota->add_usage(
3432
                    {
3433
                        patron_id => $patron->borrowernumber,
3434
                        issue_id  => $issue->issue_id,
3435
                    }
3436
                );
3437
            }
3423
        }
3438
        }
3424
    }
3439
    }
3425
3440
(-)a/installer/data/mysql/atomicupdate/bug_38924-patron_quotas.pl (-11 / +17 lines)
Lines 25-45 return { Link Here
25
                ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
25
                ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
26
                }
26
                }
27
            );
27
            );
28
            
28
29
            $dbh->do(q{
29
            $dbh->do(
30
                q{
30
                INSERT IGNORE INTO permissions (module_bit, code, description) VALUES
31
                INSERT IGNORE INTO permissions (module_bit, code, description) VALUES
31
                (4, 'manage_borrower_quotas', 'Manage patron quotas'),
32
                (4, 'manage_borrower_quotas', 'Manage patron quotas'),
32
                (4, 'view_borrower_quotas', 'View patron quotas')
33
                (4, 'view_borrower_quotas', 'View patron quotas')
33
            });
34
            }
34
            
35
            );
36
35
            say_success( $out, "Patron quota table and permissions created successfully" );
37
            say_success( $out, "Patron quota table and permissions created successfully" );
36
        } else {
38
        } else {
37
            say_info( $out, "Patron quota table already exists" );
39
            say_info( $out, "Patron quota table already exists" );
38
        }
40
        }
39
41
40
        unless ( TableExists('patron_quota_usage') )
42
        unless ( TableExists('patron_quota_usage') ) {
41
        {
43
            $dbh->do(
42
            $dbh->do(q{
44
                q{
43
                CREATE TABLE `patron_quota_usage` (
45
                CREATE TABLE `patron_quota_usage` (
44
                  `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'unique identifier for quota usage record',
46
                  `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'unique identifier for quota usage record',
45
                  `patron_quota_id` int(11) NOT NULL COMMENT 'foreign key linking to patron_quota.id',
47
                  `patron_quota_id` int(11) NOT NULL COMMENT 'foreign key linking to patron_quota.id',
Lines 54-72 return { Link Here
54
                  CONSTRAINT `patron_quota_usage_ibfk_1` FOREIGN KEY (`patron_quota_id`) REFERENCES `patron_quota` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
56
                  CONSTRAINT `patron_quota_usage_ibfk_1` FOREIGN KEY (`patron_quota_id`) REFERENCES `patron_quota` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
55
                  CONSTRAINT `patron_quota_usage_ibfk_2` FOREIGN KEY (`patron_id`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE CASCADE ON UPDATE CASCADE
57
                  CONSTRAINT `patron_quota_usage_ibfk_2` FOREIGN KEY (`patron_id`) REFERENCES `borrowers` (`borrowernumber`) ON DELETE CASCADE ON UPDATE CASCADE
56
                ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
58
                ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
57
            });
59
            }
60
            );
58
61
59
            say_success( $out, "Patron quota usage table created successfully" );
62
            say_success( $out, "Patron quota usage table created successfully" );
60
        } else {
63
        } else {
61
            say_info( $out, "Patron quota usage table already exists" );
64
            say_info( $out, "Patron quota usage table already exists" );
62
        }
65
        }
63
66
64
        $dbh->do(q{
67
        $dbh->do(
68
            q{
65
            INSERT IGNORE INTO systempreferences (variable, value, options, explanation, type)
69
            INSERT IGNORE INTO systempreferences (variable, value, options, explanation, type)
66
            VALUES
70
            VALUES
67
            ('AllowQuotaOverride', '0', NULL, 'Allow staff to override and check out items to patrons who have exceeded their quota limit', 'YesNo'),
71
            ('AllowQuotaOverride', '0', NULL, 'Allow staff to override and check out items to patrons who have exceeded their quota limit', 'YesNo'),
68
            ('UseGuarantorQuota', '0', NULL, 'Use guarantor quota instead of guarantee quota when checking out items', 'YesNo')
72
            ('UseGuarantorQuota', '0', NULL, 'Use guarantor quota instead of guarantee quota when checking out items', 'YesNo'),
69
        });
73
            ('EnableCirculationQuotas','0','','Enable or disable the circulation quotas feature','YesNo')
74
        }
75
        );
70
76
71
        say_success( $out, "Patron quota preferences added successfully" );
77
        say_success( $out, "Patron quota preferences added successfully" );
72
    },
78
    },
(-)a/installer/data/mysql/mandatory/sysprefs.sql (+1 lines)
Lines 254-259 INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` Link Here
254
('EnableOpacSearchHistory','1','YesNo','Enable or disable opac search history',''),
254
('EnableOpacSearchHistory','1','YesNo','Enable or disable opac search history',''),
255
('EnablePointOfSale','0',NULL,'Enable the point of sale feature to allow anonymous transactions with the accounting system. (Requires UseCashRegisters)','YesNo'),
255
('EnablePointOfSale','0',NULL,'Enable the point of sale feature to allow anonymous transactions with the accounting system. (Requires UseCashRegisters)','YesNo'),
256
('EnableSearchHistory','0','','Enable or disable search history','YesNo'),
256
('EnableSearchHistory','0','','Enable or disable search history','YesNo'),
257
('EnableCirculationQuotas','0','','Enable or disable the circulation quotas feature','YesNo'),
257
('EnhancedMessagingPreferences','1','','If ON, allows patrons to select to receive additional messages about items due or nearly due.','YesNo'),
258
('EnhancedMessagingPreferences','1','','If ON, allows patrons to select to receive additional messages about items due or nearly due.','YesNo'),
258
('EnhancedMessagingPreferencesOPAC', '1', NULL, 'If ON, show patrons messaging setting on the OPAC.', 'YesNo'),
259
('EnhancedMessagingPreferencesOPAC', '1', NULL, 'If ON, show patrons messaging setting on the OPAC.', 'YesNo'),
259
('ERMModule', '0', NULL, 'Enable the e-resource management module', 'YesNo'),
260
('ERMModule', '0', NULL, 'Enable the e-resource management module', 'YesNo'),
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/circ-menu.inc (+2 lines)
Lines 195-205 Link Here
195
                    </li>
195
                    </li>
196
                [% END %]
196
                [% END %]
197
            [% END %]
197
            [% END %]
198
            [% IF Koha.Preference('EnableCirculationQuotas') %]
198
                [% IF patron.category.category_type == 'I' %]
199
                [% IF patron.category.category_type == 'I' %]
199
                    <li [% IF ( quotaview ) %]class="active">[% END %]>
200
                    <li [% IF ( quotaview ) %]class="active">[% END %]>
200
                        <a href="/cgi-bin/koha/members/circulation_quota.pl?borrowernumber=[% patron.borrowernumber | uri %]">Circulation quota</a>
201
                        <a href="/cgi-bin/koha/members/circulation_quota.pl?borrowernumber=[% patron.borrowernumber | uri %]">Circulation quota</a>
201
                    </li>
202
                    </li>
202
                [% END %]
203
                [% END %]
204
            [% END %]
203
            [% IF CAN_user_borrowers_edit_borrowers %]
205
            [% IF CAN_user_borrowers_edit_borrowers %]
204
                [% IF ( IntranetReadingHistoryHolds ) %]
206
                [% IF ( IntranetReadingHistoryHolds ) %]
205
                    <li [% IF holdshistoryview %]class="active"[% END %]>
207
                    <li [% IF holdshistoryview %]class="active"[% END %]>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref (-13 / +19 lines)
Lines 389-406 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.
404
        -
392
        -
405
            - Prevent patrons from checking out items if they have more than
393
            - Prevent patrons from checking out items if they have more than
406
            - pref: noissuescharge
394
            - pref: noissuescharge
Lines 1324-1329 Circulation: Link Here
1324
            - pref: SCOBatchCheckoutsValidCategories
1312
            - pref: SCOBatchCheckoutsValidCategories
1325
              choices: patron-categories
1313
              choices: patron-categories
1326
              class: multiple
1314
              class: multiple
1315
    Quotas:
1316
        -
1317
            - pref: EnableCirculationQuotas
1318
              choices:
1319
                  1: "Enable"
1320
                  0: "Disable"
1321
            - circulation quotas for patrons.
1322
        -
1323
            - pref: AllowQuotaOverride
1324
              choices:
1325
                  1: "Allow"
1326
                  0: "Don't allow" 
1327
            - staff to check out items to patrons who have exceeded their quota limit.
1328
        -
1329
            - pref: UseGuarantorQuota
1330
              choices:
1331
                  1: "Use"
1332
                  0: "Don't use"
1333
            - guarantor's quota instead of guarantee's quota when checking out items if guarantor has an active quota and quota has enough availability.
1327
    Course reserves:
1334
    Course reserves:
1328
        -
1335
        -
1329
            - pref: UseCourseReserves
1336
            - pref: UseCourseReserves
1330
- 

Return to bug 38924