X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=includes%2Fdb%2Fmanufacturing_db.inc;h=9378f645219edbab59dc6aeb24b4778a60a853ce;hb=0fd1eb74bd51889ce48a6ab5369e66a86cbe7da2;hp=c47cc561815c1387fb6a024c3bb51bb69c6a53f0;hpb=303eb17e9cdd9702eee9fdfcaee51e654a1da541;p=fa-stable.git diff --git a/includes/db/manufacturing_db.inc b/includes/db/manufacturing_db.inc index c47cc561..9378f645 100644 --- a/includes/db/manufacturing_db.inc +++ b/includes/db/manufacturing_db.inc @@ -61,8 +61,8 @@ function stock_demand_manufacture($stock_id, $qty, $demand_id, $location, $level $qoh_stock = array(); load_stock_levels($location); } - $stock_qty = $qoh_stock[$stock_id]; - if ($stock_qty == NULL) $stock_qty = 0; + if (empty($qoh_stock[$stock_id])) $stock_qty = 0; + else $stock_qty = $qoh_stock[$stock_id]; if ($qty <= $stock_qty) return $demand; $bom = @$bom_list[$stock_id]; if ($bom == NULL) {