@@ -, +, @@ admin/aqcontract.pl and acqui/supplier.pl (pages which include the acq toolbar), you should be able to, for both the 'active' as well as the inactive vendor : (a) add new basket (b) add order items to the basket Remark: This is *wrong*. You should be able to do so only for active vendor. you should no longer be able to: (a) add new basket (b) add order items to the basket Remark: This is the *correct* behaviour be able to undertake operations 4 (a), 4 (b) and 4 (c). Remark: This is the *correct* behaviour. --- acqui/booksellers.pl | 3 ++- acqui/uncertainprice.pl | 1 + admin/aqcontract.pl | 1 + .../prog/en/includes/acquisitions-toolbar.inc | 6 +++--- .../intranet-tmpl/prog/en/modules/acqui/basket.tt | 7 ++++++- .../prog/en/modules/acqui/booksellers.tt | 2 +- .../prog/en/modules/admin/aqcontract.tt | 7 ++++++- 7 files changed, 20 insertions(+), 7 deletions(-) --- a/acqui/booksellers.pl +++ a/acqui/booksellers.pl @@ -93,7 +93,8 @@ if ( $supplier_count == 1 ) { $template->param( supplier_name => $suppliers[0]->{'name'}, booksellerid => $suppliers[0]->{'id'}, - basketcount => $suppliers[0]->{'basketcount'} + basketcount => $suppliers[0]->{'basketcount'}, + active => $suppliers[0]->{active}, ); } --- a/acqui/uncertainprice.pl +++ a/acqui/uncertainprice.pl @@ -128,6 +128,7 @@ $template->param( uncertainpriceorders => \@orders, booksellernotes => $bookseller->{'notes'}, basketcount => $bookseller->{'basketcount'}, subscriptioncount => $bookseller->{'subscriptioncount'}, + active => $bookseller->{active}, owner => $owner, scriptname => "/cgi-bin/koha/acqui/uncertainprice.pl"); $template->{'VARS'}->{'contacts'} = $bookseller->{'contacts'}; --- a/admin/aqcontract.pl +++ a/admin/aqcontract.pl @@ -53,6 +53,7 @@ $template->param( booksellerid => $booksellerid, booksellername => $bookseller->{name}, basketcount => $bookseller->{'basketcount'}, + active => $bookseller->{active}, subscriptioncount => $bookseller->{'subscriptioncount'}, ); --- a/koha-tmpl/intranet-tmpl/prog/en/includes/acquisitions-toolbar.inc +++ a/koha-tmpl/intranet-tmpl/prog/en/includes/acquisitions-toolbar.inc @@ -14,10 +14,10 @@ function confirm_deletion() {