Bugzilla – Attachment 99676 Details for
Bug 19036
Number payment receipts / payment slips
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 19036: Add ability to auto generate a number for account credits
Bug-19036-Add-ability-to-auto-generate-a-number-fo.patch (text/plain), 13.23 KB, created by
Michal Denar
on 2020-02-26 19:50:58 UTC
(
hide
)
Description:
Bug 19036: Add ability to auto generate a number for account credits
Filename:
MIME Type:
Creator:
Michal Denar
Created:
2020-02-26 19:50:58 UTC
Size:
13.23 KB
patch
obsolete
>From d4b3bbc5cdc907d1adaaa6dffcc17bf52c93082b Mon Sep 17 00:00:00 2001 >From: Julian Maurice <julian.maurice@biblibre.com> >Date: Thu, 20 Feb 2020 10:02:38 +0100 >Subject: [PATCH] Bug 19036: Add ability to auto generate a number for account > credits >MIME-Version: 1.0 >Content-Type: text/plain; charset=UTF-8 >Content-Transfer-Encoding: 8bit > >In some areas it's required to sequentially number payment slips / >receipts. > >This patch adds a database column accountlines.credit_number and a >system preference AutoCreditNumber to control how this number will be >generated. The following options are available: > >- Do not automatically generate credit numbers. > This is the current behaviour and the default syspref value. > >- Automatically generate credit numbers in the form <year>-0001 (annual) > >- Automatically generate credit numbers in the form > <branchcode>yyyymm0001 (branchyyyymmincr) > where <branchcode> is the branch where the user (staff member) is > logged in > >- Automatically generate credit numbers in the form 1, 2, 3 > (incremental) > >It also adds a column (hidden by default) in the table under >Transactions tab to display this number. > >Test plan: >0. Apply patch, run updatedatabase and update_dbix_class_files >1. Go to Admin » Column settings, and uncheck the 'hidden' box for > column credit_number in table account-fines. It will be easier for > testing >2. Create a manual credit for a borrower. Verify in Transactions tab > that this credit has no number generated >3. Change syspref 'AutoCreditNumber' to 'incremental' >4. Create more manual credits, and verify that the numbers generated are > 1, 2, 3, ... >5. Change syspref 'AutoCreditNumber' to 'annual' >6. Create more manual credits, and verify that the numbers generated are > '2020-0001', '2020-0002', ... >7. Change syspref to 'AutoCreditNumber' to 'branchyyyymmincr' >8. Create more manual credits, and verify that the numbers generated are > 'BRANCHA2020020001', 'BRANCHA2020020002', ... (assuming you are > connected to library BRANCHA, and it's February 2020) >9. Set library to another one, say BRANCHB >10. Create more manual credits, and verify that the numbers generated are > 'BRANCHB2020020001', 'BRANCHB2020020002', ... >11. Edit the letter ACCOUNT_CREDIT, and add [% account.credit_number %] > somewhere. Go back to Transactions tab and click on 'Print' for one > line that has a credit number. Make sure the number is there. >12. prove t/db_dependent/Koha/Account.t > >Signed-off-by: Michal Denar <black23@gmail.com> >--- > Koha/Account/Line.pm | 58 ++++++++++++++++++++++ > admin/columns_settings.yml | 3 ++ > installer/data/mysql/atomicupdate/bug-19036.perl | 11 ++++ > installer/data/mysql/kohastructure.sql | 1 + > installer/data/mysql/sysprefs.sql | 1 + > .../en/modules/admin/preferences/accounting.pref | 7 +++ > .../prog/en/modules/members/boraccount.tt | 4 +- > t/db_dependent/Koha/Account.t | 50 ++++++++++++++++++- > 8 files changed, 133 insertions(+), 2 deletions(-) > create mode 100644 installer/data/mysql/atomicupdate/bug-19036.perl > >diff --git a/Koha/Account/Line.pm b/Koha/Account/Line.pm >index d77e3509a1..62fd8155b6 100644 >--- a/Koha/Account/Line.pm >+++ b/Koha/Account/Line.pm >@@ -762,6 +762,64 @@ sub to_api_mapping { > }; > } > >+=head3 store >+ >+Specific store method to generate credit number before saving >+ >+=cut >+ >+sub store { >+ my ($self) = @_; >+ >+ my $AutoCreditNumber = C4::Context->preference('AutoCreditNumber'); >+ if ($AutoCreditNumber && !$self->in_storage && $self->is_credit && !$self->credit_number) { >+ my $rs = Koha::Database->new->schema->resultset($self->_type); >+ >+ if ($AutoCreditNumber eq 'incremental') { >+ my $max = $rs->search({ >+ credit_number => { -regexp => '^[0-9]+$' } >+ }, { >+ select => \'CAST(credit_number AS UNSIGNED)', >+ as => ['credit_number'], >+ })->get_column('credit_number')->max; >+ $max //= 0; >+ $self->credit_number($max + 1); >+ } elsif ($AutoCreditNumber eq 'annual') { >+ my $now = DateTime->now; >+ my $prefix = sprintf('%d-', $now->year); >+ my $max = $rs->search({ >+ -and => [ >+ credit_number => { -regexp => '[0-9]{4}$' }, >+ credit_number => { -like => "$prefix%" }, >+ ], >+ })->get_column('credit_number')->max; >+ $max //= $prefix . '0000'; >+ my $incr = substr($max, length $prefix); >+ $self->credit_number(sprintf('%s%04d', $prefix, $incr + 1)); >+ } elsif ($AutoCreditNumber eq 'branchyyyymmincr') { >+ my $userenv = C4::Context->userenv; >+ if ($userenv) { >+ my $branch = $userenv->{branch}; >+ my $now = DateTime->now; >+ my $prefix = sprintf('%s%d%02d', $branch, $now->year, $now->month); >+ my $pattern = $prefix; >+ $pattern =~ s/([\?%_])/\\$1/g; >+ my $max = $rs->search({ >+ -and => [ >+ credit_number => { -regexp => '[0-9]{4}$' }, >+ credit_number => { -like => "$pattern%" }, >+ ], >+ })->get_column('credit_number')->max; >+ $max //= $prefix . '0000'; >+ my $incr = substr($max, length $prefix); >+ $self->credit_number(sprintf('%s%04d', $prefix, $incr + 1)); >+ } >+ } >+ } >+ >+ return $self->SUPER::store(); >+} >+ > =head2 Internal methods > > =cut >diff --git a/admin/columns_settings.yml b/admin/columns_settings.yml >index 2c45659d34..8dbe7b5981 100644 >--- a/admin/columns_settings.yml >+++ b/admin/columns_settings.yml >@@ -517,6 +517,9 @@ modules: > - > columnname: date > - >+ columnname: credit_number >+ is_hidden: 1 >+ - > columnname: account_type > - > columnname: description >diff --git a/installer/data/mysql/atomicupdate/bug-19036.perl b/installer/data/mysql/atomicupdate/bug-19036.perl >new file mode 100644 >index 0000000000..7a144bcd94 >--- /dev/null >+++ b/installer/data/mysql/atomicupdate/bug-19036.perl >@@ -0,0 +1,11 @@ >+$DBversion = 'XXX'; >+if (CheckVersion($DBversion)) { >+ unless (column_exists('accountlines', 'credit_number')) { >+ $dbh->do('ALTER TABLE accountlines ADD COLUMN credit_number VARCHAR(20) NULL DEFAULT NULL COMMENT "autogenerated number for credits" AFTER debit_type_code'); >+ } >+ >+ $dbh->do('INSERT IGNORE INTO systempreferences (variable, value, options, explanation, type) VALUES(?, ?, ?, ?, ?)', undef, 'AutoCreditNumber', '', '', 'Automatically generate a number for account credits', 'Choice'); >+ >+ SetVersion($DBversion); >+ print "Upgrade to $DBversion done (Bug 19036 - Add column accountlines.credit_number)\n"; >+} >diff --git a/installer/data/mysql/kohastructure.sql b/installer/data/mysql/kohastructure.sql >index 8ec1791c66..4d6a559f03 100644 >--- a/installer/data/mysql/kohastructure.sql >+++ b/installer/data/mysql/kohastructure.sql >@@ -2655,6 +2655,7 @@ CREATE TABLE `accountlines` ( > `description` LONGTEXT, > `credit_type_code` varchar(80) default NULL, > `debit_type_code` varchar(80) default NULL, >+ `credit_number` varchar(20) NULL DEFAULT NULL COMMENT 'autogenerated number for credits', > `status` varchar(16) default NULL, > `payment_type` varchar(80) default NULL, -- optional authorised value PAYMENT_TYPE > `amountoutstanding` decimal(28,6) default NULL, >diff --git a/installer/data/mysql/sysprefs.sql b/installer/data/mysql/sysprefs.sql >index b565b7f0bf..d373de93fd 100644 >--- a/installer/data/mysql/sysprefs.sql >+++ b/installer/data/mysql/sysprefs.sql >@@ -67,6 +67,7 @@ INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` > ('AuthoritySeparator','--','10','Used to separate a list of authorities in a display. Usually --','free'), > ('autoBarcode','OFF','incremental|annual|hbyymmincr|EAN13|OFF','Used to autogenerate a barcode: incremental will be of the form 1, 2, 3; annual of the form 2007-0001, 2007-0002; hbyymmincr of the form HB08010001 where HB=Home Branch','Choice'), > ('AutoCreateAuthorities','0',NULL,'Automatically create authorities that do not exist when cataloging records.','YesNo'), >+('AutoCreditNumber', '', '', 'Automatically generate a number for account credits', 'Choice'), > ('AutoEmailOpacUser','0',NULL,'Sends notification emails containing new account details to patrons - when account is created.','YesNo'), > ('AutoEmailPrimaryAddress','OFF','email|emailpro|B_email|cardnumber|OFF','Defines the default email address where \'Account Details\' emails are sent.','Choice'), > ('AutoShareWithMana','subscription','','defines datas automatically shared with mana','multiple'), >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/accounting.pref b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/accounting.pref >index 4a11872fb7..5cbfe8d3fd 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/accounting.pref >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/accounting.pref >@@ -33,3 +33,10 @@ Accounting: > yes: "Enable" > no: "Disable" > - " the point of sale feature to allow anonymous transactions with the accounting system. (Requires UseCashRegisters)" >+ - >+ - pref: AutoCreditNumber >+ choices: >+ '': 'Do not automatically generate credit numbers' >+ annual: 'Automatically generate credit numbers in the form <year>-0001' >+ branchyyyymmincr: 'Automatically generate credit numbers in the form <branchcode>yyyymm0001' >+ incremental: 'Automatically generate credit numbers in the form 1, 2, 3' >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt >index c93eb6fa09..adf26abc4a 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt >@@ -44,6 +44,7 @@ > <thead> > <tr> > <th class="title-string">Date</th> >+ <th>Credit number</th> > <th>Account type</th> > <th>Description of charges</th> > <th>Barcode</th> >@@ -62,6 +63,7 @@ > > <tr> > <td><span title="[% account.date | html %]">[% account.date |$KohaDates %]</span></td> >+ <td>[% account.credit_number | html %]</td> > <td>[% PROCESS account_type_description account=account %]</td> > <td> > [%- IF account.payment_type %][% AuthorisedValues.GetByCode('PAYMENT_TYPE', account.payment_type) | html %][% END %] >@@ -96,7 +98,7 @@ > [% END %] > <tfoot> > <tr> >- <td colspan="9">Total due</td> >+ <td colspan="10">Total due</td> > [% IF ( totalcredit ) %] > <td class="credit" style="text-align: right;">[% total | $Price %]</td> > [% ELSE %] >diff --git a/t/db_dependent/Koha/Account.t b/t/db_dependent/Koha/Account.t >index 5437f16403..b5e3c7e972 100755 >--- a/t/db_dependent/Koha/Account.t >+++ b/t/db_dependent/Koha/Account.t >@@ -19,7 +19,7 @@ > > use Modern::Perl; > >-use Test::More tests => 11; >+use Test::More tests => 12; > use Test::MockModule; > use Test::Exception; > >@@ -979,3 +979,51 @@ subtest 'Koha::Account::Line::apply() handles lost items' => sub { > > $schema->storage->txn_rollback; > }; >+ >+subtest 'Koha::Account::pay() generates credit number' => sub { >+ plan tests => 34; >+ >+ $schema->storage->txn_begin; >+ >+ Koha::Account::Lines->delete(); >+ >+ my $patron = $builder->build_object( { class => 'Koha::Patrons' } ); >+ my $library = $builder->build_object( { class => 'Koha::Libraries' } ); >+ my $account = $patron->account; >+ >+ my $context = Test::MockModule->new('C4::Context'); >+ $context->mock( 'userenv', { branch => $library->id } ); >+ >+ my $now = DateTime->now; >+ my $year = $now->year; >+ my $month = $now->month; >+ my ($accountlines_id, $accountline); >+ >+ t::lib::Mocks::mock_preference('AutoCreditNumber', ''); >+ $accountlines_id = $account->pay({ amount => '1.00', library_id => $library->id }); >+ $accountline = Koha::Account::Lines->find($accountlines_id); >+ is($accountline->credit_number, undef, 'No credit number is generated when syspref is off'); >+ >+ t::lib::Mocks::mock_preference('AutoCreditNumber', 'incremental'); >+ for my $i (1..11) { >+ $accountlines_id = $account->pay({ amount => '1.00', library_id => $library->id }); >+ $accountline = Koha::Account::Lines->find($accountlines_id); >+ is($accountline->credit_number, $i); >+ } >+ >+ t::lib::Mocks::mock_preference('AutoCreditNumber', 'annual'); >+ for my $i (1..11) { >+ $accountlines_id = $account->pay({ amount => '1.00', library_id => $library->id }); >+ $accountline = Koha::Account::Lines->find($accountlines_id); >+ is($accountline->credit_number, sprintf('%s-%04d', $year, $i)); >+ } >+ >+ t::lib::Mocks::mock_preference('AutoCreditNumber', 'branchyyyymmincr'); >+ for my $i (1..11) { >+ $accountlines_id = $account->pay({ amount => '1.00', library_id => $library->id }); >+ $accountline = Koha::Account::Lines->find($accountlines_id); >+ is($accountline->credit_number, sprintf('%s%d%02d%04d', $library->id, $year, $month, $i)); >+ } >+ >+ $schema->storage->txn_rollback; >+}; >-- >2.11.0
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 19036
:
99301
|
99302
|
99303
|
99676
|
101549
|
101550
|
101896
|
101897
|
106278
|
106279
|
106280
|
106281
|
106767
|
107872
|
107875
|
107877
|
108323
|
108324
|
108325
|
108326
|
108327
|
108328
|
108329
|
108525
|
108587
|
108733