From b9fe3849fbefd36857bc0be848bef92468627b1e Mon Sep 17 00:00:00 2001 From: Caroline Cyr La Rose Date: Mon, 3 Apr 2023 15:34:11 -0400 Subject: [PATCH] Bug 26403: (follow-up) Deleted old SQL files Signed-off-by: Magnus Enger Followed the test plan. Works as advertised. Signed-off-by: Katrin Fischer Signed-off-by: Katrin Fischer --- .../mysql/mandatory/account_credit_types.sql | 14 -------------- .../mysql/mandatory/account_debit_types.sql | 17 ----------------- 2 files changed, 31 deletions(-) delete mode 100644 installer/data/mysql/mandatory/account_credit_types.sql delete mode 100644 installer/data/mysql/mandatory/account_debit_types.sql diff --git a/installer/data/mysql/mandatory/account_credit_types.sql b/installer/data/mysql/mandatory/account_credit_types.sql deleted file mode 100644 index c0b1516099..0000000000 --- a/installer/data/mysql/mandatory/account_credit_types.sql +++ /dev/null @@ -1,14 +0,0 @@ -INSERT INTO account_credit_types ( code, description, can_be_added_manually, is_system ) VALUES -('OVERPAYMENT', 'Overpayment refund', 0, 1), -('PAYMENT', 'Payment', 0, 1), -('WRITEOFF', 'Writeoff', 0, 1), -('FORGIVEN', 'Forgiven', 1, 1), -('CREDIT', 'Credit', 1, 1), -('DISCOUNT', 'A discount applied to a patrons fine', 0, 1), -('REFUND', 'Refund', 0, 1), -('LOST_FOUND', 'Lost item fee refund', 0, 1), -('PURCHASE', 'Purchase', 0, 1), -('CANCELLATION', 'Cancellation', 0, 1), -('PROCESSING_FOUND', 'Lost item processing fee refund', 0, 1); - -INSERT INTO authorised_values (category,authorised_value,lib) VALUES ('PAYMENT_TYPE','CASH','Cash'); diff --git a/installer/data/mysql/mandatory/account_debit_types.sql b/installer/data/mysql/mandatory/account_debit_types.sql deleted file mode 100644 index 7d9c813dd8..0000000000 --- a/installer/data/mysql/mandatory/account_debit_types.sql +++ /dev/null @@ -1,17 +0,0 @@ -INSERT INTO account_debit_types ( code, description, can_be_invoiced, can_be_sold, default_amount, is_system ) VALUES -('ACCOUNT', 'Account creation fee', 0, 0, NULL, 1), -('ACCOUNT_RENEW', 'Account renewal fee', 0, 0, NULL, 1), -('LOST', 'Lost item', 1, 0, NULL, 1), -('MANUAL', 'Manual fee', 1, 0, NULL, 0), -('NEW_CARD', 'New card fee', 1, 0, NULL, 1), -('OVERDUE', 'Overdue fine', 0, 0, NULL, 1), -('PROCESSING', 'Lost item processing fee', 0, 0, NULL, 1), -('PAYOUT', 'Payment from library to patron', 0, 0, NULL, 1), -('RENT', 'Rental fee', 0, 0, NULL, 1), -('RENT_DAILY', 'Daily rental fee', 0, 0, NULL, 1), -('RENT_RENEW', 'Renewal of rental item', 0, 0, NULL, 1), -('RENT_DAILY_RENEW', 'Renewal of daily rental item', 0, 0, NULL, 1), -('RESERVE', 'Hold fee', 0, 0, NULL, 1), -('RESERVE_EXPIRED', 'Hold waiting too long', 0, 0, NULL, 1), -('VOID', 'Credit has been voided', 0, 0, NULL, 1), -('ARTICLE_REQUEST', 'Article request fee', 0, 0, NULL, 1); -- 2.30.2