Better color in data picker
[fa-stable.git] / sales / manage / sales_areas.php
index 12b603fb9c655a9443e8b5cd589f7fb847a4dad9..c7baeee531a622c308ad750a8cac9d32f9fc897f 100644 (file)
@@ -1,6 +1,14 @@
 <?php
-
-
+/**********************************************************************
+    Copyright (C) FrontAccounting, LLC.
+       Released under the terms of the GNU General Public License, GPL, 
+       as published by the Free Software Foundation, either version 3 
+       of the License, or (at your option) any later version.
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
+    See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
+***********************************************************************/
 $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 '<br>';
 
 start_form();
 
-start_table("$table_style2 width=40%");
+start_table($table_style2);
 
 if ($selected_id != -1) 
 {