From 872962bac6b5228de744ee742ad5a5beb1429ab5 Mon Sep 17 00:00:00 2001
From: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Date: Tue, 17 Mar 2020 09:40:04 +0100
Subject: [PATCH] Bug 18177: remove aqbooksellers.othersupplier

This patchset removes some columns from the aqbooksellers table that are
not used:
 * booksellerfax
 * booksellerurl
 * bookselleremail
 * currency

The first 3 ones are certainly leftover from bug 10402.

Test plan:
For each for these fields you will make sure that they cannot be edited
from the interface.
---
 Koha/Acquisition/Bookseller.pm | 1 -
 t/db_dependent/Bookseller.t    | 2 +-
 2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/Koha/Acquisition/Bookseller.pm b/Koha/Acquisition/Bookseller.pm
index 6694f43288..1677aab372 100644
--- a/Koha/Acquisition/Bookseller.pm
+++ b/Koha/Acquisition/Bookseller.pm
@@ -86,7 +86,6 @@ sub to_api_mapping {
         bookselleremail => undef,
         booksellerurl   => undef,
         currency        => undef,
-        othersupplier   => undef,
         listprice       => 'list_currency',
         invoiceprice    => 'invoice_currency',
         gstreg          => 'gst',
diff --git a/t/db_dependent/Bookseller.t b/t/db_dependent/Bookseller.t
index ace46b86ed..e4d24a36d4 100644
--- a/t/db_dependent/Bookseller.t
+++ b/t/db_dependent/Bookseller.t
@@ -767,7 +767,7 @@ sub field_filter {
 
     for my $field (
         'bookselleremail', 'booksellerfax',
-        'booksellerurl',   'othersupplier',
+        'booksellerurl',
         'currency',        'invoiceprice',
         'listprice',       'contacts'
       )
-- 
2.20.1