From: <te...@us...> - 2014-09-15 04:26:18
|
Revision: 6887 http://sourceforge.net/p/web-erp/reponame/6887 Author: tehonu Date: 2014-09-15 04:26:13 +0000 (Mon, 15 Sep 2014) Log Message: ----------- Fixed bug when converting a MRP suggested WO into a real WO, the filed "Required by" was always set to 0000-00-00 Modified Paths: -------------- trunk/WorkOrderEntry.php Modified: trunk/WorkOrderEntry.php =================================================================== --- trunk/WorkOrderEntry.php 2014-09-14 02:51:55 UTC (rev 6886) +++ trunk/WorkOrderEntry.php 2014-09-15 04:26:13 UTC (rev 6887) @@ -11,7 +11,6 @@ <img src="'.$RootPath.'/css/'.$Theme.'/images/transactions.png" title="' . _('Search') . '" alt="" />' . ' ' . $Title.' </p>'; - if (isset($_GET['WO'])) { $SelectedWO = $_GET['WO']; } elseif (isset($_POST['WO'])){ @@ -21,7 +20,7 @@ } if (isset($_GET['ReqDate'])){ - $ReqDate = ConvertSQLDate($_GET['ReqDate']); + $ReqDate = $_GET['ReqDate']; } else { $ReqDate=Date('Y-m-d'); } |