http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12314
--- Comment #1 from paxed <[email protected]> --- 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. _______________________________________________ Koha-bugs mailing list [email protected] http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
