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

(-)a/Koha/Acquisition/Bookseller.pm (-2 / +3 lines)
Lines 55-61 Returns the list of contacts for the vendor Link Here
55
55
56
sub contacts {
56
sub contacts {
57
    my ($self) = @_;
57
    my ($self) = @_;
58
    return Koha::Acquisition::Bookseller::Contacts->search( { booksellerid => $self->id } );
58
    my $contacts_rs = $self->_result->aqcontacts;
59
    return unless $contacts_rs;
60
    return Koha::Acquisition::Bookseller::Contacts->_new_from_dbic($contacts_rs);
59
}
61
}
60
62
61
=head3 subscriptions
63
=head3 subscriptions
62
- 

Return to bug 22686