From: djfiander Date: Fri, 9 Jun 2006 02:42:48 +0000 (+0000) Subject: Extend reporting of circulation status X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=b55ea7a98b85519669cabe4379a4ea4e884ba6a3;p=working%2FSIPServer.git Extend reporting of circulation status --- diff --git a/ILS/Item.pm b/ILS/Item.pm index 91b8830..98c3625 100644 --- a/ILS/Item.pm +++ b/ILS/Item.pm @@ -102,8 +102,10 @@ sub sip_circulation_status { if ($self->{patron}) { return '04'; + } elsif (scalar @{$self->{hold_queue}}) { + return '08'; } else { - return '01'; + return '03'; } }