Fixed edition of purchase order (bug #0000001)
[fa-stable.git] / gl / manage / gl_accounts.php
index 1a10f41423395fb8eaff9821279ac4deb84c635d..df1f3df88849555ecfe8f6affdbff136ced009a4 100644 (file)
@@ -41,16 +41,19 @@ if (isset($_POST['add']) || isset($_POST['update']))
        {
                $input_error = 1;
                display_error( _("The account code must be entered."));
+               set_focus('account_code');
        } 
        elseif (strlen($_POST['account_name']) == 0) 
        {
                $input_error = 1;
                display_error( _("The account name cannot be empty."));
+               set_focus('account_name');
        } 
        elseif (!$accounts_alpha && !is_numeric($_POST['account_code'])) 
        {
            $input_error = 1;
            display_error( _("The account code must be numeric."));
+               set_focus('account_code');
        }
 
        if ($input_error != 1)
@@ -229,7 +232,7 @@ text_row_ex(_("Account Name:"), 'account_name', 60);
 
 gl_account_types_list_row(_("Account Group:"), 'account_type', null);
 
-tax_types_list_row(_("Tax Type:"), 'tax_code', null, true, _('No Tax'));
+tax_types_list_row(_("Tax Type:"), 'tax_code', null, _('No Tax'));
 
 end_table(1);