https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=25347 --- Comment #5 from Tomás Cohen Arazi <tomascohen@gmail.com> --- Comment on attachment 108080 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=108080 Bug 25347: Add support for circulation status 11 ( claimed returned )
diff --git a/C4/SIP/ILS/Item.pm b/C4/SIP/ILS/Item.pm index d5e61362bd..0950864aa2 100644 --- a/C4/SIP/ILS/Item.pm +++ b/C4/SIP/ILS/Item.pm + elsif ( Koha::Checkouts::ReturnClaims->search({ itemnumber => $self->{_object}->id, resolution => undef })->count ) { + return '11'; # claimed returned + }
I see a case for a tested higher level method for knowing if an item has standing return claims. Unrelated to this bug, though. -- You are receiving this mail because: You are watching all bug changes.