[Koha-patches] [PATCH] Bug 3697 Return due date (SIP Field AH) in item info

Colin Campbell colin.campbell at ptfs-europe.com
Fri Oct 9 16:32:46 CEST 2009


Although the due date of an on loan item was being retrieved
the appropriate field in the Item object was not set
causing the due date not to be returned in the item
information response
---
 C4/SIP/ILS/Item.pm |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/C4/SIP/ILS/Item.pm b/C4/SIP/ILS/Item.pm
index 2e02c63..020d14e 100644
--- a/C4/SIP/ILS/Item.pm
+++ b/C4/SIP/ILS/Item.pm
@@ -103,6 +103,7 @@ sub new {
 	$item->{hold_queue} = [ sort priority_sort @$arrayref ];
 	$item->{hold_shelf}    = [( grep {   defined $_->{found}  and $_->{found} eq 'W' } @{$item->{hold_queue}} )];
 	$item->{pending_queue} = [( grep {(! defined $_->{found}) or  $_->{found} ne 'W' } @{$item->{hold_queue}} )];
+    $item->{due_date} = $issue->{date_due};
 	$self = $item;
 	bless $self, $type;
 
-- 
1.6.2.5




More information about the Koha-patches mailing list