View | Details | Raw Unified | Return to bug 23413
Collapse All | Expand All

(-)a/Koha/Item.pm (-5 / +4 lines)
Lines 128-138 sub checkout { Link Here
128
128
129
=head3 holds
129
=head3 holds
130
130
131
my $transfer = $item->holds();
131
my $holds = $item->holds();
132
my $transfer = $item->holds($params);
132
my $holds = $item->holds($params);
133
my $transfer = $item->holds({ found => 'W'});
133
my $holds = $item->holds({ found => 'W'});
134
134
135
Return reserves attached to an item, optionally accept a hashref of params to pass to search
135
Return holds attached to an item, optionally accept a hashref of params to pass to search
136
136
137
=cut
137
=cut
138
138
139
- 

Return to bug 23413