projects
/
working
/
SIPServer.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d7f3217
)
Extend reporting of circulation status
author
djfiander
<djfiander>
Fri, 9 Jun 2006 02:42:48 +0000
(
02:42
+0000)
committer
djfiander
<djfiander>
Fri, 9 Jun 2006 02:42:48 +0000
(
02:42
+0000)
ILS/Item.pm
patch
|
blob
|
history
diff --git
a/ILS/Item.pm
b/ILS/Item.pm
index
91b8830
..
98c3625
100644
(file)
--- 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 '0
1
';
+ return '0
3
';
}
}