From a8ba1f7b3da3b8832f2e90a509b7538b1d449672 Mon Sep 17 00:00:00 2001 From: Gwendal Joncour Date: Wed, 8 Nov 2017 12:21:58 +0100 Subject: [PATCH] Bug 19593 Basketcount correction on Bookseller.pm To test: 1/ go to /cgi-bin/koha/acqui/booksellers.pl or /cgi-bin/koha/acqui/supplier.pl 2/ Note that it displays the delete vendor button instead of the receive shipments button 3/ Apply patch 4/ Reload the page and notice the button is fixed Signed-off-by: Chris Cormack Signed-off-by: Katrin Fischer --- Koha/Acquisition/Bookseller.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Koha/Acquisition/Bookseller.pm b/Koha/Acquisition/Bookseller.pm index 57a6113..326be54 100644 --- a/Koha/Acquisition/Bookseller.pm +++ b/Koha/Acquisition/Bookseller.pm @@ -24,6 +24,8 @@ sub fetch { return unless $bookseller; my $self = $class->new( $bookseller ); + $self->{'basketcount'} = $self->basket_count; + $self->{'subscriptioncount'} = $self->subscription_count; $self->contacts; # TODO: This should be generated on demand. return $self; } -- 2.1.4