Bugzilla – Attachment 141166 Details for
Bug 29987
Manual credits are not recorded for a register
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 29987: (follow-up) Fix missing payment type
Bug-29987-follow-up-Fix-missing-payment-type.patch (text/plain), 2.94 KB, created by
Martin Renvoize (ashimema)
on 2022-09-30 14:15:19 UTC
(
hide
)
Description:
Bug 29987: (follow-up) Fix missing payment type
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2022-09-30 14:15:19 UTC
Size:
2.94 KB
patch
obsolete
>From 5212ed89644a3635e4b29e72fd2ade3266ef78bd Mon Sep 17 00:00:00 2001 >From: Martin Renvoize <martin.renvoize@ptfs-europe.com> >Date: Wed, 24 Aug 2022 11:23:25 +0100 >Subject: [PATCH] Bug 29987: (follow-up) Fix missing payment type > >The payment type include has changed since the patch was first written, >we now require a 'type' is passed to properly set the field name. > >This should fix the 'bankable' issue raised. >--- > .../prog/en/modules/members/mancredit.tt | 2 +- > members/mancredit.pl | 12 ++++++------ > 2 files changed, 7 insertions(+), 7 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/mancredit.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/mancredit.tt >index 9ecfc4d572..6d747d5e41 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/mancredit.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/mancredit.tt >@@ -73,7 +73,7 @@ > <li><label for="desc">Description: </label><input type="text" name="desc" size="50" id="desc" /></li> > <li><label for="note">Note: </label><input type="text" name="note" size="50" id="note" /></li> > <li><label for="amount">Amount: </label><input type="text" inputmode="decimal" pattern="^\d+(\.\d{2})?$" name="amount" id="amount" required="required" min="0" value=""/> Example: 5.00</li> >- [% INCLUDE 'transaction_types.inc' %] >+ [% INCLUDE 'transaction_types.inc' type="credit" %] > [% IF Koha.Preference('UseCashRegisters') %] > <li> > [% IF Koha.Preference('RequireCashRegister') %] >diff --git a/members/mancredit.pl b/members/mancredit.pl >index 4decab72b5..e77c82defc 100755 >--- a/members/mancredit.pl >+++ b/members/mancredit.pl >@@ -86,11 +86,11 @@ if ($add) { > my $item = Koha::Items->find( { barcode => $barcode } ); > $item_id = $item->itemnumber if $item; > } >- my $description = $input->param('desc'); >- my $note = $input->param('note'); >- my $amount = $input->param('amount') || 0; >- my $type = $input->param('type'); >- my $payment_type = $input->param('payment_type'); >+ my $description = $input->param('desc'); >+ my $note = $input->param('note'); >+ my $amount = $input->param('amount') || 0; >+ my $type = $input->param('type'); >+ my $credit_type = $input->param('credit_type'); > my $cash_register_id = $input->param('cash_register'); > > my $line = $patron->account->add_credit( >@@ -103,7 +103,7 @@ if ($add) { > type => $type, > user_id => $logged_in_user->id, > interface => C4::Context->interface, >- payment_type => $payment_type, >+ payment_type => $credit_type, > cash_register => $cash_register_id > } > ); >-- >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 29987
:
136743
|
136755
|
139703
|
139704
|
139705
|
141165
|
141166
|
141167
|
141171
|
141469
|
141470
|
141471
|
141472
|
142321
|
142322
|
142323
|
142324
|
142325