From 17c8c99c37436425c634d23315d25ccedd014e72 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 Signed-off-by: Owen Leonard --- .../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 00000000000..aba78c9b76c --- /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