https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=17509
Nick Clemens <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] Status|Signed Off |Failed QA --- Comment #40 from Nick Clemens <[email protected]> --- I like this one a lot, but a few issues: 1 - GetMember has been removed should use Koha::Patrons 2 - The sub should not go into C4:Reserves but should be a class method in Koha::Holds you can get patrons with something like (adding conditions per the pref) Koha::Patrons->search({'item.biblionumber'=>$hold->biblionumber,issue_id=>{'!=' => undef} },{ join => {'issues' => 'item'} }) -- You are receiving this mail because: You are watching all bug changes. _______________________________________________ Koha-bugs mailing list [email protected] http://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/
