[Koha-patches] [PATCH] (BUG #4342) should not be able to close an empty basket

Alex Arnaud alex.arnaud at biblibre.com
Fri Mar 26 16:51:07 CET 2010


---
 acqui/basket.pl |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/acqui/basket.pl b/acqui/basket.pl
index 5947b0b..cd67046 100755
--- a/acqui/basket.pl
+++ b/acqui/basket.pl
@@ -288,6 +288,7 @@ if ( $op eq 'delete_confirm' ) {
 	my $total_est_gste = $total_rrp_gste - ($total_rrp_gste * $discount);
 
     my $contract = &GetContract($basket->{contractnumber});
+    my @orders = GetOrders($basketno);
     $template->param(
         basketno             => $basketno,
         basketname           => $basket->{'basketname'},
@@ -317,6 +318,7 @@ if ( $op eq 'delete_confirm' ) {
         GST                  => $gist,
         basketgroups         => $basketgroups,
         grouped              => $basket->{basketgroupid},
+        unclosable           => @orders ? 0 : 1, 
     );
 }
 
-- 
1.6.3.3




More information about the Koha-patches mailing list