X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=sales%2Fmanage%2Fsales_groups.php;h=a67dc49aa8a7370741b4a73677511f5d3f38b0a2;hb=bac6bc5d595dab716bb3c65e451e81d724b8de2d;hp=7521182af1569eb15bfe6250205a280dab6bdba6;hpb=963bc21ea092322d5750d4c0914b5e532e7d2467;p=fa-stable.git diff --git a/sales/manage/sales_groups.php b/sales/manage/sales_groups.php index 7521182a..a67dc49a 100644 --- a/sales/manage/sales_groups.php +++ b/sales/manage/sales_groups.php @@ -81,8 +81,8 @@ if ($Mode == 'RESET') $result = get_sales_groups(check_value('show_inactive')); start_form(); -start_table("$table_style width=30%"); -$th = array(_("Group Name"), "", ""); +start_table(TABLESTYLE, "width=30%"); +$th = array(_("ID"), _("Group Name"), "", ""); inactive_control_column($th); table_header($th); @@ -93,6 +93,7 @@ while ($myrow = db_fetch($result)) alt_table_row_color($k); + label_cell($myrow["id"]); label_cell($myrow["description"]); inactive_control_cell($myrow["id"], $myrow["inactive"], 'groups', 'id'); edit_button_cell("Edit".$myrow["id"], _("Edit")); @@ -105,7 +106,7 @@ end_table(1); //------------------------------------------------------------------------------------------------- -start_table($table_style2); +start_table(TABLESTYLE2); if ($selected_id != -1) { @@ -116,6 +117,7 @@ if ($selected_id != -1) $_POST['description'] = $myrow["description"]; } hidden("selected_id", $selected_id); + label_row(_("ID"), $myrow["id"]); } text_row_ex(_("Group Name:"), 'description', 30);