From 9fc456667dc1aca0a2eeda4245ba27c7903beb1c Mon Sep 17 00:00:00 2001
From: KohaR2 <koha@listes.uhb.fr>
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 <chris@bigballofwax.co.nz>
---
Koha/Acquisition/Bookseller.pm | 2 ++
1 file changed, 2 insertions(+)
diff --git a/Koha/Acquisition/Bookseller.pm b/Koha/Acquisition/Bookseller.pm
index 57a61132e7..326be54622 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.14.1