From b55ea7a98b85519669cabe4379a4ea4e884ba6a3 Mon Sep 17 00:00:00 2001 From: djfiander Date: Fri, 9 Jun 2006 02:42:48 +0000 Subject: [PATCH] Extend reporting of circulation status --- ILS/Item.pm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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'; } } -- 2.11.0