X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=sales%2Fmanage%2Fsales_areas.php;h=3fd37dd23c1aed87d1965463e9faf8f18b16ddbf;hb=76addbf42e148553411cf37bf1284d2cf6082b84;hp=e1a54301ef6d848b45c785248b9b1fd25752659c;hpb=b61fe995e432d77ff3ff0b5850bb921920f3befb;p=fa-stable.git diff --git a/sales/manage/sales_areas.php b/sales/manage/sales_areas.php index e1a54301..3fd37dd2 100644 --- a/sales/manage/sales_areas.php +++ b/sales/manage/sales_areas.php @@ -1,16 +1,16 @@ . + See the License here . ***********************************************************************/ -$page_security = 3; -$path_to_root="../.."; +$page_security = 'SA_SALESAREA'; +$path_to_root = "../.."; include($path_to_root . "/includes/session.inc"); page(_("Sales Areas")); @@ -78,16 +78,23 @@ if ($Mode == 'Delete') if ($Mode == 'RESET') { $selected_id = -1; + $sav = get_post('show_inactive'); unset($_POST); + $_POST['show_inactive'] = $sav; } + //------------------------------------------------------------------------------------------------- $sql = "SELECT * FROM ".TB_PREF."areas"; +if (!check_value('show_inactive')) $sql .= " WHERE !inactive"; $result = db_query($sql,"could not get areas"); start_form(); start_table("$table_style width=30%"); + $th = array(_("Area Name"), "", ""); +inactive_control_column($th); + table_header($th); $k = 0; @@ -97,20 +104,20 @@ while ($myrow = db_fetch($result)) alt_table_row_color($k); label_cell($myrow["description"]); + + inactive_control_cell($myrow["area_code"], $myrow["inactive"], 'areas', 'area_code'); + edit_button_cell("Edit".$myrow["area_code"], _("Edit")); delete_button_cell("Delete".$myrow["area_code"], _("Delete")); end_row(); } - - + +inactive_control_row($th); end_table(); -end_form(); echo '
'; //------------------------------------------------------------------------------------------------- -start_form(); - start_table($table_style2); if ($selected_id != -1) @@ -131,7 +138,7 @@ text_row_ex(_("Area Name:"), 'description', 30); end_table(1); -submit_add_or_update_center($selected_id == -1, '', true); +submit_add_or_update_center($selected_id == -1, '', 'both'); end_form();