From dedf0c51374a1cf616e3be30a6898baebf09b2e1 Mon Sep 17 00:00:00 2001
From: Martin Renvoize <martin.renvoize@ptfs-europe.com>
Date: Thu, 10 Oct 2019 16:43:48 +0100
Subject: [PATCH] Bug 23049: Remove manual_debit as it's never called
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Signed-off-by: Séverine QUEUNE <severine.queune@bulac.fr>
---
 Koha/Account.pm | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/Koha/Account.pm b/Koha/Account.pm
index fbb2731c95..33b65f5c58 100644
--- a/Koha/Account.pm
+++ b/Koha/Account.pm
@@ -457,7 +457,6 @@ $debit_type can be any of:
   - RENT_RENEW
   - RENT_DAILY_RENEW
   - RESERVE
-  - manual_debit
 
 =cut
 
@@ -719,7 +718,6 @@ our $offset_type = {
     'RENT_RENEW'       => 'Rental Fee',
     'RENT_DAILY_RENEW' => 'Rental Fee',
     'overdue'          => 'OVERDUE',
-    'manual_debit'     => 'Manual Debit',
     'RESERVE_EXPIRED'  => 'Hold Expired'
 };
 
@@ -744,7 +742,6 @@ our $account_type_debit = {
     'ACCOUNT_RENEW'    => 'ACCOUNT_RENEW',
     'RESERVE_EXPIRED'  => 'RESERVE_EXPIRED',
     'LOST_ITEM'        => 'LOST',
-    'sundry'           => 'M',
     'new_card'         => 'N',
     'overdue'          => 'OVERDUE',
     'PROCESSING'       => 'PROCESSING',
@@ -753,7 +750,6 @@ our $account_type_debit = {
     'RENT_RENEW'       => 'RENT_RENEW',
     'RENT_DAILY_RENEW' => 'RENT_DAILY_RENEW',
     'RESERVE'          => 'RESERVE',
-    'manual_debit'     => 'M'
 };
 
 =head1 AUTHORS
-- 
2.20.1