Fixed sparse warning.
authorJanusz Dobrowolski <janusz@frontaccounting.eu>
Wed, 10 Feb 2010 14:57:10 +0000 (14:57 +0000)
committerJanusz Dobrowolski <janusz@frontaccounting.eu>
Wed, 10 Feb 2010 14:57:10 +0000 (14:57 +0000)
includes/db/manufacturing_db.inc

index e3f494ff6471c2f9c05299c61eb4aad61e7c68b3..396fe3b138d287adca7e9a520a1cd095f52c2d78 100644 (file)
@@ -64,7 +64,7 @@ function stock_demand_manufacture($stock_id, $qty, $demand_id, $location, $level
        $stock_qty = $qoh_stock[$stock_id];
        if ($stock_qty == NULL) $stock_qty = 0;
        if ($qty <= $stock_qty) return $demand;
-       $bom = $bom_list[$stock_id];
+       $bom = @$bom_list[$stock_id];
        if ($bom == NULL) {
                $sql = "SELECT parent, component, quantity FROM "
                        .TB_PREF."bom WHERE parent = ".db_escape($stock_id);