Lines 40-45
use Koha::IssuingRules;
Link Here
|
40 |
use Koha::Item::Transfer::Limits; |
40 |
use Koha::Item::Transfer::Limits; |
41 |
use Koha::Items; |
41 |
use Koha::Items; |
42 |
use Koha::Libraries; |
42 |
use Koha::Libraries; |
|
|
43 |
use Koha::Suggestions; |
43 |
use Koha::Subscriptions; |
44 |
use Koha::Subscriptions; |
44 |
|
45 |
|
45 |
=head1 NAME |
46 |
=head1 NAME |
Lines 439-444
sub biblioitem {
Link Here
|
439 |
return $self->{_biblioitem}; |
440 |
return $self->{_biblioitem}; |
440 |
} |
441 |
} |
441 |
|
442 |
|
|
|
443 |
=head3 suggestions |
444 |
|
445 |
my $suggestions = $self->suggestions |
446 |
|
447 |
Returns the related Koha::Suggestions object for this Biblio object |
448 |
|
449 |
=cut |
450 |
|
451 |
sub suggestions { |
452 |
my ($self) = @_; |
453 |
|
454 |
my $suggestions_rs = $self->_result->suggestions; |
455 |
return Koha::Suggestions->_new_from_dbic( $suggestions_rs ); |
456 |
} |
457 |
|
442 |
=head3 subscriptions |
458 |
=head3 subscriptions |
443 |
|
459 |
|
444 |
my $subscriptions = $self->subscriptions |
460 |
my $subscriptions = $self->subscriptions |
445 |
- |
|
|