From: <ex...@us...> - 2015-04-26 02:38:14
|
Revision: 7274 http://sourceforge.net/p/web-erp/reponame/7274 Author: exsonqu Date: 2015-04-26 02:38:07 +0000 (Sun, 26 Apr 2015) Log Message: ----------- 26/04/15 Exson: Fixed the account code cannot be key in directly bug in GLJournal.php, reported by Akits. Modified Paths: -------------- trunk/GLJournal.php Modified: trunk/GLJournal.php =================================================================== --- trunk/GLJournal.php 2015-04-26 02:36:16 UTC (rev 7273) +++ trunk/GLJournal.php 2015-04-26 02:38:07 UTC (rev 7274) @@ -322,7 +322,7 @@ if (!isset($_POST['GLManualCode'])) { $_POST['GLManualCode']=''; } -echo '<td><input type="text" autofocus="autofocus" name="GLManualCode" maxlength="12" size="12" onchange="inArray(this.value, GLCode.options,'. "'".'The account code '."'".'+ this.value+ '."'".' doesnt exist'."'".')" value="'. $_POST['GLManualCode'] .'" /></td>'; +echo '<td><input type="text" autofocus="autofocus" name="GLManualCode" maxlength="12" size="12" onchange="inArray(this, GLCode.options,'. "'".'The account code '."'".'+ this.value+ '."'".' doesnt exist'."'".')" value="'. $_POST['GLManualCode'] .'" /></td>'; $sql="SELECT accountcode, accountname |