From c2ddcb16bcb64f0ec5ddf52e5d2aa7bdff230144 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Tue, 17 Jun 2014 08:48:59 -0400 Subject: [PATCH] Bug 6427 [Part 31] - Restore the lost item fee description --- Koha/Accounts.pm | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/Koha/Accounts.pm b/Koha/Accounts.pm index 21ce689..a5e3359 100644 --- a/Koha/Accounts.pm +++ b/Koha/Accounts.pm @@ -198,6 +198,7 @@ sub DebitLostItem { $params->{amount} = $item->replacementprice(); $params->{itemnumber} = $item->itemnumber(); $params->{issue_id} = $issue->issue_id(); + $params->{description} = "Lost Item " . $issue->item()->biblio()->title() . " " . $issue->item()->barcode(); #TODO: Shouldn't we have a default replacement price as a syspref? if ( $params->{amount} ) { -- 1.7.2.5