. $biblio->title
. " $item->{'barcode'}";
C4::Accounts::manualinvoice(
$patron->account->add_debit({
$borrowernumber, $itemnumber, $description, 'Rent', $charge
amount => $charge,
);
description => $description,
type => 'rent',
item_id => $itemnumber,
});
}
# Send a renewal slip according to checkout alert preferencei
return if !$fee || $fee == 0; # the last test is needed to include 0.00
#FIXME - patron should be passed as param, not fetched agian
$borrowernumber, undef, "Reserve Charge - $title", 'Res', $fee
my $patron = Koha::Patrons->find( $borrowernumber );
return unless $patron;
amount => $fee,
type => 'reserve',
description => $title,
=head2 GetReserveFee
-