From: <tu...@us...> - 2015-01-24 03:08:07
|
Revision: 7096 http://sourceforge.net/p/web-erp/reponame/7096 Author: turbopt Date: 2015-01-24 03:08:00 +0000 (Sat, 24 Jan 2015) Log Message: ----------- Add 2 closing parenthesis Modified Paths: -------------- trunk/SelectProduct.php Modified: trunk/SelectProduct.php =================================================================== --- trunk/SelectProduct.php 2015-01-24 00:16:59 UTC (rev 7095) +++ trunk/SelectProduct.php 2015-01-24 03:08:00 UTC (rev 7096) @@ -154,7 +154,7 @@ ON bom.component=stockmaster.stockid WHERE bom.parent='" . $StockID . "' AND bom.effectiveafter <= '" . date('Y-m-d') . "' - AND bom.effectiveto > '" . date('Y-m-d') . "'"; + AND bom.effectiveto > '" . date('Y-m-d') . "'"); $CostRow = DB_fetch_row($CostResult); $Cost = $CostRow[0]; } else { @@ -185,7 +185,7 @@ ON bom.component=stockmaster.stockid WHERE bom.parent = '" . $StockID . "' AND bom.effectiveafter <= '" . date('Y-m-d') . "' - AND bom.effectiveto > '" . date('Y-m-d') . "'"; + AND bom.effectiveto > '" . date('Y-m-d') . "'"); $CostRow = DB_fetch_row($CostResult); $Cost = $CostRow[0]; } else { |