Koha::Hold - Koha Hold object class
my $hold = $hold->suspend_hold( $suspend_until_dt );
my $hold = $hold->resume();
$hold->delete();
Returns true if hold is a waiting or in transit
Returns true if hold is a waiting hold
Returns true if hold is a in_transit hold
Returns true if hold is a cancelable hold
Holds may be canceled if they not found, or are found and waiting. A hold found but in transit cannot be canceled.
Returns true if hold is waiting and the hold's pickup branch matches the hold item's holding branch
Returns the related Koha::Biblio object for this hold
Returns the related Koha::Item object for this Hold
Returns the related Koha::Library object for this Hold
Returns the related Koha::Patron object for this Hold
my $bool = $hold->is_suspended();
Kyle M Hall <kyle@bywatersolutions.com>