X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=taxes%2Ftax_groups.php;h=13990c38bb4bdafce31e6257a1c508fb71d886cb;hb=02dd4aefa3e3babb64d61140bb7f7de14e37f755;hp=7a5aabd1d04c5ab4f1ade112d5643f3e589cb7b1;hpb=80dd97a37f674cc3691fa04af4c29607067566b2;p=fa-stable.git diff --git a/taxes/tax_groups.php b/taxes/tax_groups.php index 7a5aabd1..13990c38 100644 --- a/taxes/tax_groups.php +++ b/taxes/tax_groups.php @@ -14,7 +14,7 @@ $path_to_root = ".."; include($path_to_root . "/includes/session.inc"); -page(_("Tax Groups")); +page(_($help_context = "Tax Groups")); include_once($path_to_root . "/includes/data_checks.inc"); include_once($path_to_root . "/includes/ui.inc"); @@ -40,6 +40,7 @@ if ($Mode=='ADD_ITEM' || $Mode=='UPDATE_ITEM') display_error(_("The tax group name cannot be empty.")); set_focus('name'); } + /* Editable rate has been removed 090920 Joe Hunt else { // make sure any entered rates are valid @@ -56,7 +57,7 @@ if ($Mode=='ADD_ITEM' || $Mode=='UPDATE_ITEM') } } } - + */ if ($input_error != 1) { @@ -70,7 +71,9 @@ if ($Mode=='ADD_ITEM' || $Mode=='UPDATE_ITEM') $_POST['tax_type_id' . $i] != ANY_NUMERIC) { $taxes[] = $_POST['tax_type_id' . $i]; - $rates[] = input_num('rate' . $i); + $rates[] = get_tax_type_default_rate($_POST['tax_type_id' . $i]); + //Editable rate has been removed 090920 Joe Hunt + //$rates[] = input_num('rate' . $i); } } @@ -96,21 +99,15 @@ function can_delete($selected_id) { if ($selected_id == -1) return false; - $sql = "SELECT COUNT(*) FROM ".TB_PREF."cust_branch WHERE tax_group_id=$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, 'cust_branch', 'tax_group_id')) { - display_note(_("Cannot delete this tax group because customer branches been created referring to it.")); + display_error(_("Cannot delete this tax group because customer branches been created referring to it.")); return false; } - $sql = "SELECT COUNT(*) FROM ".TB_PREF."suppliers WHERE tax_group_id=$selected_id"; - $result = db_query($sql, "could not query suppliers"); - $myrow = db_fetch_row($result); - if ($myrow[0] > 0) + if (key_in_foreign_table($selected_id, 'suppliers', 'tax_group_id')) { - display_note(_("Cannot delete this tax group because suppliers been created referring to it.")); + display_error(_("Cannot delete this tax group because suppliers been created referring to it.")); return false; } @@ -173,6 +170,7 @@ while ($myrow = db_fetch($result)) inactive_control_row($th); end_table(1); + //----------------------------------------------------------------------------------- start_table($table_style2); @@ -196,6 +194,7 @@ if ($selected_id != -1) $_POST['rate' . $i] = percent_format($tax_item["rate"]); $i ++; } + while($i<5) unset($_POST['tax_type_id'.$i++]); } hidden('selected_id', $selected_id); @@ -208,7 +207,9 @@ end_table(); display_note(_("Select the taxes that are included in this group."), 1); start_table($table_style2); -$th = array(_("Tax"), _("Default Rate (%)"), _("Rate (%)")); +//$th = array(_("Tax"), _("Default Rate (%)"), _("Rate (%)")); +//Editable rate has been removed 090920 Joe Hunt +$th = array(_("Tax"), _("Rate (%)")); table_header($th); for ($i = 0; $i < 5; $i++) { @@ -219,14 +220,14 @@ for ($i = 0; $i < 5; $i++) if ($_POST['tax_type_id' . $i] != 0 && $_POST['tax_type_id' . $i] != ALL_NUMERIC) { - $default_rate = get_tax_type_default_rate($_POST['tax_type_id' . $i]); label_cell(percent_format($default_rate), "nowrap align=right"); - if (!isset($_POST['rate' . $i]) || $_POST['rate' . $i] == "") - $_POST['rate' . $i] = percent_format($default_rate); - small_amount_cells(null, 'rate' . $i, $_POST['rate' . $i], null, null, - user_percent_dec()); + //Editable rate has been removed 090920 Joe Hunt + //if (!isset($_POST['rate' . $i]) || $_POST['rate' . $i] == "") + // $_POST['rate' . $i] = percent_format($default_rate); + //small_amount_cells(null, 'rate' . $i, $_POST['rate' . $i], null, null, + // user_percent_dec()); } end_row(); }