|
Lines 58-63
sub patron {
Link Here
|
| 58 |
return Koha::Patron->_new_from_dbic($patron_rs); |
58 |
return Koha::Patron->_new_from_dbic($patron_rs); |
| 59 |
} |
59 |
} |
| 60 |
|
60 |
|
|
|
61 |
=head3 pickup_library |
| 62 |
|
| 63 |
Returns the related Koha::Library object for this booking |
| 64 |
|
| 65 |
=cut |
| 66 |
|
| 67 |
sub pickup_library { |
| 68 |
my ($self) = @_; |
| 69 |
|
| 70 |
my $pickup_library_rs = $self->_result->pickup_library; |
| 71 |
return Koha::Library->_new_from_dbic($pickup_library_rs); |
| 72 |
} |
| 73 |
|
| 61 |
=head3 item |
74 |
=head3 item |
| 62 |
|
75 |
|
| 63 |
Returns the related Koha::Item object for this Booking |
76 |
Returns the related Koha::Item object for this Booking |