Bug 29139: Fix incorrect relation call
The bug here was worse than originally thought. We were calling the wrong relation too.. we should probably add some exceptions to catch this, it confuses me every single time! Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> Signed-off-by: Andrew Fuerste-Henry <andrew@bywatersolutions.com> Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
This commit is contained in:
parent
fc5c91f53f
commit
88bf99cc08
1 changed files with 1 additions and 1 deletions
|
@ -110,7 +110,7 @@ sub pay {
|
|||
}
|
||||
|
||||
my $patron = Koha::Patrons->find( $self->{patron_id} );
|
||||
my @account_offsets = $payment->debit_offsets->as_list;
|
||||
my @account_offsets = $payment->credit_offsets->as_list;
|
||||
if ( C4::Context->preference('UseEmailReceipts') ) {
|
||||
if (
|
||||
my $letter = C4::Letters::GetPreparedLetter(
|
||||
|
|
Loading…
Reference in a new issue