From: <dai...@us...> - 2012-05-22 09:35:38
|
Revision: 5388 http://web-erp.svn.sourceforge.net/web-erp/?rev=5388&view=rev Author: daintree Date: 2012-05-22 09:35:27 +0000 (Tue, 22 May 2012) Log Message: ----------- added start date to work order status Modified Paths: -------------- trunk/WorkOrderStatus.php Modified: trunk/WorkOrderStatus.php =================================================================== --- trunk/WorkOrderStatus.php 2012-05-22 09:27:54 UTC (rev 5387) +++ trunk/WorkOrderStatus.php 2012-05-22 09:35:27 UTC (rev 5388) @@ -44,7 +44,7 @@ echo '<table cellpadding="2" class="selection"> <tr> - <td class="label">' . _('Issue to work order') . ':</td> + <td class="label">' . _('Work order Number') . ':</td> <td>' . $_REQUEST['WO'] .'</td> <td class="label">' . _('Item') . ':</td> <td>' . $_REQUEST['StockID'] . ' - ' . $WORow['description'] . '</td> @@ -65,6 +65,10 @@ <td class="number">' . locale_number_format($WORow['qtyrecd'],$WORow['decimalplaces']) . '</td> <td colspan="2">' . $WORow['units'] . '</td> </tr> + <tr> + <td class="label">' . _('Start Date') . ':</td> + <td>' . ConvertSQLDate($WORow['startdate']) . '</td> + </tr> </table> <br />'; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |