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

(-)a/Koha/Acquisition/Basket.pm (-1 / +8 lines)
Lines 207-212 sub orders { Link Here
207
    return wantarray ? $self->{_orders}->as_list : $self->{_orders};
207
    return wantarray ? $self->{_orders}->as_list : $self->{_orders};
208
}
208
}
209
209
210
=head3 total
211
212
Returns basket's total cost
213
214
    my $total = $basket->total;
215
216
=cut
217
210
sub total {
218
sub total {
211
    my ($self) = @_;
219
    my ($self) = @_;
212
220
213
- 

Return to bug 11708