Index abfangen
authorHolger Lindemann <hli@lenny.hoch.ul>
Tue, 19 Jun 2012 12:29:09 +0000 (14:29 +0200)
committerHolger Lindemann <hli@lenny.hoch.ul>
Tue, 19 Jun 2012 12:29:09 +0000 (14:29 +0200)
peppershop/erplib.php

index 00be5c1..8b22d42 100644 (file)
@@ -49,7 +49,7 @@ class erp {
             $sql  = "SELECT warehouse_id from bin where id = ".$this->lager;
             $rs = $this->db->getOne($sql);
             if ( $rs['warehouse_id'] > 0 ) {
-               $this->warehouse_id = $rs['warehouse_id'];
+                       $this->warehouse_id = $rs['warehouse_id'];
                 $sql = "SELECT id from transfer_type WHERE direction = 'in' and description = 'stock'";
                 $rs = $this->db->getOne($sql);
                 $this->transtype = $rs['id'];
@@ -69,7 +69,7 @@ class erp {
         $rs = $this->db->getAll($sql);
         if ($rs) foreach ($rs as $row) {
             $nr = $row['bugru'];
-            if (!$this->TAX[$nr]) {
+            if ( !$this->TAX[$nr] || !array_key_exists($nr, $this->TAX) ) {
                 $data = array();
                 $data['startdate'] =     $row['startdate'];
                 $data['rate'] =     $row['rate'];