|
Lines 64-69
sub outgoing_transfers {
Link Here
|
| 64 |
return Koha::Item::Transfers->_new_from_dbic( $rs ); |
64 |
return Koha::Item::Transfers->_new_from_dbic( $rs ); |
| 65 |
} |
65 |
} |
| 66 |
|
66 |
|
|
|
67 |
=head3 inbound_transfers |
| 68 |
|
| 69 |
my $inbound_transfers = Koha::Library->inbound_transfers; |
| 70 |
|
| 71 |
Returns the inbound item transfers associated with this Library. |
| 72 |
|
| 73 |
=cut |
| 74 |
|
| 75 |
sub inbound_transfers { |
| 76 |
my ( $self ) = @_; |
| 77 |
my $rs = $self->_result->branchtransfers_tobranches; |
| 78 |
return Koha::Item::Transfers->_new_from_dbic( $rs ); |
| 79 |
} |
| 80 |
|
| 67 |
=head3 get_effective_marcorgcode |
81 |
=head3 get_effective_marcorgcode |
| 68 |
|
82 |
|
| 69 |
my $marcorgcode = Koha::Libraries->find( $library_id )->get_effective_marcorgcode(); |
83 |
my $marcorgcode = Koha::Libraries->find( $library_id )->get_effective_marcorgcode(); |
| 70 |
- |
|
|