Bugzilla – Attachment 98439 Details for
Bug 24474
Lost items that are checked out are always returned, even when attempting to renew them
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 24474: Add ReturnLostItem handling for paypal payments
Bug-24474-Add-ReturnLostItem-handling-for-paypal-p.patch (text/plain), 1.57 KB, created by
Martin Renvoize (ashimema)
on 2020-02-05 09:22:06 UTC
(
hide
)
Description:
Bug 24474: Add ReturnLostItem handling for paypal payments
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2020-02-05 09:22:06 UTC
Size:
1.57 KB
patch
obsolete
>From efe03dca0d3b89de10bf79d64b9d48419b6fdedd Mon Sep 17 00:00:00 2001 >From: Martin Renvoize <martin.renvoize@ptfs-europe.com> >Date: Wed, 5 Feb 2020 09:18:48 +0000 >Subject: [PATCH] Bug 24474: Add ReturnLostItem handling for paypal payments > >This patch adds a call to ReturnLostItem for Lost Item payments taken >via OPAC online payments through PayPal. >--- > opac/opac-account-pay-paypal-return.pl | 20 ++++++++++++++++++++ > 1 file changed, 20 insertions(+) > >diff --git a/opac/opac-account-pay-paypal-return.pl b/opac/opac-account-pay-paypal-return.pl >index 07ed4bc5e7..7df395878b 100755 >--- a/opac/opac-account-pay-paypal-return.pl >+++ b/opac/opac-account-pay-paypal-return.pl >@@ -107,6 +107,26 @@ if ( $response->is_success ) { > interface => C4::Context->interface > } > ); >+ >+ if ( >+ C4::Context->preference('MarkLostItemsAsReturned') =~ m|OnPayment| ) >+ { >+ my $lines = Koha::Account::Lines->search( >+ { >+ accountlines_id => { -in => \@accountlines } >+ } >+ ); >+ while ( my $debit = $lines->next ) { >+ if ( $debit->amountoutstanding == 0 >+ && $debit->itemnumber >+ && $debit->debit_type_code >+ && ( $debit->debit_type_code eq 'LOST' ) ) >+ { >+ C4::Circulation::ReturnLostItem( $borrowernumber, >+ $debit->itemnumber ); >+ } >+ } >+ } > } > else { > $error = "PAYPAL_ERROR_PROCESSING"; >-- >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 24474
:
98392
|
98393
|
98436
|
98437
|
98438
|
98439
|
98460
|
98485
|
98486
|
98487
|
98645
|
98646
|
98647
|
98648
|
98673
|
98674
|
98675
|
98676
|
98923
|
100229
|
100230
|
100231
|
100232
|
100233
|
102104
|
102105
|
102106
|
102107
|
102108
|
102109
|
102110
|
102132
|
102133
|
102134
|
102135
|
102136
|
102137
|
102138