Pay Fines -> Pay amount, the note is not saved anywhere.
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); }
*** This bug has been marked as a duplicate of bug 12865 ***