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

(-)a/C4/Circulation.pm (-31 / +36 lines)
Lines 1356-1380 sub CanBookBeIssued { Link Here
1356
    }
1356
    }
1357
1357
1358
    # CHECK FOR QUOTAS
1358
    # CHECK FOR QUOTAS
1359
    if ( my $quota = Koha::Patron::Quotas->get_patron_quota($patron->borrowernumber) ) {
1359
    if ( my $quotas = $patron->all_quotas->filter_by_active ) {
1360
        if (ref($quota) eq 'ARRAY') {
1360
        if ( $quotas->count > 1 ) {
1361
1361
            # Multiple available quotas found - need confirmation from user
1362
            # Multiple available quotas found - need confirmation from user
1362
            $needsconfirmation{QUOTA_SELECT} = $quota;
1363
            $needsconfirmation{QUOTA_SELECT} = $quotas;
1363
        }
1364
        } elsif ( $quotas->count == 1 ) {
1364
        elsif (!$quota->has_available_quota) {
1365
            my $quota = $quotas->next;
1365
            if ( C4::Context->preference("AllowQuotaOverride") ) {
1366
            if ( !$quota->has_available_quota ) {
1366
                $needsconfirmation{QUOTA_EXCEEDED} = {
1367
                if ( C4::Context->preference("AllowQuotaOverride") ) {
1367
                    available => $quota->available_quota,
1368
                    $needsconfirmation{QUOTA_EXCEEDED} = {
1368
                    total => $quota->allocation, 
1369
                        available => $quota->available_quota,
1369
                    used => $quota->used,
1370
                        total     => $quota->allocation,
1370
                };
1371
                        used      => $quota->used,
1371
            }
1372
                    };
1372
            else {
1373
                } else {
1373
                $issuingimpossible{QUOTA_EXCEEDED} = {
1374
                    $issuingimpossible{QUOTA_EXCEEDED} = {
1374
                    available => $quota->available_quota,
1375
                        available => $quota->available_quota,
1375
                    total => $quota->allocation, 
1376
                        total     => $quota->allocation,
1376
                    used => $quota->used,
1377
                        used      => $quota->used,
1377
                };
1378
                    };
1379
                }
1378
            }
1380
            }
1379
        }
1381
        }
1380
    }
1382
    }
