From: <vv...@us...> - 2015-02-22 17:37:39
|
Revision: 7171 http://sourceforge.net/p/web-erp/reponame/7171 Author: vvs2012 Date: 2015-02-22 17:37:31 +0000 (Sun, 22 Feb 2015) Log Message: ----------- Missing closing tags Modified Paths: -------------- trunk/GLBalanceSheet.php trunk/SelectOrderItems.php Modified: trunk/GLBalanceSheet.php =================================================================== --- trunk/GLBalanceSheet.php 2015-02-22 17:16:36 UTC (rev 7170) +++ trunk/GLBalanceSheet.php 2015-02-22 17:37:31 UTC (rev 7171) @@ -64,7 +64,7 @@ </tr> <tr> <td>' . _('Show all Accounts including zero balances') . '</td> - <td><input type="checkbox" title="' . _('Check this box to display all accounts including those accounts with no balance') . '" name="ShowZeroBalances"></td> + <td><input type="checkbox" title="' . _('Check this box to display all accounts including those accounts with no balance') . '" name="ShowZeroBalances" /></td> </tr> </table>'; Modified: trunk/SelectOrderItems.php =================================================================== --- trunk/SelectOrderItems.php 2015-02-22 17:16:36 UTC (rev 7170) +++ trunk/SelectOrderItems.php 2015-02-22 17:37:31 UTC (rev 7171) @@ -1735,11 +1735,12 @@ </div>'; }#end if SearchResults to show + echo '</form>'; } /*end of PartSearch options to be displayed */ elseif( isset($_POST['QuickEntry'])) { /* show the quick entry form variable */ /*FORM VARIABLES TO POST TO THE ORDER WITH PART CODE AND QUANTITY */ echo '<div class="page_help_text"><b>' . _('Use this screen for the '). _('Quick Entry')._(' of products to be ordered') . '</b></div><br /> - <table border="1"> + <table class="selection"> <tr>'; /*do not display colum unless customer requires po line number by sales order line*/ if($_SESSION['Items'.$identifier]->DefaultPOLine ==1){ @@ -1812,6 +1813,7 @@ <div class="centre"> <input name="CancelOrder" type="submit" value="' . _('Cancel Whole Order') . '" onclick="return confirm(\'' . _('Are you sure you wish to cancel this entire order?') . '\');" /> </div> + </div> </form>'; } }#end of else not selecting a customer |