Bugzilla – Attachment 89468 Details for
Bug 22837
Koha::Account::Line->apply should not require a 'set' of debits
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 22837: Update apply to accept an arrayref
Bug-22837-Update-apply-to-accept-an-arrayref.patch (text/plain), 999 bytes, created by
Martin Renvoize (ashimema)
on 2019-05-08 11:36:27 UTC
(
hide
)
Description:
Bug 22837: Update apply to accept an arrayref
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2019-05-08 11:36:27 UTC
Size:
999 bytes
patch
obsolete
>From 9e99ab4fca61889245af97c6ad0fe9a1ec8fe194 Mon Sep 17 00:00:00 2001 >From: Martin Renvoize <martin.renvoize@ptfs-europe.com> >Date: Fri, 3 May 2019 12:59:16 +0100 >Subject: [PATCH] Bug 22837: Update apply to accept an arrayref > >This patch update the signature of Koha::Account::Line->apply to accept >an arrayref of debits to apply against a credit instead of requireing a >Koha::Objects set. > >Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> >--- > Koha/Account/Line.pm | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/Koha/Account/Line.pm b/Koha/Account/Line.pm >index 54ca0a3063..a916d40222 100644 >--- a/Koha/Account/Line.pm >+++ b/Koha/Account/Line.pm >@@ -191,7 +191,7 @@ sub apply { > my $schema = Koha::Database->new->schema; > > $schema->txn_do( sub { >- while ( my $debit = $debits->next ) { >+ for my $debit ( @{$debits} ) { > > unless ( $debit->is_debit ) { > Koha::Exceptions::Account::IsNotDebit->throw( >-- >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 22837
:
89314
|
89315
|
89316
|
89317
|
89468
|
89469
|
92972
|
92973
|
92977
|
92978
|
92979
|
92980
|
92981
|
92982
|
92983
|
92984