Lines 1935-1941 sub AddIssue { Link Here
1935
            if ($selected_quota_id) {
1937
            if ($selected_quota_id) {
1936
                $quota = Koha::Patron::Quotas->find($selected_quota_id);
1938
                $quota = Koha::Patron::Quotas->find($selected_quota_id);
1937
            } else {
1939
            } else {
1938
                $quota = Koha::Patron::Quotas->get_patron_quota($patron->borrowernumber); 
1940
                $quota = $patron->all_quotas->filter_by_active->single;
1939
            }
1941
            }
1940
1942
1941
            if ($quota) {
1943
            if ($quota) {
Lines 3283-3296 sub CanBookBeRenewed { Link Here
3283
    }
3285
    }
3284
3286
3285
    # # CHECK FOR QUOTAS  
3287
    # # CHECK FOR QUOTAS  
3286
    if (my $quota_usage = Koha::Patron::Quota::Usages->find({ issue_id => $issue->issue_id })) {
3288
    if ( my $quota_usage = Koha::Patron::Quota::Usages->find( { issue_id => $issue->issue_id } ) ) {
3287
        
3289
3288
        # Get current active quota for the patron
3290
        # Get current actives quota for the patron
3289
        if (my $active_quota = Koha::Patron::Quotas->get_active_quota($quota_usage->patron_id)) {
3291
        if ( my $active_quotas = $patron->all_quotas->filter_by_active ) {
3290
            
3292
            my $all_exceeded = 1;
3291
            if (!$active_quota->has_available_quota) {
3293
            while ( my $active_quota = $active_quotas->next ) {
3292
                return (0, "QUOTA_EXCEEDED");
3294
                if ( $active_quota->has_available_quota ) {
3295
                    $all_exceeded = 0;
3296
                }
3293
            }
3297
            }
3298
            return ( 0, "QUOTA_EXCEEDED" ) if $all_exceeded;
3294
        }
3299
        }
3295
    }
3300
    }
3296
3301
Lines 3409-3420 sub AddRenewal { Link Here
3409
    # Check quotas and record usage if needed
3414
    # Check quotas and record usage if needed
3410
    if (my $quota_usage = Koha::Patron::Quota::Usages->find({ issue_id => $issue->issue_id })) {
3415
    if (my $quota_usage = Koha::Patron::Quota::Usages->find({ issue_id => $issue->issue_id })) {
3411
        # Get current active quota for the patron
3416
        # Get current active quota for the patron
3412
        if (my $active_quota = Koha::Patron::Quotas->get_active_quota($quota_usage->patron_id)) {
3417
        if (my $active_quota = Koha::Patron::Quotas->find($quota_usage->patron_quota_id)) {
3413
            # Update patron's used quota value
3418
            # Update patron's used quota value
3414
            $active_quota->add_usage({
3419
                $active_quota->add_usage({
3415
                patron_id => $patron->patron_id,
3420
                    patron_id => $patron->borrowernumber,
3416
                issue_id  => $issue->issue_id,
3421
                    issue_id  => $issue->issue_id,
3417
            });
3422
                });
3418
        }
3423
        }
3419
    }
3424
    }
3420
3425
(-)a/Koha/Patron.pm (+63 lines)
Lines 595-600 sub is_guarantor { Link Here
595
    return $self->guarantee_relationships()->count();
595
    return $self->guarantee_relationships()->count();
596
}
596
}
597
597
598
=head3 quotas
599
600
Returns any quotas this patron may have
601
602
=cut
603
604
sub quotas {
605
    my ($self) = @_;
606
    my $quotas_rs = $self->_result->patron_quotas;
607
    return Koha::Patron::Quotas->_new_from_dbic($quotas_rs);
608
}
609
610
=head3 guarantors_quotas
611
612
Returns any guarantor quotas this patron may use
613
614
=cut
615
616
sub guarantors_quotas {
617
    my ($self) = @_;
618
    my $guarantors_query =
619
        $self->_result->borrower_relationships_guarantors->search( {}, { columns => ['guarantor_id'] } )->as_query;
620
    return Koha::Patron::Quotas->search(
621
        {
622
            patron_id => { '-in' => $guarantors_query },
623
        }
624
    );
625
}
626
627
=head3 all_quotas
628
629
Returns a Koha::Patron::Quotas resultset containing:
630
- Directly related quotas (first)
631
- Guarantor quotas (second, if applicable)
632
633
=cut
634
635
sub all_quotas {
636
    my ($self) = @_;
637
638
    # Step 1: Build a subquery to fetch the patron's own ID + guarantor IDs from borrower_relationships
639
    my $guarantors_query =
640
        $self->_result->borrower_relationships_guarantees->search( {}, { columns => ['guarantor_id'] } )->as_query;
641
642
    # Step 2: Fetch quotas where borrowernumber is either:
643
    # - The patron's own borrowernumber
644
    # - One of the guarantor_id values found in the subquery
645
    return Koha::Patron::Quotas->search(
646
        {
647
            '-or' => [
648
                { patron_id => $self->id },                         # The patron's own quotas
649
                { patron_id => { '-in' => $guarantors_query } },    # Guarantor quotas if they exist
650
            ],
651
        },
652
        {
653
            order_by => \[
654
                "CASE WHEN patron_id = ? THEN 0 ELSE 1 END, patron_id",
655
                $self->id
656
            ],
657
        }
658
    );
659
}
660
598
=head3 relationships_debt
661
=head3 relationships_debt
599
662
600
Returns the amount owed by the patron's guarantors *and* the other guarantees of those guarantors
663
Returns the amount owed by the patron's guarantors *and* the other guarantees of those guarantors
(-)a/Koha/Patron/Quotas.pm (-101 / +7 lines)
Lines 13-83 Koha::Patron::Quotas - Koha Patron Quota Object set class Link Here
13
13
14
=head2 Class Methods
14
=head2 Class Methods
15
15
16
=head3 get_patron_quota
17
18
    my $quota = Koha::Patron::Quotas->get_patron_quota($patron_id);
19
20
Searches for any applicable quota for the given patron. Returns:
21
- First available quota found for patron or their guarantor (if UseGuarantorQuota enabled)
22
- If no available quota found, returns the first found quota
23
- Returns undef if no quota found
24
25
=cut
26
27
sub get_patron_quota {
28
    my ( $self, $patron_id ) = @_;
29
30
    my @available_quotas;
31
    my $first_found_quota = undef;
32
33
    # First check patron's own quota
34
    my $patron_quota = $self->search(
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);
50
        my @guarantors = $patron->guarantor_relationships->guarantors->as_list;
51
52
        foreach my $guarantor (@guarantors) {
53
            my $guarantor_quota = $self->search(
54
                {
55
                    patron_id  => $guarantor->borrowernumber,
56
                    start_date => { '<=' => \'CURRENT_DATE' },
57
                    end_date   => { '>=' => \'CURRENT_DATE' }
58
                }
59
            )->single;
60
            
61
            if ($guarantor_quota) {
62
63
                # Store first found quota in case we need it later
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
                }
70
            }
71
        }
72
    }
73
74
    # Return single quota if only one available, array of quotas if multiple available,
75
    # first found quota if none available
76
    return $available_quotas[0] if @available_quotas == 1;
77
    return \@available_quotas   if @available_quotas > 1;
78
    return $first_found_quota;
79
}
80
81
=head3 create_quota
16
=head3 create_quota
82
17
83
Creates a new quota record for a patron
18
Creates a new quota record for a patron
Lines 90-144 sub create_quota { Link Here
90
    return Koha::Patron::Quota->new($params)->store;
25
    return Koha::Patron::Quota->new($params)->store;
91
}
26
}
92
27
93
=head3 search_by_patron
28
=head3 filter_by_active
94
29
95
Finds all quotas for a patron
30
    $quotas->filter_by_active;
