https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=19532
--- Comment #855 from Marcel de Rooy <[email protected]> --- I remember to have posted this before, but these lines show me that Recalls does not support itemtype notforloan: + return 0 if ( $self->notforloan != 0 ); OR + my @items = Koha::Items->search({ biblionumber => $self->biblionumber, itemlost => 0, withdrawn => 0, notforloan => 0 })->as_list; OR + [% IF ( item.notforloan ) %] The only check for notforloan in the new code is made only on the item, not on the itemtype. Dont think that we need to fix it here now. No blocker. I am wondering btw: If we can only recall something checked out, when would notforloan come into play actually? Seems to be an edge case like item was checked out, notforloan was activated after that, etc. -- You are receiving this mail because: You are watching all bug changes. _______________________________________________ Koha-bugs mailing list [email protected] https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
