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

(-)a/Koha/Acquisition/Basket.pm (-1 / +8 lines)
Lines 92-97 sub orders { Link Here
92
    return wantarray ? $self->{_orders}->as_list : $self->{_orders};
92
    return wantarray ? $self->{_orders}->as_list : $self->{_orders};
93
}
93
}
94
94
95
=head3 total
96
97
Returns basket's total cost
98
99
    my $total = $basket->total;
100
101
=cut
102
95
sub total {
103
sub total {
96
    my ($self) = @_;
104
    my ($self) = @_;
97
105
98
- 

Return to bug 11708