96
31
97
=cut
32
Returns the currently active quotas for the resultset.
98
33
99
sub search_by_patron {
34
Active means start_date <= NOW() and end_date >= NOW().
100
    my ( $self, $patron_id ) = @_;
101
    return $self->search( { patron_id => $patron_id } );
102
}
103
104
=head3 get_active_quotas
105
106
Returns multiple active quota records
107
35
108
=cut
36
=cut
109
37
110
sub get_active_quotas {
38
sub filter_by_active {
111
    my ($self) = @_;
39
    my ($self) = @_;
112
    return $self->search(
40
    return $self->search(
113
        {
41
        {
114
            start_date => { '<=' => \'CURRENT_DATE' },
42
            start_date => { '<=' => \'NOW()' },
115
            end_date   => { '>=' => \'CURRENT_DATE' }
43
            end_date   => { '>=' => \'NOW()' },
116
        }
44
        }
117
    );
45
    );
118
}
46
}
119
47
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
142
=head2 Internal methods
48
=head2 Internal methods
143
49
144
=head3 _type
50
=head3 _type
(-)a/Koha/REST/V1/Patrons/Quotas.pm (-1 / +1 lines)
Lines 34-40 sub list { Link Here
34
        }
34
        }
35
35
36
        if ($only_active) {
36
        if ($only_active) {
37
            $quotas_set = $quotas_set->get_active_quotas;
37
            $quotas_set = $quotas_set->filter_by_active;
38
        }
38
        }
39
39
40
        return $c->render(
40
        return $c->render(
(-)a/circ/circulation.pl (-1 / +1 lines)
Lines 320-325 if ($patron) { Link Here
320
    {
320
    {
321
        $template->param( limited_category => 1 );
321
        $template->param( limited_category => 1 );
322
    }
322
    }
323
323
}
324
}
324
325
325
#
326
#
326
- 

Return to bug 38924