merge fix : recieving
authorPaul Poulain <paul.poulain@biblibre.com>
Tue, 9 Jun 2009 15:07:48 +0000 (17:07 +0200)
committerHenri-Damien LAURENT <henridamien.laurent@biblibre.com>
Wed, 30 Sep 2009 09:30:26 +0000 (11:30 +0200)
acqui/finishreceive.pl
acqui/parcel.pl

index 76e2f61..fe67cfc 100755 (executable)
@@ -115,3 +115,7 @@ if ($quantityrec > $origquantityrec ) {
        }
 }
     print $input->redirect("/cgi-bin/koha/acqui/parcel.pl?invoice=$invoiceno&supplierid=$supplierid&freight=$freight&gst=$gst&datereceived=$datereceived$error_url_str");
+<<<<<<< HEAD:acqui/finishreceive.pl
+=======
+# >>>>>>> finishreceive:acqui/finishreceive.pl
+>>>>>>> 8a2ecbd... merge fix : recieving:acqui/finishreceive.pl
index 15a08e7..685ded3 100755 (executable)
@@ -143,18 +143,11 @@ my $ordergrandtotal;
 my @loop_orders = ();
 for (my $i = 0 ; $i < $countpendings ; $i++) {
     my %line;
-    if ($toggle==0){
-        $line{color}='#EEEEEE';
-        $toggle=1;
-    } else {
-            $line{color}='white';
-            $toggle=0;
-    }
     %line = %{$pendingorders->[$i]};
-       $line{quantity}+=0;
-       $line{quantrem} = $line{quantity} - $line{quantityreceived};
-       $line{quantityreceived}+=0;
-       $line{unitprice}+=0;
+    $line{quantity}+=0;
+    $line{quantrem} = $line{quantity} - $line{quantityreceived};
+    $line{quantityreceived}+=0;
+    $line{unitprice}+=0;
     $totalPunitprice += $line{unitprice};
     $totalPquantity +=$line{quantity};
     $totalPqtyrcvd +=$line{quantityreceived};