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

(-)a/Koha/Checkout.pm (+21 lines)
Lines 165-170 sub renewals { Link Here
165
    return Koha::Checkouts::Renewals->_new_from_dbic($renewals_rs);
165
    return Koha::Checkouts::Renewals->_new_from_dbic($renewals_rs);
166
}
166
}
167
167
168
=head3 quota
169
170
my $quota = $checkout->quota;
171
172
Return the checked out quota
173
174
=cut
175
176
sub quota {
177
    my ($self) = @_;
178
    my $usage_rs = $self->_result->quota_usages->search(
179
        {},
180
        {
181
            rows     => 1,
182
            order_by => { '-desc' => 'creation_date' }
183
        }
184
    )->single;
185
    return unless $usage_rs;
186
    return Koha::Patron::Quota->_new_from_dbic( $usage_rs->patron_quota );
187
}
188
168
=head3 attempt_auto_renew
189
=head3 attempt_auto_renew
169
190
170
  my ($success, $error, $updated) = $checkout->auto_renew({ confirm => 1 });
191
  my ($success, $error, $updated) = $checkout->auto_renew({ confirm => 1 });
(-)a/Koha/Patron/Quotas.pm (-1 / +12 lines)
Lines 2-7 package Koha::Patron::Quotas; Link Here
2
2
3
use base qw(Koha::Objects);
3
use base qw(Koha::Objects);
4
use Modern::Perl;
4
use Modern::Perl;
5
use base qw(Koha::Objects);
6
5
use Koha::Patron::Quota;
7
use Koha::Patron::Quota;
6
use Koha::Patrons;
8
use Koha::Patrons;
7
9
Lines 65-68 sub object_class { Link Here
65
    return 'Koha::Patron::Quota';
67
    return 'Koha::Patron::Quota';
66
}
68
}
67
69
70
=head3 koha_object_class
71
72
Returns the package name for patron quota objects
73
74
=cut
75
76
sub koha_object_class {
77
    return 'Koha::Patron::Quota';
78
}
79
68
1;
80
1;
69
- 

Return to bug 38924