@@ -, +, @@ --- Koha/Acquisition/Basket.pm | 1 + 1 file changed, 1 insertion(+) --- a/Koha/Acquisition/Basket.pm +++ a/Koha/Acquisition/Basket.pm @@ -43,6 +43,7 @@ Returns the vendor sub bookseller { my ($self) = @_; my $bookseller_rs = $self->_result->booksellerid; + return unless $bookseller_rs; return Koha::Acquisition::Bookseller->_new_from_dbic( $bookseller_rs ); } --