@@ -, +, @@ --- C4/Letters.pm | 1 - Koha/Acquisition/Bookseller.pm | 1 - t/db_dependent/Bookseller.t | 1 - 3 files changed, 3 deletions(-) --- a/C4/Letters.pm +++ a/C4/Letters.pm @@ -449,7 +449,6 @@ sub SendAlerts { my @email; my @cc; - push @email, $databookseller->{bookselleremail} if $databookseller->{bookselleremail}; push @email, $datacontact->{email} if ( $datacontact && $datacontact->{email} ); unless (@email) { warn "Bookseller $dataorders->[0]->{booksellerid} without emails"; --- a/Koha/Acquisition/Bookseller.pm +++ a/Koha/Acquisition/Bookseller.pm @@ -82,7 +82,6 @@ on the API. sub to_api_mapping { return { - bookselleremail => undef, currency => undef, listprice => 'list_currency', invoiceprice => 'invoice_currency', --- a/t/db_dependent/Bookseller.t +++ a/t/db_dependent/Bookseller.t @@ -766,7 +766,6 @@ sub field_filter { my ($struct) = @_; for my $field ( - 'bookselleremail', 'currency', 'invoiceprice', 'listprice', 'contacts' ) --