! -> Note
$ -> Affected files
+21-Aut-2009 Joe Hunt
+# [0000162] Deleting a GL account may cause problems with quick entries
+$ /gl/manage/gl_accounts.php
+
20-Aug-2009 Joe Hunt
# If account code2 is used in the accounts the report Chart of Accounts gave a bad index and didn't print the code.
$ /gl/includes/gl_db_accounts.inc
return false;
}
+ $sql= "SELECT COUNT(*) FROM ".TB_PREF."quick_entry_lines WHERE
+ dest_id='$selected_account' AND UPPER(LEFT(action, 1)) <> 'T'";
+ $result = db_query($sql,"Couldn't test for existing suppliers GL codes");
+
+ $myrow = db_fetch_row($result);
+ if ($myrow[0] > 0)
+ {
+ display_error(_("Cannot delete this account because it is used by one or more Quick Entry Lines."));
+ return false;
+ }
+
return true;
}