[Bug 12314] New: "Pay an amount toward all fines" does not save the note
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12314 Bug ID: 12314 Summary: "Pay an amount toward all fines" does not save the note Change sponsored?: --- Product: Koha Version: master Hardware: All OS: All Status: NEW Severity: normal Priority: P5 - low Component: Patrons Assignee: koha-bugs@lists.koha-community.org Reporter: pasi.kallinen@pttk.fi QA Contact: testopia@bugs.koha-community.org CC: gmcharlt@gmail.com, kyle.m.hall@gmail.com Pay Fines -> Pay amount, the note is not saved anywhere. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12314 --- Comment #1 from paxed <pasi.kallinen@pttk.fi> --- Looks like in paycollect.pl, $select is "", so recordpayment_selectaccts() is never called, instead recordpayment() is used. And that doesn't save any user-supplied note. I added a quick hack to populate $select: if (!$select) { my @tmp = (); for (my $i = 0; $i < $numaccts; $i++) { push(@tmp, $accts->[$i]->{'accountlines_id'}) if ($accts->[$i]->{'amountoutstanding'} > 0); } $select = join(",", @tmp); } -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12314 Olli-Antti Kivilahti <olli-antti.kivilahti@jns.fi> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |olli-antti.kivilahti@jns.fi Resolution|--- |DUPLICATE --- Comment #2 from Olli-Antti Kivilahti <olli-antti.kivilahti@jns.fi> --- *** This bug has been marked as a duplicate of bug 12865 *** -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.
participants (1)
-
bugzilla-daemon@bugs.koha-community.org