X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=inventory%2Fmanage%2Fitem_units.php;h=39be1be54d192d1c986488d67063d1aa50a68907;hb=902f1015d874c33bd7946b17de2ad80b4f2144b6;hp=b8e432bc54f439ed20bb16d2e2d82f793da1f4e3;hpb=e82fa1f01d7f0d7706b9d3e2efaa9a31cc0777f6;p=fa-stable.git diff --git a/inventory/manage/item_units.php b/inventory/manage/item_units.php index b8e432bc..39be1be5 100644 --- a/inventory/manage/item_units.php +++ b/inventory/manage/item_units.php @@ -1,6 +1,16 @@ . +***********************************************************************/ +$page_security = 'SA_UOM'; +$path_to_root = "../.."; include($path_to_root . "/includes/session.inc"); page(_("Units of Measure")); @@ -64,15 +74,19 @@ if ($Mode == 'Delete') if ($Mode == 'RESET') { $selected_id = ''; + $sav = get_post('show_inactive'); unset($_POST); + $_POST['show_inactive'] = $sav; } //---------------------------------------------------------------------------------- -$result = get_all_item_units(); +$result = get_all_item_units(check_value('show_inactive')); + start_form(); -start_table("$table_style width=50%"); +start_table("$table_style width=40%"); $th = array(_('Unit'), _('Description'), _('Decimals'), "", ""); +inactive_control_column($th); table_header($th); $k = 0; //row colour counter @@ -86,20 +100,18 @@ while ($myrow = db_fetch($result)) label_cell($myrow["name"]); label_cell(($myrow["decimals"]==-1?_("User Quantity Decimals"):$myrow["decimals"])); - edit_button_cell("Edit".$myrow[0], _("Edit")); - edit_button_cell("Delete".$myrow[0], _("Delete")); + inactive_control_cell($myrow["abbr"], $myrow["inactive"], 'item_units', 'abbr'); + edit_button_cell("Edit".$myrow["abbr"], _("Edit")); + delete_button_cell("Delete".$myrow["abbr"], _("Delete")); end_row(); } -end_table(); -end_form(); -echo '
'; +inactive_control_row($th); +end_table(1); //---------------------------------------------------------------------------------- -start_form(); - -start_table("class='tablestyle_noborder'"); +start_table($table_style2); if ($selected_id != '') { @@ -125,7 +137,7 @@ number_list_row(_("Decimal Places:"), 'decimals', null, 0, 6, _("User Quantity D end_table(1); -submit_add_or_update_center($selected_id == '', '', true); +submit_add_or_update_center($selected_id == '', '', 'both'); end_form();