From: <dai...@us...> - 2016-10-20 07:25:59
|
Revision: 7651 http://sourceforge.net/p/web-erp/reponame/7651 Author: daintree Date: 2016-10-20 07:25:57 +0000 (Thu, 20 Oct 2016) Log Message: ----------- Simon Kelly fix to SelectSalesOrder.php Modified Paths: -------------- trunk/SelectSalesOrder.php Modified: trunk/SelectSalesOrder.php =================================================================== --- trunk/SelectSalesOrder.php 2016-10-19 08:29:16 UTC (rev 7650) +++ trunk/SelectSalesOrder.php 2016-10-20 07:25:57 UTC (rev 7651) @@ -934,7 +934,7 @@ <td>%s</td> <td>%s</td> <td class="number">%s</td> - <td><input type="checkbox" name="PlacePO_[]" /></td> + <td><input type="checkbox" name="PlacePO_[]" value="%s"/></td> </tr>', $ModifyPage, $myrow['orderno'], @@ -947,9 +947,7 @@ $FormatedDelDate, html_entity_decode($myrow['deliverto'],ENT_QUOTES,'UTF-8'), $FormatedOrderValue, - $i, - $i, - $myrow['orderno']); + $myrow['orderno']); } else { /*User is not authorised to create POs so don't even show the option */ printf('<td><a href="%s">%s</a></td> <td><a href="%s">' . _('Invoice') . '</a></td> |