Bugzilla – Attachment 167567 Details for
Bug 28575
Add ability to choose if lost fee is refunded based on when lost fee was paid off
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 28575: Add new syspref 'NoRefundOnLostFinesPaidAge'
Bug-28575-Add-new-syspref-NoRefundOnLostFinesPaidA.patch (text/plain), 3.70 KB, created by
Matt Blenkinsop
on 2024-06-07 10:44:20 UTC
(
hide
)
Description:
Bug 28575: Add new syspref 'NoRefundOnLostFinesPaidAge'
Filename:
MIME Type:
Creator:
Matt Blenkinsop
Created:
2024-06-07 10:44:20 UTC
Size:
3.70 KB
patch
obsolete
>From 465ad52a6a7d2a724b37af54de99e3c622abd7b9 Mon Sep 17 00:00:00 2001 >From: Matt Blenkinsop <matt.blenkinsop@ptfs-europe.com> >Date: Fri, 7 Jun 2024 10:22:23 +0000 >Subject: [PATCH] Bug 28575: Add new syspref 'NoRefundOnLostFinesPaidAge' > >--- > .../bug_28575-no-refund-lost-age.pl | 21 +++++++++++++++++++ > installer/data/mysql/mandatory/sysprefs.sql | 1 + > .../admin/preferences/circulation.pref | 5 +++++ > 3 files changed, 27 insertions(+) > create mode 100755 installer/data/mysql/atomicupdate/bug_28575-no-refund-lost-age.pl > >diff --git a/installer/data/mysql/atomicupdate/bug_28575-no-refund-lost-age.pl b/installer/data/mysql/atomicupdate/bug_28575-no-refund-lost-age.pl >new file mode 100755 >index 0000000000..ce48af1f64 >--- /dev/null >+++ b/installer/data/mysql/atomicupdate/bug_28575-no-refund-lost-age.pl >@@ -0,0 +1,21 @@ >+use Modern::Perl; >+use Koha::Installer::Output qw(say_warning say_failure say_success say_info); >+ >+return { >+ bug_number => "28575", >+ description => >+ "Add a syspref to prevent refunds on lost items if the fee was paid more than a set number of days ago", >+ up => sub { >+ my ($args) = @_; >+ my ( $dbh, $out ) = @$args{qw(dbh out)}; >+ >+ # Do you stuffs here >+ $dbh->do( >+ q{ >+ INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES ('NoRefundOnLostFinesPaidAge','','','Do not refund lost item fees if the fee was paid off more than this number of days ago','Integer') >+ } >+ ); >+ say_success( $out, "Successfully added new system preference: NoRefundOnLostFinesPaidAge" ); >+ }, >+}; >+ >diff --git a/installer/data/mysql/mandatory/sysprefs.sql b/installer/data/mysql/mandatory/sysprefs.sql >index dffaaadd49..fe35d0b683 100644 >--- a/installer/data/mysql/mandatory/sysprefs.sql >+++ b/installer/data/mysql/mandatory/sysprefs.sql >@@ -418,6 +418,7 @@ INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` > ('NoIssuesChargeGuarantees','','','Define maximum amount withstanding before checkouts are blocked','Integer'), > ('NoIssuesChargeGuarantorsWithGuarantees','','','Define maximum amount withstanding before checkouts are blocked including guarantors and their other guarantees','Integer'), > ('noItemTypeImages','0',NULL,'If ON, disables itemtype images in the staff interface','YesNo'), >+('NoRefundOnLostFinesPaidAge','','','Do not refund lost item fees if the fee was paid off more than this number of days ago','Integer'), > ('NoRefundOnLostReturnedItemsAge','','','Do not refund lost item fees if item is lost for more than this number of days','Integer'), > ('NoRenewalBeforePrecision','exact_time','date|exact_time','Calculate "No renewal before" based on date only or exact time of due date','Choice'), > ('NotesToHide','',NULL,'List of notes fields that should not appear in the title notes/description separator of details','free'), >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref >index e0e0ead489..1d34db1cc8 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref >@@ -1151,6 +1151,11 @@ Circulation: > - pref: NoRefundOnLostReturnedItemsAge > class: integer > - days after it was marked lost. >+ - >+ - "Don't refund lost fees if the fee was paid in full more than" >+ - pref: NoRefundOnLostFinesPaidAge >+ class: integer >+ - days ago. > - > - pref: WhenLostChargeReplacementFee > choices: >-- >2.39.3 (Apple Git-146)
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 28575
:
167567
|
167568
|
167569
|
167621
|
167622
|
167623
|
167624
|
167627
|
167635
|
167636
|
167637
|
167638
|
168146
|
172252
|
172253
|
172254
|
172255
|
172256
|
172257
|
172258