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

(-)a/C4/Circulation.pm (-15 / +36 lines)
Lines 67-72 use Koha::Library::Hours; Link Here
67
use Koha::Patron::Quotas;
67
use Koha::Patron::Quotas;
68
use Koha::Patron::Quota;
68
use Koha::Patron::Quota;
69
use Koha::Patron::Quota::Usage;
69
use Koha::Patron::Quota::Usage;
70
use Koha::Patron::Quota::Usages;
70
71
71
use Carp qw( carp );
72
use Carp qw( carp );
72
use List::MoreUtils qw( any );
73
use List::MoreUtils qw( any );
Lines 1356-1366 sub CanBookBeIssued { Link Here
1356
1357
1357
    # CHECK FOR QUOTAS
1358
    # CHECK FOR QUOTAS
1358
    if ( my $quota = Koha::Patron::Quotas->get_patron_quota($patron->borrowernumber) ) {
1359
    if ( my $quota = Koha::Patron::Quotas->get_patron_quota($patron->borrowernumber) ) {
1359
        unless ( $quota->has_available_quota ) {
1360
        if (ref($quota) eq 'ARRAY') {
1361
            # Multiple available quotas found - need confirmation from user
1362
            $needsconfirmation{QUOTA_SELECT} = $quota;
1363
        }
1364
        elsif (!$quota->has_available_quota) {
1360
            if ( C4::Context->preference("AllowQuotaOverride") ) {
1365
            if ( C4::Context->preference("AllowQuotaOverride") ) {
1361
                $needsconfirmation{QUOTA_EXCEEDED} = {
1366
                $needsconfirmation{QUOTA_EXCEEDED} = {
1362
                    available => $quota->available_quota,
1367
                    available => $quota->available_quota,
1363
                    total => $quota->allocation,
1368
                    total => $quota->allocation, 
1364
                    used => $quota->used,
1369
                    used => $quota->used,
1365
                };
1370
                };
1366
            }
1371
            }
Lines 1599-1604 sub AddIssue { Link Here
1599
    my $auto_renew             = $params && $params->{auto_renew};
1604
    my $auto_renew             = $params && $params->{auto_renew};
1600
    my $cancel_recall          = $params && $params->{cancel_recall};
1605
    my $cancel_recall          = $params && $params->{cancel_recall};
1601
    my $recall_id              = $params && $params->{recall_id};
1606
    my $recall_id              = $params && $params->{recall_id};
1607
    my $selected_quota_id      = $params && $params->{selected_quota_id};
1602
    my $dbh                    = C4::Context->dbh;
1608
    my $dbh                    = C4::Context->dbh;
1603
    my $barcodecheck           = CheckValidBarcode($barcode);
1609
    my $barcodecheck           = CheckValidBarcode($barcode);
1604
1610
Lines 1925-1933 sub AddIssue { Link Here
1925
                if C4::Context->preference('RealTimeHoldsQueue');
1931
                if C4::Context->preference('RealTimeHoldsQueue');
1926
1932
1927
            # Check quotas and record usage if needed
1933
            # Check quotas and record usage if needed
1928
            if ( my $quota = Koha::Patron::Quotas->get_patron_quota($patron->borrowernumber) ) {
1934
            my $quota;
1929
                # Update patron's used quota value
1935
            if ($selected_quota_id) {
1930
                $quota->add_usage({
1936
                $quota = Koha::Patron::Quotas->find($selected_quota_id);
1937
            } else {
1938
                $quota = Koha::Patron::Quotas->get_patron_quota($patron->borrowernumber); 
1939
            }
1940
1941
            if ($quota) {
1942
              # Update patron's used quota value
1943
              $quota->add_usage({
1931
                    patron_id => $patron->patron_id, 
1944
                    patron_id => $patron->patron_id, 
1932
                    issue_id => $issue->issue_id,
1945
                    issue_id => $issue->issue_id,
1933
                });
1946
                });
Lines 3269-3278 sub CanBookBeRenewed { Link Here
3269
        }
3282
        }
3270
    }
3283
    }
3271
3284
3272
    # CHECK FOR QUOTAS  
3285
    # # CHECK FOR QUOTAS  
3273
    if ( my $quota = Koha::Patron::Quotas->get_patron_quota($patron->borrowernumber) ) {
3286
    if (my $quota_usage = Koha::Patron::Quota::Usages->find({ issue_id => $issue->issue_id })) {
3274
        unless ( $quota->has_available_quota ) {
3287
        
3275
            return ( 0, "QUOTA_EXCEEDED" );
3288
        # Get current active quota for the patron
3289
        if (my $active_quota = Koha::Patron::Quotas->get_active_quota($quota_usage->patron_id)) {
3290
            
3291
            if (!$active_quota->has_available_quota) {
3292
                return (0, "QUOTA_EXCEEDED");
3293
            }
3276
        }
3294
        }
3277
    }
3295
    }
3278
3296
Lines 3389-3400 sub AddRenewal { Link Here
3389
    my $circ_library = Koha::Libraries->find( _GetCircControlBranch( $item_object, $patron ) );
3407
    my $circ_library = Koha::Libraries->find( _GetCircControlBranch( $item_object, $patron ) );
3390
3408
3391
    # Check quotas and record usage if needed
3409
    # Check quotas and record usage if needed
3392
    if ( my $quota = Koha::Patron::Quotas->get_patron_quota($patron->borrowernumber) ) {
3410
    if (my $quota_usage = Koha::Patron::Quota::Usages->find({ issue_id => $issue->issue_id })) {
3393
        # Update patron's used quota value
3411
        # Get current active quota for the patron
3394
        $quota->add_usage({
3412
        if (my $active_quota = Koha::Patron::Quotas->get_active_quota($quota_usage->patron_id)) {
3395
            patron_id => $patron->patron_id, 
3413
            # Update patron's used quota value
3396
            issue_id => $issue->issue_id,
3414
            $active_quota->add_usage({
3397
        });
3415
                patron_id => $patron->patron_id,
3416
                issue_id  => $issue->issue_id,
3417
            });
3418
        }
3398
    }
3419
    }
3399
3420
3400
    my $schema = Koha::Database->schema;
3421
    my $schema = Koha::Database->schema;
(-)a/Koha/Patron/Quotas.pm (-24 / +56 lines)
Lines 1-9 Link Here
1
package Koha::Patron::Quotas;
1
package Koha::Patron::Quotas;
2
2
3
use base qw(Koha::Objects);
3
use Modern::Perl;
4
use Modern::Perl;
4
use Koha::Patron::Quota;
5
use Koha::Patron::Quota;
5
use Koha::Patrons;
6
use Koha::Patrons;
6
use base qw(Koha::Objects);
7
7
8
=head1 NAME
8
=head1 NAME
9
9
Lines 25-71 Searches for any applicable quota for the given patron. Returns: Link Here
25
=cut
25
=cut
26
26
27
sub get_patron_quota {
27
sub get_patron_quota {
28
    my ($self, $patron_id) = @_;
28
    my ( $self, $patron_id ) = @_;
29
    
29
30
    my $patron_quota = undef;
30
    my @available_quotas;
31
    my $first_found_quota = undef;
31
    my $first_found_quota = undef;
32
32
33
    # First check all guarantor quotas if enabled
33
    # First check patron's own quota
34
    if (C4::Context->preference('UseGuarantorQuota')) {
34
    my $patron_quota = $self->search(
35
        my $patron = Koha::Patrons->find($patron_id);
35
        {
36
            patron_id  => $patron_id,
37
            start_date => { '<=' => \'CURRENT_DATE' },
38
            end_date   => { '>=' => \'CURRENT_DATE' }
39
        }
40
    )->single;
41
42
    if ( $patron_quota && $patron_quota->has_available_quota ) {
43
        push @available_quotas, $patron_quota;
44
    }
45
    $first_found_quota ||= $patron_quota if $patron_quota;
46
47
    # Then check all guarantor quotas if enabled
48
    if ( C4::Context->preference('UseGuarantorQuota') ) {
49
        my $patron     = Koha::Patrons->find($patron_id);
36
        my @guarantors = $patron->guarantor_relationships->guarantors->as_list;
50
        my @guarantors = $patron->guarantor_relationships->guarantors->as_list;
37
51
38
        foreach my $guarantor (@guarantors) {
52
        foreach my $guarantor (@guarantors) {
39
            my $guarantor_quota = $self->search(
53
            my $guarantor_quota = $self->search(
40
                {
54
                {
41
                    patron_id => $guarantor->borrowernumber,
55
                    patron_id  => $guarantor->borrowernumber,
42
                    start_date => { '<=' => \'CURRENT_DATE' },
56
                    start_date => { '<=' => \'CURRENT_DATE' },
43
                    end_date   => { '>=' => \'CURRENT_DATE' }
57
                    end_date   => { '>=' => \'CURRENT_DATE' }
44
                }
58
                }
45
            )->single;
59
            )->single;
46
            
60
            
47
            if ($guarantor_quota) {
61
            if ($guarantor_quota) {
48
                # Return immediately if guarantor quota has availability
62
49
                if ($guarantor_quota->has_available_quota) {
50
                    return $guarantor_quota;
51
                }
52
                # Store first found quota in case we need it later
63
                # Store first found quota in case we need it later
53
                $first_found_quota ||= $guarantor_quota;
64
                $first_found_quota ||= $guarantor_quota;
65
66
                # Collect available guarantor quotas
67
                if ( $guarantor_quota->has_available_quota ) {
68
                    push @available_quotas, $guarantor_quota;
69
                }
54
            }
70
            }
55
        }
71
        }
56
    }
72
    }
57
73
58
    # Check patron's own quota if no available guarantor quota was found
74
    # Return single quota if only one available, array of quotas if multiple available,
59
    $patron_quota = $self->search(
75
    # first found quota if none available
60
        {
76
    return $available_quotas[0] if @available_quotas == 1;
61
            patron_id => $patron_id,
77
    return \@available_quotas   if @available_quotas > 1;
62
            start_date => { '<=' => \'CURRENT_DATE' },
78
    return $first_found_quota;
63
            end_date   => { '>=' => \'CURRENT_DATE' }
64
        }
65
    )->single;
66
67
    # Return patron quota if exists, otherwise first found guarantor quota
68
    return $patron_quota || $first_found_quota;
69
}
79
}
70
80
71
=head3 create_quota
81
=head3 create_quota
Lines 107-112 sub get_active_quotas { Link Here
107
    );
117
    );
108
}
118
}
109
119
120
=head2 get_active_quota
121
122
  my $active_quota = Koha::Patron::Quotas->get_active_quota($patron_id);
123
124
Returns the currently active quota for a patron if one exists.
125
Active means start_date <= NOW() and end_date >= NOW().
126
Returns undef if no active quota found.
127
128
=cut
129
130
sub get_active_quota {
131
    my ( $self, $patron_id ) = @_;
132
133
    return Koha::Patron::Quotas->search(
134
        {
135
            patron_id  => $patron_id,
136
            start_date => { '<=' => \'CURRENT_DATE' },
137
            end_date   => { '>=' => \'CURRENT_DATE' }
138
        }
139
    )->single;
140
}
141
110
=head2 Internal methods
142
=head2 Internal methods
111
143
112
=head3 _type
144
=head3 _type
Lines 119-125 sub _type { Link Here
119
151
120
=head3 object_class
152
=head3 object_class
121
153
122
Returns the package name for patron quota objects
154
Returns the package name for koha patron quota objects
123
155
124
=cut
156
=cut
125
157
(-)a/circ/circulation.pl (-1 / +2 lines)
Lines 186-191 if ( $restoreduedatespec && $restoreduedatespec eq "highholds_empty" ) { Link Here
186
my $issueconfirmed = $query->param('issueconfirmed');
186
my $issueconfirmed = $query->param('issueconfirmed');
187
my $cancelreserve  = $query->param('cancelreserve');
187
my $cancelreserve  = $query->param('cancelreserve');
188
my $cancel_recall  = $query->param('cancel_recall');
188
my $cancel_recall  = $query->param('cancel_recall');
189
my $selected_quota_id = $query->param('selected_quota_id');
189
my $recall_id      = $query->param('recall_id');
190
my $recall_id      = $query->param('recall_id');
190
my $debt_confirmed = $query->param('debt_confirmed') || 0;     # Don't show the debt error dialog twice
191
my $debt_confirmed = $query->param('debt_confirmed') || 0;     # Don't show the debt error dialog twice
191
my $charges        = $query->param('charges')        || q{};
192
my $charges        = $query->param('charges')        || q{};
Lines 543-549 if ( @$barcodes && $op eq 'cud-checkout' ) { Link Here
543
                    {
544
                    {
544
                        onsite_checkout        => $onsite_checkout,        auto_renew => $session->param('auto_renew'),
545
                        onsite_checkout        => $onsite_checkout,        auto_renew => $session->param('auto_renew'),
545
                        switch_onsite_checkout => $switch_onsite_checkout, cancel_recall => $cancel_recall,
546
                        switch_onsite_checkout => $switch_onsite_checkout, cancel_recall => $cancel_recall,
546
                        recall_id              => $recall_id,
547
                        recall_id              => $recall_id,              selected_quota_id => $selected_quota_id,
547
                    }
548
                    }
548
                );
549
                );
549
                $template_params->{issue} = $issue;
550
                $template_params->{issue} = $issue;
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt (-3 / +21 lines)
Lines 137-143 Link Here
137
137
138
                [%IF ( QUOTA_EXCEEDED ) %]
138
                [%IF ( QUOTA_EXCEEDED ) %]
139
                    <li class="needsconfirm age_restriction">
139
                    <li class="needsconfirm age_restriction">
140
                        Quota Exceeded [% QUOTA_EXCEEDED | html %].
140
                        Quota Exceeded. Available: [% QUOTA_EXCEEDED.available | html %] / [% QUOTA_EXCEEDED.total | html %].
141
                        [% IF CAN_user_circulate_force_checkout %]
141
                        [% IF CAN_user_circulate_force_checkout %]
142
                            Check out anyway?
142
                            Check out anyway?
143
                        [% END %]
143
                        [% END %]
Lines 377-382 Link Here
377
                            [% END %]
377
                            [% END %]
378
                        [% END %]
378
                        [% END %]
379
379
380
                        [% IF ( QUOTA_SELECT ) %]
381
                            <p>
382
                                <label for="selected_quota_id">Select quota to use:</label>
383
                                <select name="selected_quota_id" id="selected_quota_id" required>
384
                                    <option value="">Select a quota</option>
385
                                    [% FOREACH quota IN QUOTA_SELECT %]
386
                                        <option value="[% quota.id | html %]">
387
                                            [% IF quota.patron_id != patron.borrowernumber %]
388
                                                Guarantor ([% INCLUDE 'patron-title.inc' patron = quota.patron %]) -
389
                                            [% ELSE %]
390
                                                This patron ([% INCLUDE 'patron-title.inc' patron = quota.patron %]) -
391
                                            [% END %]
392
                                            Available: [% quota.available_quota | html %] / [% quota.allocation | html %]
393
                                        </option>
394
                                    [% END %]
395
                                </select>
396
                            </p>
397
                        [% END %]
398
380
                        <input type="hidden" name="barcode" value="[% barcode | html %]" />
399
                        <input type="hidden" name="barcode" value="[% barcode | html %]" />
381
                        <input type="hidden" name="borrowernumber" value="[% patron.borrowernumber | html %]" />
400
                        <input type="hidden" name="borrowernumber" value="[% patron.borrowernumber | html %]" />
382
                        <input type="hidden" name="issueconfirmed" value="1" />
401
                        <input type="hidden" name="issueconfirmed" value="1" />
Lines 638-644 Link Here
638
                [% END %]
657
                [% END %]
639
658
640
                [%IF ( QUOTA_EXCEEDED ) %]
659
                [%IF ( QUOTA_EXCEEDED ) %]
641
                    <li>Quota Exceeded [% QUOTA_EXCEEDED | html %].</li>
660
                    <li>Quota Exceeded. Available: [% QUOTA_EXCEEDED.available | html %] / [% QUOTA_EXCEEDED.total | html %].</li>
642
                [% END %]
661
                [% END %]
643
662
644
                [% IF ( EXPIRED ) %]
663
                [% IF ( EXPIRED ) %]
645
- 

Return to bug 38924