|
Lines 21-26
use Koha::Database;
Link Here
|
| 21 |
|
21 |
|
| 22 |
use base qw(Koha::Object); |
22 |
use base qw(Koha::Object); |
| 23 |
|
23 |
|
|
|
24 |
=head1 NAME |
| 25 |
|
| 26 |
Koha::Old:Checkout - Koha checkout object for returned items |
| 27 |
|
| 28 |
=head1 API |
| 29 |
|
| 30 |
=head2 Class Methods |
| 31 |
|
| 24 |
=head3 item |
32 |
=head3 item |
| 25 |
|
33 |
|
| 26 |
my $item = $checkout->item; |
34 |
my $item = $checkout->item; |
|
Lines 49-58
sub patron {
Link Here
|
| 49 |
return Koha::Patron->_new_from_dbic( $patron_rs ); |
57 |
return Koha::Patron->_new_from_dbic( $patron_rs ); |
| 50 |
} |
58 |
} |
| 51 |
|
59 |
|
| 52 |
|
|
|
| 53 |
|
| 54 |
|
| 55 |
|
| 56 |
sub _type { |
60 |
sub _type { |
| 57 |
return 'OldIssue'; |
61 |
return 'OldIssue'; |
| 58 |
} |
62 |
} |
| 59 |
- |
|
|