Revert 2.9-era change that resulted in using Account Adjustment payments
to void overdues when an item is marked lost.
Signed-off-by: Bill Erickson <berickxx@gmail.com>
# ---------------------------------------------------------------------
# zero out overdue fines on this circ if configured
if( $void_overdue ) {
- my $evt = OpenILS::Application::Circ::CircCommon->void_or_zero_overdues($e, $circ, {force_zero => 1, note => "System: OVERDUE REVERSED for " . $args{bill_note} . " Processing"});
+ my $evt = OpenILS::Application::Circ::CircCommon->void_or_zero_overdues(
+ $e, $circ, {note => "System: OVERDUE REVERSED for " . $args{bill_note} . " Processing"});
return $evt if $evt;
}