Bugzilla – Attachment 95665 Details for
Bug 24080
Add a 'payout' process to accounts
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 24080: Payout account debit type
Bug-24080-Payout-account-debit-type.patch (text/plain), 1.91 KB, created by
Martin Renvoize (ashimema)
on 2019-11-21 15:50:44 UTC
(
hide
)
Description:
Bug 24080: Payout account debit type
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2019-11-21 15:50:44 UTC
Size:
1.91 KB
patch
obsolete
>From b45ae421c54e70b061cb81bb1619729f45eb1aae Mon Sep 17 00:00:00 2001 >From: Martin Renvoize <martin.renvoize@ptfs-europe.com> >Date: Thu, 21 Nov 2019 14:50:12 +0000 >Subject: [PATCH] Bug 24080: Payout account debit type > >--- > installer/data/mysql/account_debit_types.sql | 1 + > .../data/mysql/atomicupdate/bug_24080.perl | 20 +++++++++++++++++++ > 2 files changed, 21 insertions(+) > create mode 100644 installer/data/mysql/atomicupdate/bug_24080.perl > >diff --git a/installer/data/mysql/account_debit_types.sql b/installer/data/mysql/account_debit_types.sql >index 731c461e80..a5b93cac7a 100644 >--- a/installer/data/mysql/account_debit_types.sql >+++ b/installer/data/mysql/account_debit_types.sql >@@ -6,6 +6,7 @@ INSERT INTO account_debit_types ( code, description, can_be_added_manually, defa > ('NEW_CARD', 'New card fee', 1, NULL, 1), > ('OVERDUE', 'Overdue fine', 0, NULL, 1), > ('PROCESSING', 'Lost item processing fee', 0, NULL, 1), >+('PAYOUT', 'Payment from library to patron', 0, NULL, 1), > ('RENT', 'Rental fee', 0, NULL, 1), > ('RENT_DAILY', 'Daily rental fee', 0, NULL, 1), > ('RENT_RENEW', 'Renewal of rental item', 0, NULL, 1), >diff --git a/installer/data/mysql/atomicupdate/bug_24080.perl b/installer/data/mysql/atomicupdate/bug_24080.perl >new file mode 100644 >index 0000000000..4a040a2456 >--- /dev/null >+++ b/installer/data/mysql/atomicupdate/bug_24080.perl >@@ -0,0 +1,20 @@ >+$DBversion = 'XXX'; # will be replaced by the RM >+if ( CheckVersion($DBversion) ) { >+ >+ $dbh->do( >+ qq{ >+ INSERT IGNORE INTO account_debit_types ( >+ code, >+ description, >+ can_be_added_manually, >+ default_amount, >+ is_system >+ ) >+ VALUES >+ ('PAYOUT', 'Payment from library to patron', 0, NULL, 1) >+ } >+ ); >+ >+ SetVersion($DBversion); >+ print "Upgrade to $DBversion done (Bug 24080 - Add PAYOUT account_debit_type)\n"; >+} >-- >2.20.1
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 24080
:
95665
|
95666
|
95667
|
95668
|
95669
|
95670
|
95671
|
95672
|
95793
|
95794
|
95795
|
95796
|
96332
|
96333
|
96334
|
96335
|
96519
|
96520
|
96521
|
96522
|
96523
|
96597
|
96598
|
96599
|
96600
|
96601
|
96602
|
96605
|
96606
|
96607
|
96608
|
96609
|
96610
|
96748
|
96749
|
96750
|
96751
|
96752
|
96753