From add936dbcc55ecd74f71e7fdf2db4e36c0315359 Mon Sep 17 00:00:00 2001 From: Julian Maurice Date: Tue, 20 Aug 2019 10:40:23 +0200 Subject: [PATCH] Bug 11708: Add missing POD in Koha::Acquisition::Basket MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Séverine QUEUNE --- Koha/Acquisition/Basket.pm | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Koha/Acquisition/Basket.pm b/Koha/Acquisition/Basket.pm index beea393..9b8e943 100644 --- a/Koha/Acquisition/Basket.pm +++ b/Koha/Acquisition/Basket.pm @@ -92,6 +92,14 @@ sub orders { return wantarray ? $self->{_orders}->as_list : $self->{_orders}; } +=head3 total + +Returns basket's total cost + + my $total = $basket->total; + +=cut + sub total { my ($self) = @_; -- 2.7.4