X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=sales%2Fmanage%2Fcredit_status.php;h=af65a498b3f6448a96de1492329a19318f7f8c5b;hb=443214a800fa66cd1473b48f6fadd1b09144a5d4;hp=8bc3683ca6c8215570f67f7ddf32d5ba490b3676;hpb=8ea6c4dd0d9b31b3456d012b0c94339b801bee0c;p=fa-stable.git diff --git a/sales/manage/credit_status.php b/sales/manage/credit_status.php index 8bc3683c..af65a498 100644 --- a/sales/manage/credit_status.php +++ b/sales/manage/credit_status.php @@ -13,7 +13,7 @@ $page_security = 'SA_CRSTATUS'; $path_to_root = "../.."; include($path_to_root . "/includes/session.inc"); -page(_("Credit Status")); +page(_($help_context = "Credit Status")); include($path_to_root . "/sales/includes/db/credit_status_db.inc"); @@ -58,11 +58,7 @@ if ($Mode=='UPDATE_ITEM' && can_process()) function can_delete($selected_id) { - $sql= "SELECT COUNT(*) FROM ".TB_PREF."debtors_master - WHERE credit_status=".db_escape($selected_id); - $result = db_query($sql, "could not query customers"); - $myrow = db_fetch_row($result); - if ($myrow[0] > 0) + if (key_in_foreign_table($selected_id, 'debtors_master', 'credit_status')) { display_error(_("Cannot delete this credit status because customer accounts have been created referring to it.")); return false; @@ -97,7 +93,7 @@ if ($Mode == 'RESET') $result = get_all_credit_status(check_value('show_inactive')); start_form(); -start_table("$table_style width=40%"); +start_table(TABLESTYLE, "width=40%"); $th = array(_("Description"), _("Dissallow Invoices"),'',''); inactive_control_column($th); table_header($th); @@ -131,7 +127,7 @@ echo '
'; //----------------------------------------------------------------------------------- -start_table($table_style2); +start_table(TABLESTYLE2); if ($selected_id != -1) { @@ -160,4 +156,3 @@ end_form(); end_page(); -?>