X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=sales%2Fmanage%2Fsales_areas.php;h=48ec735225fab0c65523b8454670f41650ae4c56;hb=bf5873e7f5925d0f616743fce771873a4b7cecdf;hp=12b603fb9c655a9443e8b5cd589f7fb847a4dad9;hpb=e82fa1f01d7f0d7706b9d3e2efaa9a31cc0777f6;p=fa-stable.git diff --git a/sales/manage/sales_areas.php b/sales/manage/sales_areas.php index 12b603fb..48ec7352 100644 --- a/sales/manage/sales_areas.php +++ b/sales/manage/sales_areas.php @@ -1,6 +1,14 @@ . +***********************************************************************/ $page_security = 3; $path_to_root="../.."; include($path_to_root . "/includes/session.inc"); @@ -20,6 +28,7 @@ if ($Mode=='ADD_ITEM' || $Mode=='UPDATE_ITEM') { $input_error = 1; display_error(_("The area description cannot be empty.")); + set_focus('description'); } if ($input_error != 1) @@ -77,7 +86,7 @@ $sql = "SELECT * FROM ".TB_PREF."areas"; $result = db_query($sql,"could not get areas"); start_form(); -start_table("$table_style width=40%"); +start_table("$table_style width=30%"); $th = array(_("Area Name"), "", ""); table_header($th); $k = 0; @@ -89,7 +98,7 @@ while ($myrow = db_fetch($result)) label_cell($myrow["description"]); edit_button_cell("Edit".$myrow["area_code"], _("Edit")); - edit_button_cell("Delete".$myrow["area_code"], _("Delete")); + delete_button_cell("Delete".$myrow["area_code"], _("Delete")); end_row(); } @@ -102,7 +111,7 @@ echo '
'; start_form(); -start_table("$table_style2 width=40%"); +start_table($table_style2); if ($selected_id != -1) { @@ -122,7 +131,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();