Bugzilla – Attachment 175301 Details for
Bug 38441
ILL - Allow for a history check workflow stage
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 38441: atomicupdate
Bug-38441-atomicupdate.patch (text/plain), 1.47 KB, created by
Pedro Amorim
on 2024-12-09 12:09:42 UTC
(
hide
)
Description:
Bug 38441: atomicupdate
Filename:
MIME Type:
Creator:
Pedro Amorim
Created:
2024-12-09 12:09:42 UTC
Size:
1.47 KB
patch
obsolete
>From 0493c3de5526ad8ffa7f303ca72805edf442c914 Mon Sep 17 00:00:00 2001 >From: Pedro Amorim <pedro.amorim@ptfs-europe.com> >Date: Thu, 14 Nov 2024 09:52:28 -0100 >Subject: [PATCH] Bug 38441: atomicupdate > >--- > .../data/mysql/atomicupdate/bug_38441.pl | 24 +++++++++++++++++++ > 1 file changed, 24 insertions(+) > create mode 100644 installer/data/mysql/atomicupdate/bug_38441.pl > >diff --git a/installer/data/mysql/atomicupdate/bug_38441.pl b/installer/data/mysql/atomicupdate/bug_38441.pl >new file mode 100644 >index 00000000000..7d60482c98c >--- /dev/null >+++ b/installer/data/mysql/atomicupdate/bug_38441.pl >@@ -0,0 +1,24 @@ >+use Modern::Perl; >+use Koha::Installer::Output qw(say_warning say_failure say_success say_info); >+ >+use C4::Context; >+ >+return { >+ bug_number => "38441", >+ description => "Add 'ILLHistoryCheck' system preference", >+ up => sub { >+ my ($args) = @_; >+ my ( $dbh, $out ) = @$args{qw(dbh out)}; >+ >+ $dbh->do( >+ q{ >+ INSERT IGNORE INTO systempreferences (variable,value,options,explanation,type) VALUES ( >+ 'ILLHistoryCheck', '', '', >+ 'If ON, during the ILL request process, a check is performed to see if the ILL request has already been previously placed', >+ 'YesNo' >+ ); >+ } >+ ); >+ say $out "Added new system preference 'ILLHistoryCheck'"; >+ }, >+}; >-- >2.39.5
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 38441
:
174604
|
174605
|
174606
|
174607
|
174608
|
174609
|
174610
|
174611
|
175300
|
175301
|
175302
|
175303
|
175304
|
175305
|
175306
|
175307
|
176507
|
176508
|
176509
|
176510
|
176511
|
176512
|
176513
|
176514
|
176561
|
176566
|
176573
|
176829