From f95f418c5b607a15febae4f7de1e871bef4d8bbf Mon Sep 17 00:00:00 2001 From: Jessica Zairo Date: Wed, 31 Dec 2025 16:02:04 +0000 Subject: [PATCH] Bug 38876: (QA follow-up) automicupdate --- .../data/mysql/atomicupdate/bug_38876.pl | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100755 installer/data/mysql/atomicupdate/bug_38876.pl diff --git a/installer/data/mysql/atomicupdate/bug_38876.pl b/installer/data/mysql/atomicupdate/bug_38876.pl new file mode 100755 index 0000000..aba78c9 --- /dev/null +++ b/installer/data/mysql/atomicupdate/bug_38876.pl @@ -0,0 +1,20 @@ +use Modern::Perl; +use Koha::Installer::Output qw(say_warning say_success say_info); + +return { + bug_number => "38876", + description => "Typo in UpdateNotForLoanStatusOnCheckout description", + up => sub { + my ($args) = @_; + my ( $dbh, $out ) = @$args{qw(dbh out)}; + + # Do you stuffs here + $dbh->do( + q{UPDATE systempreferences (explanation) VALUES ('This is a list of value pairs. When an item is checked out, if its not for loan value matches the value on the left, then the items not for loan value will be updated to the value on the right. \nE.g. ''-1: 0'' will cause an item that was set to ''Ordered'' to now be available for loan. Each pair of values should be on a separate line.') WHERE variable='UpdateNotForLoanStatusOnCheckout'} + ); + + # sysprefs + say $out "Updated system preference 'UpdateNotForLoanStatusOnCheckout'"; + + }, +}; -- 2.39.5