From d3ad631b6a1a18331a53a87b623e1457eddbb6f0 Mon Sep 17 00:00:00 2001 From: Aleisha Amohia Date: Mon, 4 Oct 2021 17:21:14 +1300 Subject: [PATCH] Bug 31391: Recalled authorised value for hold cancellation --- ...1391_-_add_HOLD_CANCELLATION-RECALLED_authorised_value.pl | 12 ++++++++++++ installer/data/mysql/en/optional/auth_val.yml | 4 ++++ 2 files changed, 16 insertions(+) create mode 100644 installer/data/mysql/atomicupdate/bug_31391_-_add_HOLD_CANCELLATION-RECALLED_authorised_value.pl diff --git a/installer/data/mysql/atomicupdate/bug_31391_-_add_HOLD_CANCELLATION-RECALLED_authorised_value.pl b/installer/data/mysql/atomicupdate/bug_31391_-_add_HOLD_CANCELLATION-RECALLED_authorised_value.pl new file mode 100644 index 0000000000..dc2b824905 --- /dev/null +++ b/installer/data/mysql/atomicupdate/bug_31391_-_add_HOLD_CANCELLATION-RECALLED_authorised_value.pl @@ -0,0 +1,12 @@ +use Modern::Perl; + +return { + bug_number => "31391", + description => "Add new RECALLED value to HOLD_CANCELLATION authorised value category", + up => sub { + my ($args) = @_; + my ($dbh, $out) = @$args{qw(dbh out)}; + + $dbh->do(q{ INSERT IGNORE INTO authorised_values (category, authorised_value, lib) VALUES ('HOLD_CANCELLATION','RECALLED','Hold was converted to a recall') }); + }, +}; diff --git a/installer/data/mysql/en/optional/auth_val.yml b/installer/data/mysql/en/optional/auth_val.yml index 41c1cec9e6..30a8e650b5 100644 --- a/installer/data/mysql/en/optional/auth_val.yml +++ b/installer/data/mysql/en/optional/auth_val.yml @@ -321,6 +321,10 @@ tables: authorised_value: "DAMAGED" lib: "Item was found to be too damaged to fill hold" + - category: "HOLD_CANCELLATION" + authorised_value: "RECALLED" + lib: "Hold was converted to a recall" + # article request cancellations - category: "AR_CANCELLATION" authorised_value: "NOT_FOUND" -- 2.11.0