From: <ex...@us...> - 2014-04-09 11:37:17
|
Revision: 6681 http://sourceforge.net/p/web-erp/reponame/6681 Author: exsonqu Date: 2014-04-09 11:37:13 +0000 (Wed, 09 Apr 2014) Log Message: ----------- 09/04/14 Tim: Fixed the table sort failure bugs in SelectSalesOrder.php reported by Andrew Agaluski. Modified Paths: -------------- trunk/SelectSalesOrder.php Modified: trunk/SelectSalesOrder.php =================================================================== --- trunk/SelectSalesOrder.php 2014-04-08 08:27:07 UTC (rev 6680) +++ trunk/SelectSalesOrder.php 2014-04-09 11:37:13 UTC (rev 6681) @@ -1001,9 +1001,9 @@ if ($_POST['Quotations']=='Orders_Only' AND $AuthRow['cancreate']==0){ //cancreate==0 means can create POs - echo '<tr><td colspan="11" class="number"><input type="submit" name="PlacePO" value="' . _('Place') . " " . _('PO') . '" onclick="return confirm(\'' . _('This will create purchase orders for all the items on the checked sales orders above, based on the preferred supplier purchasing data held in the system. Are You Absolutely Sure?') . '\');" /></td</tr>'; + echo '<tfoot><tr><td colspan="11" class="number"><input type="submit" name="PlacePO" value="' . _('Place') . " " . _('PO') . '" onclick="return confirm(\'' . _('This will create purchase orders for all the items on the checked sales orders above, based on the preferred supplier purchasing data held in the system. Are You Absolutely Sure?') . '\');" /></td></tr></tfoot>'; } - echo '<tr><td colspan="9" class="number">'; + echo '<tfoot><tr><td colspan="9" class="number">'; if ($_POST['Quotations']=='Orders_Only'){ echo '<b>' . _('Total Order(s) Value in'); } else { @@ -1011,7 +1011,7 @@ } echo ' ' . $_SESSION['CompanyRecord']['currencydefault'] . ' :</b></td> <td class="number"><b>' . locale_number_format($OrdersTotal,$_SESSION['CompanyRecord']['decimalplaces']) . '</b></td> - </tr> + </tr></tfoot> </table>'; } //end if there are some orders to show } @@ -1022,4 +1022,4 @@ } //end StockID already selected include('includes/footer.inc'); -?> +?> \ No newline at end of file |