From: <dai...@us...> - 2014-08-01 21:53:11
|
Revision: 6801 http://sourceforge.net/p/web-erp/reponame/6801 Author: daintree Date: 2014-08-01 21:53:04 +0000 (Fri, 01 Aug 2014) Log Message: ----------- Tim: change order of SelectWorkOrder links Modified Paths: -------------- trunk/SelectWorkOrder.php trunk/doc/Change.log Modified: trunk/SelectWorkOrder.php =================================================================== --- trunk/SelectWorkOrder.php 2014-07-31 19:58:21 UTC (rev 6800) +++ trunk/SelectWorkOrder.php 2014-08-01 21:53:04 UTC (rev 6801) @@ -318,8 +318,8 @@ <tr> <th>' . _('Modify') . '</th> <th class="ascending">' . _('Status') . '</th> + <th>' . _('Issue To') . '</th> <th>' . _('Receive') . '</th> - <th>' . _('Issue To') . '</th> <th>' . _('Costing') . '</th> <th>' . _('Paperwork') . '</th> <th class="ascending">' . _('Item') . '</th> @@ -328,7 +328,7 @@ <th class="ascending">' . _('Quantity Outstanding') . '</th> <th class="ascending">' . _('Start Date') . '</th> <th class="ascending">' . _('Required Date') . '</th> - </tr>'; + </tr>'; $k=0; //row colour counter while ($myrow=DB_fetch_array($WorkOrdersResult)) { @@ -346,7 +346,7 @@ $Receive_WO = $RootPath . '/WorkOrderReceive.php?WO=' .$myrow['wo'] . '&StockID=' . $myrow['stockid']; $Issue_WO = $RootPath . '/WorkOrderIssue.php?WO=' .$myrow['wo'] . '&StockID=' . $myrow['stockid']; $Costing_WO =$RootPath . '/WorkOrderCosting.php?WO=' .$myrow['wo']; - $Printing_WO =$RootPath . '/PDFWOPrint.php?WO=' .$myrow['wo'] . '&StockID=' . $myrow['stockid']; + $Printing_WO =$RootPath . '/PDFWOPrint.php?WO=' .$myrow['wo'] . '&StockID=' . $myrow['stockid']; $FormatedRequiredByDate = ConvertSQLDate($myrow['requiredby']); $FormatedStartDate = ConvertSQLDate($myrow['startdate']); @@ -354,8 +354,8 @@ printf('<td><a href="%s">%s</a></td> <td><a href="%s">' . _('Status') . '</a></td> + <td><a href="%s">' . _('Issue To') . '</a></td> <td><a href="%s">' . _('Receive') . '</a></td> - <td><a href="%s">' . _('Issue To') . '</a></td> <td><a href="%s">' . _('Costing') . '</a></td> <td><a href="%s">' . _('Print W/O') . '</a></td> <td>%s - %s</td> @@ -368,8 +368,8 @@ $ModifyPage, $myrow['wo'], $Status_WO, + $Issue_WO, $Receive_WO, - $Issue_WO, $Costing_WO, $Printing_WO, $myrow['stockid'], @@ -378,7 +378,7 @@ locale_number_format($myrow['qtyrecd'],$myrow['decimalplaces']), locale_number_format($myrow['qtyreqd']-$myrow['qtyrecd'],$myrow['decimalplaces']), $FormatedStartDate, - $FormatedRequiredByDate); + $FormatedRequiredByDate); //end of page full new headings if } //end of while loop Modified: trunk/doc/Change.log =================================================================== --- trunk/doc/Change.log 2014-07-31 19:58:21 UTC (rev 6800) +++ trunk/doc/Change.log 2014-08-01 21:53:04 UTC (rev 6801) @@ -1,4 +1,7 @@ webERP Change Log + + +2/1/14 Tim: Change columns around on SelectWorkOrder.php 31/07/14 RChacon: Corrects the bottom line of the rectangle. Adds comments (info for developers). 29/07/14 RChacon: In PDFPriceList.php: Adds comments (info for developers), ViewTopic and BookMark, and currency name in locale language; deletes unused lines; reformats for legibility; adjusts column sizes to field sizes; improves printing of stockmaster.longdescription; improves code to reduce execution time (calculation out of loops); links right column positions to right margin; corrects IF for CustomerSpecials (deletes translation). In ManualSalesTypes.html: Adds help info about Print a price list by inventory category. 27/7/14 Exson: Fixed the PO header lost initiator bugs when locations changed. Report by Akits from www.minghao.hk/bbs/. |