@@ -, +, @@ --- Koha/Acquisition/Bookseller.pm | 1 - acqui/uncertainprice.pl | 1 - koha-tmpl/intranet-tmpl/prog/en/modules/acqui/uncertainprice.tt | 1 - t/db_dependent/Bookseller.t | 2 +- 4 files changed, 1 insertion(+), 4 deletions(-) --- a/Koha/Acquisition/Bookseller.pm +++ a/Koha/Acquisition/Bookseller.pm @@ -82,7 +82,6 @@ on the API. sub to_api_mapping { return { - booksellerfax => undef, bookselleremail => undef, booksellerurl => undef, currency => undef, --- a/acqui/uncertainprice.pl +++ a/acqui/uncertainprice.pl @@ -108,7 +108,6 @@ $template->param( uncertainpriceorders => \@orders, bookselleraddress3 => $bookseller->address3, bookselleraddress4 => $bookseller->address4, booksellerphone =>$bookseller->phone, - booksellerfax => $bookseller->fax, booksellerurl => $bookseller->url, booksellernotes => $bookseller->notes, basketcount => $bookseller->baskets->count, --- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/uncertainprice.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/uncertainprice.tt @@ -37,7 +37,6 @@

Phone: [% booksellerphone | html %] / Fax: - [% booksellerfax | html %]

[% FOREACH contact IN contacts %]
Contact:
--- a/t/db_dependent/Bookseller.t +++ a/t/db_dependent/Bookseller.t @@ -766,7 +766,7 @@ sub field_filter { my ($struct) = @_; for my $field ( - 'bookselleremail', 'booksellerfax', + 'bookselleremail', 'booksellerurl', 'currency', 'invoiceprice', 'listprice', 'contacts' --