From: <dai...@us...> - 2014-07-30 10:09:23
|
Revision: 6798 http://sourceforge.net/p/web-erp/reponame/6798 Author: daintree Date: 2014-07-30 10:09:15 +0000 (Wed, 30 Jul 2014) Log Message: ----------- Number format validation not required for GL accounts now text account codes are allowed Modified Paths: -------------- trunk/GLJournal.php Modified: trunk/GLJournal.php =================================================================== --- trunk/GLJournal.php 2014-07-29 18:37:18 UTC (rev 6797) +++ trunk/GLJournal.php 2014-07-30 10:09:15 UTC (rev 6798) @@ -322,7 +322,7 @@ if (!isset($_POST['GLManualCode'])) { $_POST['GLManualCode']=''; } -echo '<td><input class="number" 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.value, GLCode.options,'. "'".'The account code '."'".'+ this.value+ '."'".' doesnt exist'."'".')" value="'. $_POST['GLManualCode'] .'" /></td>'; $sql="SELECT accountcode, accountname |