X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=taxes%2Fitem_tax_types.php;h=5f2d0e06a6d6304a4211c4d45b1ecb3aae747753;hb=8f661801b2490ac38a65b94d07cda71491dcd8b9;hp=549b7fc0ce97afc0e9b9baba6c7bfab26b56f215;hpb=9478a0cdeaf9201d2f3947e11e58d90354050025;p=fa-stable.git diff --git a/taxes/item_tax_types.php b/taxes/item_tax_types.php index 549b7fc0..5f2d0e06 100644 --- a/taxes/item_tax_types.php +++ b/taxes/item_tax_types.php @@ -77,6 +77,11 @@ function can_delete($selected_id) display_error(_("Cannot delete this item tax type because items have been created referring to it.")); return false; } + if (key_in_foreign_table($selected_id, 'stock_category', 'dflt_tax_type')) + { + display_error(_("Cannot delete this item tax type because item categories have been created referring to it.")); + return false; + } return true; } @@ -108,7 +113,7 @@ if ($Mode == 'RESET') $result2 = $result = get_all_item_tax_types(check_value('show_inactive')); start_form(); -start_table("$table_style width=30%"); +start_table(TABLESTYLE, "width='30%'"); $th = array(_("Name"), _("Tax exempt"),'',''); inactive_control_column($th); table_header($th); @@ -140,7 +145,7 @@ inactive_control_row($th); end_table(1); //----------------------------------------------------------------------------------- -start_table($table_style2); +start_table(TABLESTYLE2); if ($selected_id != -1) { @@ -176,7 +181,7 @@ if (!isset($_POST['exempt']) || $_POST['exempt'] == 0) display_note(_("Select which taxes this item tax type is exempt from."), 0, 1); - start_table($table_style2); + start_table(TABLESTYLE2); $th = array(_("Tax Name"), _("Rate"), _("Is exempt")); table_header($th); @@ -204,4 +209,3 @@ end_form(); end_page(); -?>